/* =============================================================
   UNIMO — Soft Bloom redesign
   Mapped onto original classes so HTML structure & text stay 1:1.
   Direction: hravý/svieži, organické tvary, mint+lime paleta,
   ilustratívne diagramy, friendly ikonografia.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --ink: #122118;
  --ink-2: #2c3a30;
  --paper: #FBFCF7;
  --paper-2: #ECF3DC;
  --paper-3: #F5F8E8;
  --line: #DDE5CB;
  --line-2: #E7ECD9;
  --muted: #5b6a5d;
  --brand: #84BD00;        /* Unimo lime */
  --brand-light: #B6E64A;
  --brand-deep: #3E5A0E;
  --brand-soft: #ECF6CF;
  --mint: #C9F0D6;
  --mint-2: #6BC78C;
  --sun: #FFE36F;
  --coral: #FF9C72;
  --berry: #FF7A98;
  --shadow: 0 18px 40px -16px rgba(18,33,24,0.18);
  --shadow-card: 0 8px 24px -12px rgba(18,33,24,0.12);
  --radius: 22px;
  --radius-lg: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 68px; }
@media (max-width: 600px) {
  html { scroll-padding-top: 52px; }
}
.faq-group { scroll-margin-top: 68px; }
@media (max-width: 600px) {
  .faq-group { scroll-margin-top: 52px; }
}
body {
  margin: 0;
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: normal;
  font-size: 17px;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  isolation: isolate;
}

a { color: inherit; transition: color .15s; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-weight: 400;
  letter-spacing: -0.02em;
  color: color-mix(in oklab, var(--ink-2), var(--muted) 40%);
  line-height: 1.08;
  text-wrap: balance;
}
p { text-wrap: pretty; }

/* =============================================================
   HEADER (pill-shaped nav like Variant C)
   ============================================================= */
body > header {
  position: sticky; top: 0; z-index: 50;
  padding-top: 16px;
  isolation: isolate;
  background: var(--paper);
  border-bottom: none;
}
/* Fade-out band below the menu — keeps scrolled content from
   visually bleeding into / past the floating pill. The header
   itself is solid paper (covers the area around & above the
   pill); ::after extends a soft gradient ~64px below the header
   without taking up layout space. */
body > header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 100%;
  height: 64px;
  background: linear-gradient(to bottom, var(--paper) 0%, rgba(251,252,247,0) 100%);
  pointer-events: none;
  z-index: -1;
}
body > header .container {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px 8px 22px;
  box-shadow: 0 6px 20px -10px rgba(18,33,24,0.18);
}
.nav {
  min-height: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  position: relative;
}
/* Ked v hlavickovej navigacii chyba CTA tlacidlo, na desktope by sa
   menu pritisklo tesne k pravemu okraju pillu (space-between). Pridanim
   praveho paddingu vznikne vizualne odsadenie. Aplikuje sa len ak vobec
   nie je .btn-primary potomkom .nav (cez :has()) a len na desktope —
   na mobile (≤980px) je vpravo viditelny .nav-toggle, ten posobi sam. */
@media (min-width: 981px) {
  .nav:not(:has(> .btn-primary)) {
    padding-right: 24px;
  }
}
/* Polozka "Objednavka" v navigacii sa zobrazuje iba na uzkych telefonoch
   (≤600px), kde je CTA tlacidlo "Objednat sluzbu" skryte (riadok nizsie).
   Na vacsich obrazovkach by duplikovala CTA tlacidlo, preto je skryta. */
.nav-order {
  display: none;
}
.nav-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover { background: var(--paper-2); }
.nav-toggle .nav-toggle-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-close { display: block; }
.logo {
  display: inline-flex; align-items: center; gap: 14px;
  text-decoration: none;
  position: relative;
}
.logo img { display: block; height: 28px; width: auto; }
.logo .logo-sub {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.35;
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo .logo-sub::before {
  content: "Virtuálne";
}
.logo .logo-sub::after {
  content: "mobilné číslo";
}
.footer-logo { height: 32px; width: auto; display: block; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}
nav ul {
  list-style: none;
  display: flex; gap: 24px;
  padding: 0; margin: 0;
  font-size: 16px;
  color: var(--ink-2);
}
nav a {
  text-decoration: none;
  font-weight: 400;
  padding: 6px 2px;
  position: relative;
}
nav a:hover { color: var(--brand-deep); }
nav a[aria-current="page"] {
  color: var(--brand-deep);
  font-weight: 500;
}
nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px; bottom: -2px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s, background .15s, color .15s, border-color .15s;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-deep);
  color: var(--paper);
  border-color: var(--brand-deep);
}
.btn-secondary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover {
  background: var(--paper-2);
  border-color: var(--mint-2);
}

/* =============================================================
   SECTIONS
   ============================================================= */
section { padding: 88px 0; }
.hero { padding: 56px 0 88px; position: relative; overflow-x: clip; overflow-y: visible; }

/* Decorative blobs around hero — sit on the page background (z-index: -1),
   so content of following sections paints over them naturally. body has
   isolation: isolate so the negative z-index stays above body's background. */
.hero::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  background: var(--mint);
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  opacity: 0.5;
  top: -160px; right: -120px;
  z-index: -1;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  background: var(--brand-soft);
  border-radius: 50% 60% 40% 60% / 60% 40% 60% 40%;
  bottom: -120px; left: -80px;
  z-index: -1;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

/* =============================================================
   HERO — homepage
   ============================================================= */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

/* Editorial eyebrow: leading rule + uppercase letter-spaced label.
   No pill, no dot — reads as a section label, not a control. */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--brand-deep);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  line-height: 1;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
  flex: 0 0 auto;
  box-shadow: none;
}

h1 {
  font-size: clamp(40px, 6.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 400;
  margin: 0 0 24px;
}
h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.045em;
  font-weight: 400;
  margin: 0 0 14px;
}
h3 { letter-spacing: -0.03em; font-size: 22px; }

.lead {
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.4;
  margin: 0 0 28px;
  color: var(--ink-2);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 18px;
}

.badges {
  display: flex; flex-wrap: wrap; gap: 14px 22px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  font-weight: 400;
  color: var(--ink-2);
  font-size: 16px;
}
.badge::before {
  content: "";
  width: 20px; height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23122118' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat,
    #FFDD00;
}

.note {
  color: var(--muted);
  font-size: 15px;
  margin-top: 14px;
}

/* =============================================================
   HERO VISUAL — phone + organic shapes
   ============================================================= */
.visual-card {
  position: relative;
  border-radius: 36px;
  padding: 28px;
  min-height: 480px;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}
.visual-card::before {
  content: "";
  position: absolute;
  inset: 4% 6% 8% 4%;
  background: var(--mint);
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  z-index: 0;
}
.visual-card::after {
  content: "";
  position: absolute;
  inset: 14% 4% 6% 14%;
  background: var(--brand-light);
  border-radius: 50% 60% 40% 50% / 60% 40% 60% 40%;
  opacity: 0.7;
  z-index: 0;
}

.phone {
  position: relative;
  z-index: 1;
  width: min(280px, 65%);
  margin: 24px auto;
  background: var(--ink);
  border-radius: 38px;
  padding: 10px;
  min-height: 420px;
  box-shadow: 0 30px 60px -20px rgba(18,33,24,0.45);
}
.phone-screen {
  background: var(--paper);
  color: var(--ink);
  border-radius: 28px;
  padding: 22px 18px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-title {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.number {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.call-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  margin: 0;
  font-size: 15px;
}
.call-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}
.call-card span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.call-card:nth-of-type(1) { background: var(--mint); border-color: transparent; }
.call-card:nth-of-type(3) { background: var(--brand-light); border-color: transparent; }

.placeholder {
  position: absolute;
  z-index: 2;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 18px;
  text-align: center;
  font-weight: 400;
  color: var(--muted);
  font-size: 14px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
  max-width: 280px;
  box-shadow: var(--shadow);
}

/* =============================================================
   HERO IMAGE CARD (replaces phone mockup with photograph)
   ============================================================= */
.hero-image-card {
  min-height: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-card::before {
  inset: -2% 6% 6% -2%;
  background: var(--mint);
  opacity: 0.85;
}
.hero-image-card::after {
  inset: 12% -4% -4% 12%;
  background: var(--brand-light);
  opacity: 0.6;
}
.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: 0 30px 60px -20px rgba(18,33,24,0.35);
}

/* <picture> wrapper sa správa transparentne v layoutu — existujúce ".hero-image", ".cta-image img" a podobné selektory fungujú bez zmeny */
picture {
  display: contents;
}

/* slideshow stage */
.hero-slideshow {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 36px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 30px 60px -20px rgba(18,33,24,0.35);
  background: var(--paper-2);
}
.hero-slideshow .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transition: opacity 1.1s ease;
  will-change: opacity;
}
.hero-slideshow .hero-slide.is-active {
  opacity: 1;
}

/* slideshow dots */
.hero-slideshow-dots {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  right: 22px;
  display: inline-flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(251,252,247,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.hero-dot {
  appearance: none;
  border: 0;
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background: rgba(18,33,24,0.22);
  cursor: pointer;
  transition: background .2s, width .2s;
}
.hero-dot:hover { background: rgba(18,33,24,0.45); }
.hero-dot.is-active {
  background: var(--brand);
  width: 22px;
  border-radius: 999px;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slideshow .hero-slide,
  .hero-slideshow .hero-slide.is-active {
    transition: opacity .3s ease;
    transform: none;
  }
}
.hero-tag-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-tag-set {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}
.hero-tag-set.is-active { opacity: 1; }
.hero-tag-set .hero-image-tag {
  position: absolute;
  bottom: auto;
  left: auto;
  transition: transform .9s ease;
}
.hero-tag-set .hero-image-tag-tl {
  top: 22px;
  left: 22px;
  transform: translateY(8px);
}
.hero-tag-set.is-active .hero-image-tag-tl {
  transform: translateY(0);
}
.hero-image-tag-br { right: 22px; bottom: 64px; }
.hero-image-tag-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.hero-image-tag {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(251,252,247,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 18px;
  padding: 8px 18px 8px 14px;
  box-shadow: var(--shadow-card);
  font-size: 16px;
  line-height: 1.25;
}
.hero-image-tag strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 17px;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: var(--ink);
}
.hero-image-tag-sub {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.hero-image-tag-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(132,189,0,0.25);
  flex-shrink: 0;
}

/* =============================================================
   INFO PANEL — image variant
   ============================================================= */
.info-panel-image {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  position: relative;
  background: var(--ink);
  min-height: 220px;
  display: flex;
  align-items: flex-end;
}
.info-panel-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 0;
}
.info-panel-image .info-panel-overlay {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}
.info-panel-image .info-panel-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px 24px;
  background: linear-gradient(to top, rgba(18,33,24,0.78) 0%, rgba(18,33,24,0.55) 60%, rgba(18,33,24,0) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-panel-image .info-panel-overlay strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.info-panel-image .info-panel-overlay span {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}
/* override the info-stack first-child green styling for image variant */
.info-stack .info-panel.info-panel-image:first-child {
  background: var(--ink);
}
.info-stack .info-panel.info-panel-image:first-child p { color: inherit; }

/* =============================================================
   UNIPHONE — feature image strip
   ============================================================= */
.uniphone-feature {
  margin-bottom: 56px;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 21 / 7;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.uniphone-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .uniphone-feature { aspect-ratio: 16 / 10; }
}

/* =============================================================
   SECTION HEADS
   ============================================================= */
.section-head {
  max-width: 780px;
  margin-bottom: 40px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
  line-height: 1.5;
}

/* =============================================================
   "PRE KOHO" — compact-grid + cards
   ============================================================= */
.compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 18px;
  row-gap: 4px;
  align-items: start;
}
.card .card-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  background: var(--brand);
  color: #ffffff;
}
.card h3 { margin: 0; align-self: center; }
.card p { grid-column: 2; margin: 0; }
.card .card-icon svg { width: 24px; height: 24px; display: block; }
#for-whom .card:nth-of-type(2) .card-icon { background: var(--mint-2, #6BC78C); }
#for-whom .card:nth-of-type(3) .card-icon { background: #E8B800; }
#for-whom .card:nth-of-type(4) .card-icon { background: var(--coral); }

/* =============================================================
   "PRE KOHO" — use-card (graphically richer variant)
   ============================================================= */
.use-grid { gap: 18px; }

.use-card {
  --use-accent: var(--brand);
  --use-accent-soft: var(--brand-soft);
  --use-accent-deep: var(--brand-deep);
  --use-tint: #FBFCF7;
  --use-ink-on: #ffffff;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--use-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 32px 30px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 20px;
  row-gap: 6px;
  align-items: start;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* color themes */
.use-card--lime  {
  --use-accent: #84BD00; --use-accent-soft: #ECF6CF; --use-accent-deep: #3E5A0E;
  --use-tint: #F5F8E8;
}
.use-card--mint  {
  --use-accent: #6BC78C; --use-accent-soft: #DCF1E2; --use-accent-deep: #1f5a36;
  --use-tint: #EAF7EE;
}
.use-card--sun   {
  --use-accent: #E8B800; --use-accent-soft: #FFF1B5; --use-accent-deep: #6a5500;
  --use-tint: #FBF6E1;
  --use-ink-on: #2a2200;
}
.use-card--coral {
  --use-accent: #FF9C72; --use-accent-soft: #FFE0D2; --use-accent-deep: #8a3a18;
  --use-tint: #FCEDE4;
}

/* big organic blob in the corner — the "wow" element */
.use-blob {
  position: absolute;
  inset: auto -90px -110px auto;
  width: 280px;
  height: 280px;
  background: var(--use-accent);
  opacity: .22;
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  z-index: 0;
  pointer-events: none;
  transition: transform .6s cubic-bezier(.22,.61,.36,1), opacity .35s ease, border-radius 1.2s ease;
}
.use-blob::after {
  content: "";
  position: absolute;
  inset: 28% 24% auto auto;
  width: 110px;
  height: 110px;
  background: var(--use-accent);
  opacity: .35;
  border-radius: 50% 60% 40% 60% / 60% 40% 60% 40%;
}

/* icon block — bigger, with a soft echo behind it */
.use-icon {
  position: relative;
  z-index: 1;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  background: var(--use-accent);
  color: var(--use-ink-on);
  box-shadow: 0 10px 24px -10px color-mix(in oklab, var(--use-accent), transparent 40%);
  transition: transform .35s cubic-bezier(.22,.61,.36,1), border-radius 1s ease;
}
.use-icon::before {
  content: "";
  position: absolute;
  inset: -6px -10px -10px -6px;
  border-radius: inherit;
  background: var(--use-accent);
  opacity: .25;
  z-index: -1;
  transition: transform .45s cubic-bezier(.22,.61,.36,1), opacity .3s ease;
}
.use-icon svg { width: 28px; height: 28px; display: block; }

.use-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  align-self: center;
  font-size: 22px;
}
.use-card p {
  position: relative;
  z-index: 1;
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  max-width: 46ch;
}

/* hover — subtle motion, blob morphs */
.use-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: color-mix(in oklab, var(--use-accent), transparent 55%);
}
.use-card:hover .use-blob {
  transform: translate(-18px, -14px) rotate(-8deg) scale(1.08);
  opacity: .3;
  border-radius: 50% 60% 40% 60% / 60% 50% 60% 40%;
}
.use-card:hover .use-icon {
  transform: rotate(-6deg) scale(1.04);
  border-radius: 50% 60% 40% 60% / 60% 50% 60% 40%;
}
.use-card:hover .use-icon::before {
  transform: translate(6px, 6px);
  opacity: .35;
}

@media (prefers-reduced-motion: reduce) {
  .use-card,
  .use-blob,
  .use-icon,
  .use-icon::before { transition: none; }
  .use-card:hover { transform: none; }
  .use-card:hover .use-blob,
  .use-card:hover .use-icon,
  .use-card:hover .use-icon::before { transform: none; }
}

@media (max-width: 720px) {
  .use-card { padding: 26px 24px 24px; grid-template-columns: 56px 1fr; column-gap: 16px; }
  .use-icon { width: 56px; height: 56px; }
  .use-icon svg { width: 24px; height: 24px; }
  .use-card h3 { font-size: 19px; }
  .use-blob { width: 220px; height: 220px; inset: auto -70px -90px auto; }
}
.info-stack {
  display: grid;
  gap: 16px;
}
.uni-cards-row {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 920px) {
  .uni-cards-row { grid-template-columns: 1fr; }
}
.info-stack .card {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 28px;
}
.info-stack .card h3 { margin: 0 0 8px; }
.info-stack .card .how-card-header { margin-bottom: 12px; }
.info-stack .card p { margin: 0 0 18px; }
.info-stack .card p:last-child { margin-bottom: 0; }
.uni-badge {
  position: absolute;
  top: 18px; right: 20px;
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600; font-size: 15px;
}
.uni-card-2 .uni-badge { background: var(--mint-2, #6BC78C); }
.uni-card-3 .uni-badge { background: #E8B800; }

.uni-visual {
  margin-top: 4px;
  border-radius: 14px;
  background: var(--brand-soft);
  padding: 10px;
}
.uni-visual svg { width: 100%; height: 80px; display: block; }

.uni-tags {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.uni-tags li {
  font-size: 14px; font-weight: 500;
  padding: 5px 10px; border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink-2);
  border: 1px solid var(--line);
}
.uni-tags li:nth-child(1) { background: var(--brand-soft); border-color: transparent; color: var(--brand-deep); }
.uni-tags li:nth-child(3) { background: var(--mint); border-color: transparent; }

.uni-roadmap {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.uni-roadmap::before {
  content: ""; position: absolute;
  left: 9px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(to bottom, var(--brand) 0 50%, var(--line) 50% 100%);
  border-radius: 2px;
}
.uni-roadmap li {
  position: relative; padding-left: 32px;
  font-size: 16px; color: var(--muted);
}
.uni-roadmap li::before {
  content: ""; position: absolute; left: 4px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--line);
}
.uni-roadmap li.done { color: var(--ink); font-weight: 500; }
.uni-roadmap li.done::before { background: var(--brand); border-color: var(--brand); }
.uni-roadmap li.now { color: var(--ink); font-weight: 500; }
.uni-roadmap li.now::before { background: #fff; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--mint-2);
}
.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

/* generic 4-up (kept for compatibility) */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* =============================================================
   "AKO TO FUNGUJE" — explain section
   ============================================================= */
.explain {
  background: var(--paper-2);
  border: none;
  border-radius: 56px;
  margin: 0 24px;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.explain::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  background: var(--brand-light);
  border-radius: 50% 60% 40% 50% / 60% 40% 60% 40%;
  opacity: 0.4;
  top: -120px; right: -80px;
  pointer-events: none;
}
.explain .container { position: relative; }

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: feat;
}
.feature-list li {
  counter-increment: feat;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 24px 22px 72px;
  color: var(--muted);
  position: relative;
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 12px;
  transition: border-color .15s, transform .15s;
}
.feature-list li:hover {
  border-color: var(--mint-2);
  transform: translateX(4px);
}
.feature-list li::before {
  content: counter(feat, decimal-leading-zero);
  position: absolute;
  left: 22px; top: 22px;
  width: 36px; height: 36px;
  background: var(--mint);
  color: var(--brand-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}
.feature-list strong {
  color: var(--ink);
  font-weight: 600;
}

/* compact list (cenník) */
.feature-list.compact {
  gap: 0;
  margin-top: 0;
}
.price-step .feature-list.compact li {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 4px 14px 28px;
  margin: 0;
  font-size: 17px;
  color: var(--ink-2);
  position: relative;
  transition: none;
  transform: none;
}
.price-step .feature-list.compact li:last-child {
  border-bottom: 0;
}
.price-step .feature-list.compact li::before {
  content: "";
  display: block;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: none;
  border: none;
  border-radius: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2384BD00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.price-step .feature-list.compact li:hover {
  background: transparent;
  border-color: var(--line);
  transform: none;
}
.price-step .feature-list.compact li:last-child:hover {
  border-bottom: 0;
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.info-panel:first-child {
  background: var(--brand);
  border-color: transparent;
  color: #fff;
}
.info-panel:first-child p { color: rgba(255,255,255,0.92); }
.info-panel h3 {
  font-size: 20px;
  margin: 0 0 10px;
}
.info-panel p {
  color: var(--muted);
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}
.info-panel a.btn { margin-top: 10px; }

.limit-list {
  margin: 0;
  padding-left: 20px;
  font-size: 17px;
  line-height: 1.55;
}
.limit-list li { margin-bottom: 8px; }

/* =============================================================
   ABOUT UNIPHONE — uses .split + cards/info-stack
   ============================================================= */
#uniphone .info-stack .card::before { display: none; }
#uniphone .info-stack .card {
  padding: 28px;
}

/* =============================================================
   STEPS / DOC GRID / USE GRID
   ============================================================= */
.use-grid, .doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.use-card, .doc-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform .18s, box-shadow .18s;
}
.use-card:hover, .doc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.image-slot {
  min-height: 180px;
  background:
    repeating-linear-gradient(45deg,
      rgba(18,33,24,0.04) 0 1px,
      transparent 1px 14px
    ),
    var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-deep);
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 20px;
  position: relative;
}
.image-slot::before {
  content: "";
  position: absolute;
  width: 120px; height: 120px;
  background: var(--brand-light);
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  opacity: 0.7;
  z-index: 0;
}
.image-slot::after {
  content: "📄";
  position: relative;
  z-index: 1;
  margin-right: 8px;
  font-size: 18px;
}
.image-slot {
  position: relative;
}
.use-card .body, .doc-card .body { padding: 26px; }
.use-card h3, .doc-card h3 { margin: 0 0 9px; font-size: 22px; }
.doc-card p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.step-num {
  width: 44px; height: 44px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 18px;
}

.strip {
  margin-top: 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.strip strong { font-size: 20px; letter-spacing: -0.025em; }

/* =============================================================
   FAQ
   ============================================================= */
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.side-nav {
  position: sticky;
  top: 96px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px;
}
.side-nav a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 400;
  font-size: 16px;
  transition: background .15s, color .15s;
}
.side-nav a:hover {
  background: var(--paper-2);
  color: var(--ink);
}
.side-nav a.active,
.side-nav a:focus-visible {
  background: var(--mint);
  color: var(--brand-deep);
  font-weight: 500;
}

.faq-group { margin-bottom: 48px; }
.faq-group h2 {
  font-size: 36px;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
  position: relative;
  padding-left: 22px;
}
.faq-group h2::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 12px; height: 12px;
  background: var(--brand);
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
details:hover { border-color: var(--mint-2); }
details[open] {
  border-color: var(--brand);
  box-shadow: var(--shadow-card);
}
summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 600;
  color: color-mix(in oklab, var(--ink-2), var(--muted) 40%);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  color: #122118;
  font-size: 24px;
  line-height: 1;
  font-weight: 300;
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: #FFDD00;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px -8px color-mix(in oklab, #FFDD00, transparent 30%);
  transition: transform .2s, background .2s;
}
details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}
.answer {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.answer p { margin: 0 0 12px; }

/* =============================================================
   CENNÍK — timeline pricing
   ============================================================= */
.timeline-pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.timeline-pricing::before {
  content: none;
}

.price-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
}
.price-step::before {
  content: none;
}
.price-step-primary {
  background: linear-gradient(145deg, var(--paper), var(--brand-soft));
  border-color: var(--brand);
}

.price-step-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: stretch;
}
.price-feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  isolation: isolate;
  background: var(--use-tint, var(--paper));
  border: 1px solid color-mix(in oklab, var(--use-accent, var(--line)), transparent 70%);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* themed palettes for the inner price box — mirrors .use-card themes */
.price-step--mint .price-feature {
  --use-accent: #6BC78C;
  --use-accent-soft: #DCF1E2;
  --use-accent-deep: #1f5a36;
  --use-tint: #EAF7EE;
}
.price-step--sun .price-feature {
  --use-accent: #E8B800;
  --use-accent-soft: #FFF1B5;
  --use-accent-deep: #6a5500;
  --use-tint: #FBF6E1;
}

/* big organic blob — the "wow" element, mirrors .use-blob */
.price-feature::before {
  content: "";
  position: absolute;
  inset: auto -90px -110px auto;
  width: 280px;
  height: 280px;
  background: var(--use-accent, var(--brand));
  opacity: .22;
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  z-index: 0;
  pointer-events: none;
  transition: transform .6s cubic-bezier(.22,.61,.36,1), opacity .35s ease, border-radius 1.2s ease;
}
.price-feature::after {
  content: "";
  position: absolute;
  right: 24%;
  top: 28%;
  width: 110px;
  height: 110px;
  background: var(--use-accent, var(--brand));
  opacity: .32;
  border-radius: 50% 60% 40% 60% / 60% 40% 60% 40%;
  z-index: 0;
  pointer-events: none;
  transition: transform .45s cubic-bezier(.22,.61,.36,1), opacity .3s ease;
}

/* hover — subtle motion, blob morphs (matches .use-card) */
.price-step:hover .price-feature {
  border-color: color-mix(in oklab, var(--use-accent, var(--brand)), transparent 55%);
}
.price-step:hover .price-feature::before {
  transform: translate(-18px, -14px) rotate(-8deg) scale(1.08);
  opacity: .3;
  border-radius: 50% 60% 40% 60% / 60% 50% 60% 40%;
}
.price-step:hover .price-feature::after {
  transform: translate(6px, 6px);
  opacity: .38;
}

@media (prefers-reduced-motion: reduce) {
  .price-feature,
  .price-feature::before,
  .price-feature::after { transition: none; }
  .price-step:hover .price-feature::before,
  .price-step:hover .price-feature::after { transform: none; }
}
.price-feature-bg {
  display: none;
}
.price-feature-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 100%;
}
.price-step .price-feature-inner h3 {
  margin: 0;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 1;
  font-weight: 100;
  letter-spacing: -0.04em;
  color: var(--use-accent-deep, var(--brand));
}
.price-feature-inner .note {
  margin: 16px 0 0;
  color: inherit;
  opacity: 0.85;
  font-size: 16px;
}
.price-feature-inner .price-subtitle {
  margin: 8px 0 0;
  color: inherit;
  opacity: 0.7;
  font-size: 15px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-step-cols .feature-list {
  margin-top: 0;
}
.price-step-cols .feature-list.compact {
  align-self: center;
  width: 100%;
}
@media (max-width: 760px) {
  .price-step-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .price-feature {
    min-height: 220px;
    padding: 28px 20px;
  }
}

.step-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--brand-deep);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
}
.step-label::before {
  content: "";
  width: 36px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
  flex: 0 0 auto;
}

.price-step h3 {
  margin: 0 0 6px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.price-subtitle {
  margin: 8px 0 0;
  color: var(--ink);
  font-weight: 500;
  font-size: 17px;
}

.price-step > p {
  color: var(--muted);
  font-size: 17px;
}

.price-step .note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
}

.price-step .price-table {
  margin: 36px 0 18px;
  font-size: 16px;
}
.price-step .price-table th,
.price-step .price-table td {
  vertical-align: top;
}
.price-step .price-table {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.price-step .price-table th {
  background: transparent;
  color: var(--brand-deep);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 16px 12px;
  border-bottom: 2px solid var(--ink);
}
.price-step .price-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.price-step .price-table td:nth-child(2) {
  color: var(--brand-deep);
  font-weight: 500;
  white-space: nowrap;
}
.price-step .price-table td:nth-child(3) {
  color: var(--muted);
  font-size: 15px;
}
.price-step .price-table tr:last-child td { border-bottom: 0; }
.price-step .price-table tbody tr:hover { background: transparent; }

.info-step {
  background: var(--paper);
}
.info-step::before { background: var(--mint); border-color: var(--mint-2); }

.info-list {
  display: grid;
  gap: 10px;
}
.info-list p {
  margin: 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

/* generic price box / table */
.price-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.price-table th,
.price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.price-table th {
  background: var(--mint);
  color: var(--brand-deep);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: var(--paper-3); }

/* =============================================================
   CTA
   ============================================================= */
.cta {
  background: var(--brand);
  color: #fff;
  border-radius: 36px;
  margin: 56px 24px;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  background: var(--mint);
  border-radius: 50% 60% 40% 60% / 60% 40% 60% 40%;
  top: -120px; left: -80px;
  opacity: 0.3;
  pointer-events: none;
}
.cta::after {
  content: "";
  position: absolute;
  width: 240px; height: 240px;
  background: var(--sun);
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  bottom: -120px; left: 80px;
  opacity: 0.55;
  pointer-events: none;
}
.cta .container {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}
.cta-box {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: 48px;
  align-items: center;
}
.cta-image {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 16 / 11;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.cta-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-image-btn {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.cta-image-btn:hover,
.cta-image-btn:focus-visible {
  transform: translateX(-50%);
}
.cta h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 44px);
  max-width: 18ch;
}
.cta p {
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  max-width: 50ch;
}
.cta .btn-primary {
  background: color-mix(in oklab, var(--ink-2), var(--muted) 40%);
  color: var(--paper);
  border-color: color-mix(in oklab, var(--ink-2), var(--muted) 40%);
}
.cta .btn-primary:hover {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
}
.cta .btn-secondary {
  background: var(--paper);
  border-color: var(--paper);
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  padding: 64px 0 32px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 56px;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand .logo img { display: block; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.footer-col h4 {
  margin: 0 0 16px 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  text-decoration: none;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  transition: color .15s;
}
.footer-col a:hover { color: var(--brand-deep); }
.footer-company {
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-company strong {
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-company .footer-company-id {
  font-variant-numeric: tabular-nums;
}
.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
  font-size: 15px;
  color: var(--muted);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 980px) {
  nav ul { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open > nav#primary-nav {
    display: block;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 18px 40px -20px rgba(18,33,24,0.28);
    padding: 8px;
    z-index: 60;
  }
  .nav.is-open > nav#primary-nav ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 17px;
  }
  .nav.is-open > nav#primary-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
  }
  .nav.is-open > nav#primary-nav a:hover {
    background: var(--paper-2);
  }
  .nav.is-open > nav#primary-nav a[aria-current="page"]::after {
    display: none;
  }
  .nav.is-open > nav#primary-nav a[aria-current="page"] {
    background: var(--paper-2);
  }
  .hero-grid,
  .faq-layout,
  .cta-box,
  .split { grid-template-columns: 1fr; }
  .cards, .use-grid, .steps, .doc-grid,
  .compact-grid { grid-template-columns: 1fr; }
  .side-nav { position: static; }
  .visual-card { min-height: auto; }
  .explain { margin: 0 12px; padding: 64px 0; }
  .cta { margin: 40px 12px; }
  .cta .container { padding: 28px; }
  section { padding: 64px 0; }
  .hero { padding: 32px 0 64px; }
  .price-step { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
}
@media (max-width: 720px) {
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
}

/* On small screens snap the header flush to the top edge --
   the floating pill wastes vertical space on phones. */
@media (max-width: 600px) {
  body > header { padding-top: 0; }
  /* Pill is flush with the top edge here, so the fade band below
     the menu is unnecessary visual weight — hide it. */
  body > header::after { display: none; }
  body > header .container {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 6px 14px 6px 16px;
    box-shadow: 0 2px 12px -8px rgba(18,33,24,0.25);
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .nav { min-height: 48px; gap: 12px; }
  .nav > .btn-primary { display: none; }
  /* CTA tlacidlo je tu skryte, preto v hamburger menu zobrazime
     polozku "Objednavka", aby objednavka zostala dostupna. */
  .nav-order { display: block; }
}

/* =============================================================
   AKO TO FUNGUJE — bento grid + aside info row
   ============================================================= */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.how-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition: border-color .18s, transform .18s, box-shadow .18s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.how-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--mint-2);
}
.how-card-header {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  align-items: center;
}
.how-card-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  flex-shrink: 0;
}
.how-card-icon svg { width: 22px; height: 22px; display: block; }
.how-card-icon--mint  { background: var(--mint-2); color: #fff; }
.how-card-icon--sun   { background: #E8B800; color: #2a2200; }
.how-card-icon--in    { background: var(--mint); color: var(--brand-deep); }
.how-card-icon--out   { background: var(--brand-soft); color: var(--brand-deep); }
.how-card-icon--port  { background: var(--paper-2); color: var(--brand-deep); border: 1px solid var(--line); }

/* "Ako virtuálne mobilné číslo funguje" – neutralizovať podklad ikon na svetlosivý */
.explain .how-card-icon,
.explain .how-card-icon--mint,
.explain .how-card-icon--sun,
.explain .how-card-icon--in,
.explain .how-card-icon--out,
.explain .how-card-icon--port {
  background: #ECEEF0;
  color: var(--ink);
  border: 1px solid #E1E4E7;
}
.explain .how-card-header h3 {
  color: var(--brand);
  font-weight: 500;
}
.how-card-header h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.how-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}

/* image card */
.how-card--image {
  grid-column: span 3;
  min-height: 440px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  border-color: transparent;
  justify-content: flex-end;
  gap: 0;
}
.how-card--image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.how-card--image:hover {
  transform: none;
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.how-card--image:hover img { transform: none; }
.how-card-image-overlay {
  position: relative; z-index: 1;
  padding: 28px 32px 30px;
  color: #fff;
  display: flex; flex-direction: column; gap: 6px;
  background: linear-gradient(to top, rgba(18,33,24,0.88) 0%, rgba(18,33,24,0.55) 55%, rgba(18,33,24,0) 100%);
}
.how-card-image-overlay strong {
  font-size: 26px; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.15;
}
.how-card-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
}

/* aside info row — visually separated from the 7 capability cards */
.how-aside {
  margin-top: 32px;
  padding: 28px;
  background: var(--paper-3);
  border: 1px dashed var(--line);
  border-radius: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-aside-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.how-aside-card + .how-aside-card {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.how-aside-card h3 {
  margin: 0 0 4px;
  font-size: 17px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.how-aside-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  text-wrap: pretty;
}
.how-aside-card--highlight h3 {
  color: var(--brand-deep);
}
.how-aside-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex; flex-direction: column;
  gap: 8px;
}
.how-aside-list li {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
}
.how-aside-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 2px;
  background: var(--muted);
  opacity: 0.5;
  border-radius: 2px;
}

@media (max-width: 980px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-card--image { grid-column: span 2; min-height: 240px; }
  .how-aside { grid-template-columns: 1fr; gap: 20px; }
  .how-aside-card + .how-aside-card {
    border-left: 0;
    padding-left: 0;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }
}
@media (max-width: 700px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-card { padding: 22px; border-radius: 22px; }
  .how-card--image { grid-column: span 1; }
  .how-aside { padding: 22px; border-radius: 22px; }
}

/* =============================================================
   DOCUMENTS — editorial download list
   ============================================================= */
.docs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.doc-row {
  --doc-accent: #84BD00;
  --doc-accent-soft: #ECF6CF;
  --doc-accent-deep: #3E5A0E;
  --doc-tint: #F5F8E8;
  --doc-ink-on: #ffffff;

  position: relative;
  isolation: isolate;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.doc-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: color-mix(in oklab, var(--doc-accent), transparent 55%);
}

.doc-row--mint {
  --doc-accent: #6BC78C;
  --doc-accent-soft: #DCF1E2;
  --doc-accent-deep: #1f5a36;
  --doc-tint: #EAF7EE;
}
.doc-row--sun {
  --doc-accent: #E8B800;
  --doc-accent-soft: #FFF1B5;
  --doc-accent-deep: #6a5500;
  --doc-tint: #FBF6E1;
  --doc-ink-on: #2a2200;
}

/* mark — full-width clickable tile, the entire download affordance */
.doc-row-mark {
  position: relative;
  display: grid;
  place-items: center;
  height: 180px;
  border-radius: 18px;
  background: var(--doc-tint);
  border: 1px solid color-mix(in oklab, var(--doc-accent), transparent 70%);
  color: var(--doc-accent-deep);
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.doc-row-mark:hover {
  background: color-mix(in oklab, var(--doc-accent), transparent 80%);
  border-color: color-mix(in oklab, var(--doc-accent), transparent 40%);
}
.doc-row-mark-blob {
  position: absolute;
  inset: auto -50px -60px auto;
  width: 200px;
  height: 200px;
  background: var(--doc-accent);
  opacity: .32;
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  z-index: 0;
  pointer-events: none;
  transition: transform .55s cubic-bezier(.22,.61,.36,1), border-radius 1s ease, opacity .3s ease;
}
.doc-row-mark:hover .doc-row-mark-blob {
  transform: translate(-18px, -14px) rotate(-8deg) scale(1.12);
  opacity: .42;
  border-radius: 50% 60% 40% 60% / 60% 50% 60% 40%;
}
.doc-row-mark svg {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
  transition: transform .25s ease;
}
.doc-row-mark:hover svg {
  transform: translateY(-2px);
}
.doc-row-mark-tag {
  position: relative;
  z-index: 1;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--doc-accent-deep);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid color-mix(in oklab, var(--doc-accent), transparent 60%);
  margin-top: -18px;
}

/* download chip in the corner — the call-to-action affordance */
.doc-row-mark-download {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--paper);
  color: var(--doc-accent-deep);
  border: 1px solid color-mix(in oklab, var(--doc-accent), transparent 55%);
  box-shadow: var(--shadow-card);
  transition: background .2s ease, color .2s ease, transform .25s cubic-bezier(.22,.61,.36,1), border-color .2s ease;
}
.doc-row-mark-download svg {
  width: 18px;
  height: 18px;
  margin: 0;
  transition: transform .25s ease;
}
.doc-row-mark:hover .doc-row-mark-download {
  background: var(--doc-accent);
  color: var(--doc-ink-on);
  border-color: var(--doc-accent);
  transform: translateY(-2px);
}
.doc-row-mark:hover .doc-row-mark-download svg {
  transform: translateY(2px);
}
.doc-row-mark:focus-visible {
  outline: 2px solid var(--doc-accent);
  outline-offset: 3px;
}

.doc-row-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.doc-row-body h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--brand);
  font-weight: 500;
}
.doc-row-body p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  max-width: 56ch;
}

.docs-foot {
  margin: 24px 0 0;
  padding: 18px 22px;
  background: var(--paper-3);
  border: 1px dashed var(--line);
  border-radius: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.docs-foot a {
  color: var(--brand-deep);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in oklab, var(--brand), transparent 60%);
}
.docs-foot a:hover { border-bottom-color: var(--brand); }

@media (max-width: 920px) {
  .docs-list { grid-template-columns: 1fr; }
  .doc-row { padding: 22px; }
  .doc-row-mark { height: 160px; }
}
@media (max-width: 600px) {
  .doc-row-body h3 { font-size: 21px; }
}


/* =============================================================
   OBJEDNAVKA — page specific (extracted from objednavka.html)
   ============================================================= */

    /* =============================================================
       OBJEDNÁVKA — page specific
       Builds on Soft Bloom system (mint/lime, organic shapes,
       JetBrains Mono accents, rounded paper cards).
       ============================================================= */

    .order-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
      gap: 28px;
      align-items: start;
      margin-top: 8px;
    }
    @media (max-width: 980px) {
      .order-layout { grid-template-columns: 1fr; }
    }

    /* Config testing panel — sandy/sun tint, dashed border */
    .order-config {
      background: #FBF6E1;
      border: 1px dashed #E8B800;
      border-radius: 18px;
      padding: 16px 20px;
      margin-bottom: 28px;
      color: var(--ink-2);
      font-size: 16px;
    }
    .order-config label {
      display: flex; align-items: flex-start; gap: 12px;
      font-weight: 500;
      cursor: pointer;
    }
    .order-config input[type="checkbox"] {
      margin-top: 2px;
      width: 18px; height: 18px;
      accent-color: var(--brand);
      flex-shrink: 0;
    }
    .order-config small {
      display: block;
      margin: 6px 0 0 30px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.5;
    }

    /* Account cards */
    .account-card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-card);
      margin-bottom: 18px;
      position: relative;
    }
    .account-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 24px;
      padding-bottom: 22px;
      border-bottom: 1px dashed var(--line);
    }
    .account-title-row {
      flex: 1;
      display: grid;
      grid-template-columns: auto minmax(220px, 1fr);
      gap: 16px;
      align-items: center;
    }
    .account-num {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin: 0;
      color: var(--brand-deep);
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      line-height: 1;
    }
    .account-num::before {
      content: "";
      width: 28px; height: 2px;
      background: var(--brand);
      border-radius: 2px;
      flex: 0 0 auto;
    }
    .account-num strong {
      color: var(--ink);
      font-family: 'Roboto', sans-serif;
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -0.02em;
      text-transform: none;
    }

    /* form labels + inputs */
    .form-label {
      display: block;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--brand-deep);
      margin: 0 0 10px;
    }
    .field { margin-bottom: 22px; }
    .field:last-child { margin-bottom: 0; }

    input[type="text"].order-input,
    input[type="tel"].order-input,
    input[type="email"].order-input,
    input[type="password"].order-input,
    select.order-input {
      width: 100%;
      padding: 12px 16px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: var(--paper);
      font-family: inherit;
      font-size: 17px;
      color: var(--ink);
      transition: border-color .15s, box-shadow .15s, background .15s;
    }
    input[type="text"].order-input:hover,
    input[type="tel"].order-input:hover,
    input[type="email"].order-input:hover,
    input[type="password"].order-input:hover,
    select.order-input:hover { border-color: var(--mint-2); }
    input[type="text"].order-input:focus,
    input[type="tel"].order-input:focus,
    input[type="email"].order-input:focus,
    input[type="password"].order-input:focus,
    select.order-input:focus {
      outline: none;
      border-color: var(--brand);
      background: #fff;
      box-shadow: 0 0 0 4px var(--brand-soft);
    }

    /* line items */
    .order-item {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 20px;
      align-items: center;
      padding: 18px 20px;
      background: var(--paper-3);
      border: 1px solid var(--line);
      border-radius: 18px;
      margin-bottom: 10px;
      transition: border-color .15s, background .15s;
    }
    .order-item:last-child { margin-bottom: 0; }
    .order-item--check { grid-template-columns: auto 1fr auto; }
    .order-item--number {
      grid-template-columns: 1fr auto;
      grid-template-areas:
        "text price"
        "text actions";
      align-items: start;
      row-gap: 12px;
    }
    .order-item--number > .order-item-text { grid-area: text; }
    .order-item--number > .item-price { grid-area: price; }
    .order-item--number > .btn-mini-group {
      grid-area: actions;
      justify-self: end;
    }
    .order-item--number .btn-mini { white-space: nowrap; }
    .order-item--number.is-error {
      border-color: #d97373;
      background: #fcf1f1;
    }
    .order-item-text strong {
      display: block;
      font-size: 17px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -0.01em;
      margin-bottom: 4px;
    }
    .order-item-text small strong {
      display: inline;
      font-size: inherit;
      color: inherit;
      letter-spacing: inherit;
      margin: 0;
    }
    .order-item-text small {
      display: block;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.5;
      font-weight: 300;
    }
    .error-text {
      display: none;
      color: #a63232;
      font-size: 15px;
      margin-top: 6px;
      font-weight: 500;
    }
    .order-item--number.is-error .error-text { display: block; }
    .error-text.is-shown { display: block; }

    .order-check {
      width: 20px; height: 20px;
      accent-color: var(--brand);
      cursor: pointer;
      margin: 0;
      flex-shrink: 0;
    }

    /* price */
    .item-price {
      text-align: right;
      min-width: 180px;
      font-size: 16px;
      color: var(--ink-2);
    }
    .item-price-row {
      display: block;
      font-weight: 500;
      color: var(--ink);
    }
    .item-price-row + .item-price-row {
      margin-top: 4px;
      color: var(--muted);
      font-weight: 400;
      font-size: 15px;
    }
    .rate-pair {
      display: inline-flex;
      gap: 6px;
      align-items: baseline;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .rate-list {
      color: var(--muted);
      text-decoration: line-through;
      font-weight: 300;
    }
    .rate-effective {
      color: var(--brand-deep);
      font-weight: 600;
    }

    /* small buttons inside items */
    .btn-mini {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: var(--paper);
      color: var(--ink);
      font-size: 15px;
      font-weight: 500;
      font-family: inherit;
      cursor: pointer;
      transition: background .15s, border-color .15s, color .15s, transform .15s;
    }
    .btn-mini:hover {
      background: var(--paper-2);
      border-color: var(--mint-2);
    }
    .btn-mini--ghost-danger {
      color: #a63232;
      border-color: rgba(166,50,50,0.25);
      background: transparent;
    }
    .btn-mini--ghost-danger:hover {
      background: #fcf1f1;
      border-color: #d97373;
      color: #7a2424;
    }
    .btn-mini:disabled {
      opacity: 0.4;
      cursor: not-allowed;
      transform: none;
    }
    .btn-mini-group {
      display: inline-flex;
      gap: 8px;
      align-items: center;
    }

    .btn-add {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 999px;
      border: 1px dashed var(--mint-2);
      background: transparent;
      color: var(--brand-deep);
      font-weight: 500;
      font-size: 16px;
      font-family: inherit;
      cursor: pointer;
      transition: background .15s, border-color .15s, transform .15s;
    }
    .btn-add:hover {
      background: var(--brand-soft);
      border-style: solid;
    }
    /* Large add button — uses the site's pill button vocabulary
       (paper bg, line border, brand-deep ink), full-width, with a
       circular plus glyph so it reads as an action, not a divider. */
    .btn-add-large {
      width: 100%;
      justify-content: center;
      gap: 12px;
      padding: 18px 24px;
      font-size: 17px;
      font-weight: 600;
      margin-top: 8px;
      border-radius: 999px;
      border: 1px solid var(--line);
      border-style: solid;
      background: var(--paper);
      color: var(--ink);
      letter-spacing: -0.005em;
      box-shadow: var(--shadow-card);
    }
    .btn-add-large:hover {
      background: var(--paper-2);
      border-color: var(--mint-2);
      color: var(--brand-deep);
    }
    .btn-add-large > [aria-hidden="true"] {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: var(--brand);
      color: #fff;
      font-size: 18px;
      font-weight: 600;
      line-height: 1;
      transition: background .15s, transform .15s;
    }
    .btn-add-large:hover > [aria-hidden="true"] {
      background: var(--brand-deep);
      transform: rotate(90deg);
    }

    /* SUMMARY (sticky right column) */
    .order-summary {
      position: sticky;
      top: 96px;
      background: var(--ink);
      color: var(--paper);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow);
      overflow: hidden;
      isolation: isolate;
    }
    .order-summary::before {
      content: "";
      position: absolute;
      inset: auto -100px -140px auto;
      width: 320px; height: 320px;
      background: var(--brand);
      opacity: .18;
      border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
      z-index: 0;
      pointer-events: none;
    }
    .order-summary > * { position: relative; z-index: 1; }
    .order-summary-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin: 0 0 18px;
      color: var(--brand-light);
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      line-height: 1;
    }
    .order-summary-eyebrow::before {
      content: "";
      width: 24px; height: 2px;
      background: var(--brand-light);
      border-radius: 2px;
    }
    .order-summary h2 {
      color: #fff;
      margin: 0 0 20px;
      font-size: 28px;
      letter-spacing: -0.03em;
    }
    .summary-block {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 18px;
      padding: 18px 20px;
      margin-bottom: 14px;
    }
    .summary-block-head {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 14px;
    }
    .summary-block-head strong {
      display: block;
      font-size: 16px;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
      margin-bottom: 4px;
    }
    .summary-amount {
      font-size: 30px;
      font-weight: 700;
      letter-spacing: -0.03em;
      color: #fff;
      white-space: nowrap;
      line-height: 1.1;
    }
    .summary-amount .rate-list {
      color: rgba(255,255,255,0.4);
      font-size: 18px;
      font-weight: 300;
    }
    .summary-amount .rate-effective {
      color: var(--brand-light);
      font-weight: 700;
    }
    .summary-amount.single { color: var(--brand-light); }
    .toggle-link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: transparent;
      border: 0;
      padding: 0;
      color: rgba(255,255,255,0.7);
      text-decoration: underline;
      text-decoration-color: rgba(255,255,255,0.3);
      text-underline-offset: 3px;
      font-family: inherit;
      font-size: 15px;
      cursor: pointer;
      margin-top: 2px;
    }
    .toggle-link:hover {
      color: var(--brand-light);
      text-decoration-color: var(--brand-light);
    }
    .summary-details { margin-top: 14px; }
    .summary-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      align-items: baseline;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-size: 15px;
    }
    .summary-row:last-child { border-bottom: 0; }
    .summary-row span:first-child { color: rgba(255,255,255,0.75); }
    .summary-row span:last-child {
      text-align: right;
      color: #fff;
      font-weight: 500;
    }
    .summary-row .rate-list { color: rgba(255,255,255,0.35); }
    .summary-row .rate-effective { color: var(--brand-light); }

    /* bonus strip */
    .bonus-strip {
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
      color: #fff;
      border-radius: 18px;
      padding: 18px 20px;
      margin: 14px 0;
      box-shadow: 0 12px 26px -14px rgba(132,189,0,0.55);
    }
    .bonus-strip-title {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .bonus-strip-title::before {
      content: "★";
      font-family: inherit;
      letter-spacing: 0;
    }
    .bonus-strip ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .bonus-strip li {
      font-size: 16px;
      line-height: 1.4;
      padding-left: 18px;
      position: relative;
    }
    .bonus-strip li::before {
      content: "";
      position: absolute;
      left: 0; top: 9px;
      width: 8px; height: 2px;
      background: rgba(255,255,255,0.7);
      border-radius: 2px;
    }

    .summary-note {
      color: rgba(255,255,255,0.6);
      font-size: 14px;
      line-height: 1.5;
      margin: 14px 0 0;
    }

    /* mobile tweaks */
    @media (max-width: 760px) {
      .account-card { padding: 22px; }
      .account-head { flex-direction: column; align-items: stretch; }
      .account-title-row { grid-template-columns: 1fr; gap: 10px; }
      .order-item,
      .order-item--check,
      .order-item--number {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      /* Reset grid areas — desktop definícia odkazuje na 2 stĺpce
         a bez resetu by Grid pridal implicitný stĺpec a karta by
         ostala dvojstĺpcová aj pod breakpointom. */
      .order-item--number {
        grid-template-areas:
          "text"
          "price"
          "actions";
      }
      .order-item--number > .btn-mini-group {
        justify-self: stretch;
        width: 100%;
      }
      .order-item--number .btn-mini { flex: 1; }
      .item-price { text-align: left; min-width: 0; }
      .rate-pair { justify-content: flex-start; }
      .order-summary { position: static; }
    }

    /* Tier badge on order item */
    .num-tier {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 3px 10px;
      border-radius: 999px;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: 1px solid transparent;
    }
    .num-tier--silver { background: #E9ECF1; color: #4a5260; border-color: #D5DAE2; }
    .num-tier--gold   { background: #FBF1C8; color: #6a5500; border-color: #E8D279; }

    .num-card-tier-stack {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 8px;
      line-height: 1.1;
    }
    .num-tier-price {
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      white-space: nowrap;
    }

    .order-item-text .order-item-tags {
      display: inline-flex;
      gap: 6px;
      margin-left: 8px;
      vertical-align: middle;
    }
    .order-item-tags .num-tier-mini {
      font-size: 12px;
      letter-spacing: 0.1em;
      padding: 2px 8px;
    }
    .order-item-number-value + .num-tier {
      vertical-align: middle;
      margin-left: 4px;
      position: relative;
      top: -1px;
    }
    .order-item-number-value {
      display: inline-block;
      vertical-align: middle;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 18px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -0.01em;
    }
    .order-item-transfer-meta {
      font-size: 15px;
      color: var(--muted);
      margin-top: 2px;
    }

    /* surcharge sub-row (silver/gold) */
    .item-surcharge {
      display: block;
      margin-top: 6px;
      font-size: 13px;
      font-weight: 400;
      color: var(--muted);
      line-height: 1.4;
    }
    .item-surcharge-value {
      font-weight: 600;
      color: var(--brand-deep);
    }

    /* =============================================================
       NUMBER MODAL
       ============================================================= */
    .num-modal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: none;
      align-items: stretch;
      justify-content: center;
    }
    .num-modal.is-open { display: flex; }
    .num-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(18,33,24,0.55);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .num-modal-dialog {
      position: relative;
      margin: auto;
      width: min(720px, calc(100% - 32px));
      max-height: calc(100vh - 64px);
      background: var(--paper);
      border-radius: 28px;
      box-shadow: 0 30px 80px -20px rgba(18,33,24,0.45);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      isolation: isolate;
    }
    .num-modal-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      padding: 26px 28px 14px;
      border-bottom: 1px solid var(--line);
    }
    .num-modal-eyebrow {
      margin: 0 0 6px;
      color: var(--brand-deep);
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }
    .num-modal-head h2 {
      margin: 0;
      font-size: 26px;
      letter-spacing: -0.03em;
      color: var(--ink);
    }
    .num-modal-close {
      width: 40px; height: 40px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: var(--paper);
      color: var(--ink);
      font-size: 22px;
      line-height: 1;
      cursor: pointer;
      flex-shrink: 0;
      transition: background .15s, border-color .15s;
    }
    .num-modal-close:hover {
      background: var(--paper-2);
      border-color: var(--mint-2);
    }

    .num-modal-tabs {
      display: flex;
      gap: 6px;
      padding: 14px 28px 0;
      background: var(--paper);
      border-bottom: 1px solid var(--line);
    }
    .num-tab {
      padding: 12px 18px;
      border: 0;
      border-bottom: 2px solid transparent;
      background: transparent;
      color: var(--muted);
      font-family: inherit;
      font-weight: 500;
      font-size: 16px;
      cursor: pointer;
      transition: color .15s, border-color .15s;
      margin-bottom: -1px;
    }
    .num-tab:hover { color: var(--ink); }
    .num-tab.is-active {
      color: var(--brand-deep);
      border-bottom-color: var(--brand);
    }

    .num-modal-body {
      flex: 1;
      overflow: auto;
      padding: 22px 28px 24px;
      background: var(--paper-3);
    }
    .num-tab-pane { display: none; }
    .num-tab-pane.is-active { display: block; }

    /* Filters */
    .num-filters {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-bottom: 18px;
    }
    .num-results {
      border-top: 1px solid var(--line);
      padding-top: 18px;
    }
    .num-filter-group--search { grid-column: 1 / -1; }
    .num-filter-label {
      display: block;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--brand-deep);
      margin-bottom: 8px;
    }
    .num-chip-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--mint-2);
      flex-shrink: 0;
    }
    .num-chip-dot[data-type="mobile"] { background: var(--brand); }
    .num-chip-dot[data-type="voip"] { background: var(--mint-2); }
    .num-chip-dot[data-type="toll_free"] { background: #E8B800; }
    .num-chip-dot[data-type="shared_cost"] { background: var(--coral); }
    .num-chip-dot[data-type="direct_marketing"] { background: var(--berry); }
    .num-chip-dot[data-type="premium"] { background: #9d7ad8; }

    .num-dd {
      position: relative;
    }
    .num-dd-button {
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: var(--paper);
      font-family: inherit;
      font-size: 15px;
      font-weight: 500;
      color: var(--ink-2);
      cursor: pointer;
      transition: border-color .15s, background .15s;
      text-align: left;
    }
    .num-dd-button:hover { border-color: var(--mint-2); }
    .num-dd.is-open .num-dd-button {
      border-color: var(--brand);
      background: var(--paper-2);
    }
    .num-dd-value {
      flex: 1 1 auto;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .num-dd-caret {
      flex-shrink: 0;
      width: 10px;
      height: 10px;
      border-right: 2px solid var(--brand-deep);
      border-bottom: 2px solid var(--brand-deep);
      transform: rotate(45deg);
      margin-top: -4px;
      transition: transform .15s;
    }
    .num-dd.is-open .num-dd-caret {
      transform: rotate(-135deg);
      margin-top: 2px;
    }
    .num-dd-panel {
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      right: 0;
      z-index: 30;
      max-height: 280px;
      overflow-y: auto;
      padding: 8px;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 14px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .num-dd-panel[hidden] { display: none; }
    .num-dd-option {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      border-radius: 10px;
      font-size: 15px;
      color: var(--ink-2);
      cursor: pointer;
      transition: background .12s;
    }
    .num-dd-option:hover { background: var(--paper-2); }
    .num-dd-option input {
      accent-color: var(--brand);
      cursor: pointer;
    }
    .num-dd-option-label {
      flex: 1 1 auto;
    }
    .num-dd-option--tier-nice .num-dd-option-label {
      background: linear-gradient(135deg, #FBF1C8 0%, #E9ECF1 100%);
      padding: 2px 8px;
      border-radius: 999px;
    }
    .num-dd-option--tier-silver .num-dd-option-label {
      background: #E9ECF1;
      padding: 2px 8px;
      border-radius: 999px;
      color: #2c3a30;
    }
    .num-dd-option--tier-gold .num-dd-option-label {
      background: #FBF1C8;
      padding: 2px 8px;
      border-radius: 999px;
      color: #6a5500;
    }

    .num-search {
      width: 100%;
      padding: 12px 16px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: var(--paper);
      font-family: inherit;
      font-size: 17px;
      color: var(--ink);
    }
    .num-search:focus {
      outline: none;
      border-color: var(--brand);
      box-shadow: 0 0 0 4px var(--brand-soft);
    }

    /* Recommended */
    .num-reco {
      background: var(--brand-soft);
      border: 1px solid color-mix(in oklab, var(--brand), transparent 60%);
      border-radius: 18px;
      padding: 16px 18px;
      margin-bottom: 18px;
    }
    .num-reco-head { margin-bottom: 12px; }
    .num-reco-tag {
      display: inline-block;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--brand-deep);
      margin-right: 10px;
    }
    .num-reco-sub { font-size: 15px; color: var(--ink-2); }
    .num-reco-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 6px;
    }

    /* List */
    .num-list-head {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 10px;
      color: var(--ink-2);
      font-size: 15px;
    }
    .num-list-head strong { color: var(--ink); font-size: 16px; }
    .num-list-sub { color: var(--muted); }
    .num-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 6px;
    }
    .num-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 6px 12px;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 12px;
      cursor: pointer;
      transition: border-color .15s, background .15s, transform .1s;
      user-select: none;
    }
    .num-card:hover { border-color: var(--mint-2); }
    .num-card.is-selected {
      background: var(--brand-soft);
      border-color: var(--brand);
    }
    .num-card-main {
      display: flex;
      align-items: baseline;
      gap: 10px;
      min-width: 0;
      flex: 1;
    }
    .num-card-num {
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 17px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -0.01em;
      line-height: 1.2;
    }
    .num-card-meta {
      display: flex;
      gap: 10px;
      align-items: baseline;
      font-size: 13px;
      line-height: 1;
      color: var(--muted);
    }
    .num-card-aside {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .num-card-check {
      width: 24px; height: 24px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--paper-2);
      border: 1px solid var(--line);
      color: var(--ink-2);
      font-weight: 600;
      font-size: 16px;
    }
    .num-card.is-selected .num-card-check {
      background: var(--brand);
      border-color: var(--brand);
      color: #fff;
    }
    .num-empty {
      grid-column: 1 / -1;
      text-align: center;
      padding: 32px;
      color: var(--muted);
      font-size: 16px;
    }
    /* Transfer pane */
    .num-transfer { display: grid; gap: 18px; }
    .num-field-hint { display: block; color: var(--muted); font-size: 14px; margin-top: 6px; }
    .num-warn {
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 14px;
      padding: 18px 20px;
      background: #FBF6E1;
      border: 1px solid #E8D279;
      border-radius: 18px;
      color: var(--ink-2);
    }
    .num-warn-icon {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: #E8B800;
      color: #2a2200;
      display: grid;
      place-items: center;
      font-weight: 700;
      font-size: 18px;
    }
    .num-warn strong { color: var(--ink); }
    .num-warn p { margin: 6px 0 0; font-size: 16px; line-height: 1.55; color: var(--ink-2); }
    .num-input { font-size: 17px; }
    .num-input select, select.num-input {
      appearance: none;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%233E5A0E' stroke-width='2'><polyline points='1,1 6,6 11,1'/></svg>");
      background-repeat: no-repeat;
      background-position: right 16px center;
      background-size: 12px 8px;
      padding-right: 40px;
    }

    /* Footer */
    .num-modal-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 16px 28px;
      border-top: 1px solid var(--line);
      background: var(--paper);
      flex-wrap: wrap;
    }
    .num-modal-summary { font-size: 16px; color: var(--ink-2); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
    .num-modal-actions { display: flex; gap: 8px; }
    .num-modal-apply {
      background: var(--brand);
      border-color: var(--brand);
      color: #fff;
      padding: 10px 18px;
      font-weight: 600;
    }
    .num-modal-apply:hover:not(:disabled) {
      background: var(--brand-deep);
      border-color: var(--brand-deep);
      color: #fff;
    }
    .num-modal-apply:disabled {
      background: var(--paper-2);
      border-color: var(--line);
      color: var(--muted);
      cursor: not-allowed;
    }

    @media (max-width: 700px) {
      .num-modal-dialog { width: 100%; max-height: 100vh; border-radius: 0; }
      .num-modal-head, .num-modal-tabs, .num-modal-body, .num-modal-foot { padding-left: 18px; padding-right: 18px; }
    }
    @media (max-width: 540px) {
      .num-filters { grid-template-columns: 1fr; }
    }


/* =============================================================
   CENNÍK — Unimo konto + virtuálne číslo + balíčky (v2)
   ============================================================= */
.pricing-core {
  padding: 0 0 28px;
}

.pricing-core .section-head {
  max-width: 820px;
  margin-bottom: 26px;
}

.pricing-core .section-head + .section-head,
.offer-shell + .section-head,
.package-grid + .section-head {
  margin-top: 64px;
}

.pricing-core .section-head h2 {
  margin-bottom: 10px;
}

.pricing-core .section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.offer-shell {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(18, 33, 24, .07);
  overflow: hidden;
  margin-bottom: 24px;
}

.offer-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  gap: 34px;
  padding: 34px;
  align-items: stretch;
}

.offer-block > div {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offer-block .benefit-box {
  margin-top: auto;
}

.offer-eyebrow,
.package-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.offer-title {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--brand);
  font-weight: 500;
}

.offer-lead {
  margin: 0;
  max-width: 660px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
}

.included-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--ink);
  line-height: 1.45;
  font-weight: 500;
}

.included-list li::before {
  content: "";
  display: inline-block;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23122118' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/13px no-repeat,
    #FFDD00;
  margin-top: 1px;
}

.benefit-box {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 20px;
  background: var(--brand-soft);
  border: 1px solid var(--line);
}

.benefit-box-title {
  margin: 0 0 12px;
  color: var(--brand-deep);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .035em;
}

.price-panel {
  align-self: stretch;
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 8px 22px;
  box-shadow: 0 10px 24px rgba(18, 33, 24, .045);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.price-panel::before {
  content: "";
  position: absolute;
  inset: auto -90px -110px auto;
  width: 280px;
  height: 280px;
  background: var(--mint);
  opacity: .55;
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  z-index: -1;
  pointer-events: none;
}

.price-panel::after {
  content: "";
  position: absolute;
  right: 70px;
  bottom: 90px;
  width: 120px;
  height: 120px;
  background: var(--brand-light);
  opacity: .4;
  border-radius: 50% 60% 40% 60% / 60% 40% 60% 40%;
  z-index: -1;
  pointer-events: none;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-2);
  position: relative;
  z-index: 1;
}

.price-row:last-child { border-bottom: 0; }

.price-row dt {
  margin: 0;
  color: var(--ink-2);
  font-weight: 600;
  line-height: 1.35;
}

.price-row dd {
  margin: 0;
  text-align: right;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.12;
  white-space: nowrap;
}

.price-old {
  display: inline-block;
  margin-right: 8px;
  color: var(--muted);
  text-decoration: line-through;
  font-size: 14px;
  font-weight: 500;
}

.price-main {
  font-size: 30px;
  letter-spacing: -.02em;
}

.price-sub {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  white-space: normal;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 24px;
}

.package-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(18, 33, 24, .055);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.package-main {
  padding: 28px 28px 22px;
}

.package-card h3 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--brand);
  font-weight: 500;
}

.package-text {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.55;
}

.package-main .zone-link {
  margin-top: 0;
}

.package-price-panel {
  margin-top: 22px;
  border-top: 1px solid var(--line-2);
}

.package-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 13px 28px;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink);
  line-height: 1.4;
}

.package-row:last-child { border-bottom: 0; }
.package-row strong { white-space: nowrap; }
.package-row .price-main { font-size: 32px; }

.zone-link {
  display: inline;
  border: 0;
  background: transparent;
  color: var(--brand-deep);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.zone-link:hover {
  color: var(--brand);
}

.shared-box {
  margin: 0 0 56px;
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--brand-soft);
  border: 1px solid var(--line);
  color: var(--brand-deep);
  line-height: 1.5;
}

.price-table.compact-table {
  margin-bottom: 0;
}

.price-table.compact-table th,
.price-table.compact-table td {
  vertical-align: top;
}

/* ---- Ceny nad rámec balíkov (rate cards) ---- */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 8px;
}

.rate-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(18, 33, 24, .055);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
}

.package-card::before,
.rate-card::before {
  content: "";
  position: absolute;
  inset: auto -90px -110px auto;
  width: 280px;
  height: 280px;
  background: var(--mint);
  opacity: .55;
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  z-index: -1;
  pointer-events: none;
}

.package-card::after,
.rate-card::after {
  content: "";
  position: absolute;
  right: 70px;
  bottom: 90px;
  width: 120px;
  height: 120px;
  background: var(--brand-light);
  opacity: .4;
  border-radius: 50% 60% 40% 60% / 60% 40% 60% 40%;
  z-index: -1;
  pointer-events: none;
}

.rate-card-head {
  padding: 26px 28px 18px;
  background: var(--paper);
  border-bottom: 1px solid var(--line-2);
}

.rate-card-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.rate-card-head h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--brand);
  font-weight: 500;
}

.rate-card-note {
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
}

.rates-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rate-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 16px 28px;
  border-bottom: 1px solid var(--line-2);
}

.rate-row:last-child { border-bottom: 0; }

.rate-row dt {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.rate-name {
  color: var(--ink-2);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.35;
}

.rate-meta {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.rate-meta .zone-link {
  font-weight: 600;
  font-size: inherit;
}

.rate-row dd {
  margin: 0;
  text-align: right;
  white-space: nowrap;
  color: var(--ink);
  font-feature-settings: "tnum" 1;
  line-height: 1.12;
}

.rate-row dd strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
}

.rate-unit {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

.zone-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(18, 33, 24, .55);
  padding: 24px;
}

.zone-modal.is-open {
  display: grid;
  place-items: center;
}

.zone-dialog {
  max-width: 680px;
  width: 100%;
  max-height: min(720px, 88vh);
  overflow: auto;
  background: var(--paper);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
}

.zone-dialog h3 {
  margin: 0 0 14px;
}

.zone-dialog p,
.zone-dialog ul {
  line-height: 1.6;
  color: var(--ink-2);
}

.zone-close {
  margin-top: 18px;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  border-radius: 10px;
  padding: 11px 16px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}

.zone-close:hover {
  background: var(--brand-deep);
}

@media (max-width: 860px) {
  .offer-block,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .rates-grid {
    grid-template-columns: 1fr;
  }

  .rate-card-head { padding: 22px 22px 16px; }
  .rate-row { padding: 14px 22px; }

  .offer-block {
    padding: 24px;
  }

  .price-panel {
    padding: 8px 18px;
  }

  .package-main {
    padding: 22px;
  }

  .package-row {
    padding: 13px 22px;
  }

  .price-row,
  .package-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-row dd,
  .package-row dd {
    text-align: left;
  }

  .price-main,
  .package-row .price-main {
    font-size: 28px;
  }
}

/* =============================================================
   NUMBER PICKER — doplnky k existujúcemu dizajnu
   ============================================================= */

.num-card--skeleton {
  background: linear-gradient(90deg, var(--paper-2) 25%, var(--paper) 50%, var(--paper-2) 75%);
  background-size: 200% 100%;
  animation: numSkeletonShimmer 1.2s ease-in-out infinite;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 64px;
  pointer-events: none;
}

@keyframes numSkeletonShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.num-empty--error {
  background: #FBF6E1;
  border: 1px solid #E8D279;
  border-radius: 18px;
  color: var(--ink-2);
}

.num-empty--error p {
  margin: 0 0 12px;
  font-size: 16px;
}

.num-filter-group--geo {
  grid-column: 1 / -1;
}

.num-geo-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px dashed var(--line);
  background: var(--paper);
  color: var(--ink-2);
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}

.num-geo-toggle::before {
  content: "+";
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--brand-deep);
}

.num-filter-group--geo[data-open="1"] .num-geo-toggle::before {
  content: "–";
}

.num-geo-toggle:hover {
  border-color: var(--mint-2);
  background: var(--paper-2);
}

.num-geo-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 18px;
  max-height: 280px;
  overflow-y: auto;
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.num-geo-list[hidden] { display: none; }

.num-filters[hidden] { display: none; }

.num-filter-toggle-bar {
  margin-bottom: 18px;
}

.num-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px dashed var(--line);
  background: var(--paper);
  color: var(--ink-2);
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}

.num-filter-toggle::before {
  content: "+";
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--brand-deep);
}

.num-filter-toggle.is-open::before {
  content: "–";
}

.num-filter-toggle:hover {
  border-color: var(--mint-2);
  background: var(--paper-2);
}

.num-filter-toggle-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.num-filter-toggle-count[hidden] {
  display: none;
}

.num-geo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--ink-2);
  cursor: pointer;
}

.num-card[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

.num-card.is-selected[aria-disabled="true"] {
  opacity: 0.85;
  pointer-events: auto;
}

@media (max-width: 700px) {
  .num-geo-list { grid-template-columns: 1fr; }
}

.num-list-group {
  margin-bottom: 14px;
}

.num-list-group-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
  padding: 6px 10px;
  background: var(--paper-2);
  border-left: 3px solid var(--brand);
  border-radius: 4px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.num-list-group-count {
  font-weight: 400;
  color: var(--muted);
  font-size: 13px;
}

/* Infinite scroll sentinel — neviditeľný anchor pre IntersectionObserver. */
.num-list-sentinel {
  height: 1px;
  margin: 8px 0;
}

/* SR-only utility — používa sa pre aria-live text v sentinel-i. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skeleton pásik počas append fetchu — krátky rad placeholder kariet.
   Grid zladený s .num-list aby pri swappe placeholder→card nedošlo
   k layout shiftu (rovnaké stĺpce, rovnaký gap). */
.num-list-skeleton-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 12px 0;
}

/* Inline error riadok keď append fetch zlyhá — nezničí existujúci list. */
.num-list-append-error {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  margin: 12px 0;
  background: #FFF3F0;
  border: 1px solid #F5C6BC;
  border-radius: 12px;
  color: #8A2A1A;
  font-size: 15px;
}

/* ---------- Objednávka: wizard kroky ---------- */

.wizard-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  font-size: 14px;
  color: var(--muted, #5b6a5d);
}

.wizard-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wizard-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  font-size: 12px;
  font-weight: 600;
}

.wizard-steps li.is-active {
  color: var(--brand, #84BD00);
  font-weight: 600;
}

.wizard-steps li.is-done {
  color: var(--ink, #122118);
}

.wizard-steps li.is-disabled {
  opacity: 0.45;
}

/* ---------- Objednávka: krok 2 — identifikácia ---------- */

.ident-card {
  max-width: 100%;
  background: var(--paper, #fff);
  border: 1px solid var(--line, #DDE5CB);
  border-radius: 12px;
  padding: 24px;
}

.ident-card h2 {
  margin-top: 0;
}

.ident-field {
  margin: 14px 0;
}

.ident-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.ident-field input[type="text"],
.ident-field input[type="email"],
.ident-field input[type="tel"],
.ident-field input[type="password"] {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid var(--line, #DDE5CB);
  border-radius: 8px;
  font-size: 15px;
}

.ident-field input[type="text"]:focus,
.ident-field input[type="email"]:focus,
.ident-field input[type="tel"]:focus,
.ident-field input[type="password"]:focus {
  outline: none;
  border-color: var(--brand, #84BD00);
  box-shadow: 0 0 0 4px var(--brand-soft);
}

.ident-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ident-types label {
  flex: 1 1 150px;
  border: 1.5px solid var(--line, #DDE5CB);
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
}

.ident-types input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.ident-types label.is-selected {
  border-color: var(--brand, #84BD00);
  font-weight: 600;
}

.ident-contacts {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.ident-contacts label {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--line, #DDE5CB);
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
}

.ident-contacts label.is-selected {
  border-color: var(--brand, #84BD00);
}

.ident-error {
  color: #b91c1c;
  font-size: 14px;
  margin: 10px 0;
}

.ident-info {
  color: var(--muted, #5b6a5d);
  font-size: 14px;
  margin: 10px 0;
}

.ident-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Krok 1 — mobilný duplikát tlačidla "Pokračovať" v paneli zhrnutia.
   Selektor .order-summary .order-summary-actions (0,2,0) je špecifickejší
   ako .ident-actions (0,1,0), takže prebije jeho display:flex nezávisle
   od poradia v súbore. */
.order-summary .order-summary-actions {
  display: none;
}

@media (max-width: 980px) {
  /* v stohovanom layoute: hlavné tlačidlo kroku 1 skry, duplikát v zhrnutí ukáž */
  #step1Actions {
    display: none;
  }
  .order-summary .order-summary-actions:not([hidden]) {
    display: flex;
  }
}

@media (max-width: 600px) {
  .ident-actions {
    flex-direction: column-reverse; /* primárne (posledné v DOM) ostane hore */
  }
  .ident-actions .btn {
    width: 100%;
  }
}

.ts-box {
  margin: 12px 0;
  min-height: 65px;
}

/* Poznámka k objednávke — rovnaký jazyk ako .ident-field, len pre textarea */
.contract-note {
  margin: 18px 0 4px;
}

.contract-note label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contract-note textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid var(--line, #DDE5CB);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink, #122118);
  background: var(--paper, #fff);
  resize: vertical;
  min-height: 76px;
}

.contract-note textarea::placeholder {
  color: var(--muted, #5b6a5d);
  opacity: 0.85;
}

.contract-note textarea:focus {
  outline: none;
  border-color: var(--brand, #84BD00);
  box-shadow: 0 0 0 4px var(--brand-soft);
}

/* Ľavá karta zhrnutia (krok 3) — kontá a čísla bez sumy */
.contract-intro {
  color: var(--muted, #5b6a5d);
  font-size: 14px;
  line-height: 1.5;
  margin: 4px 0 18px;
}

.contract-account {
  margin: 0 0 14px;
}

.contract-account-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink, #122118);
}

.contract-account-label {
  font-weight: 500;
  color: var(--muted, #5b6a5d);
}

.contract-numbers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contract-line {
  border: 1px solid var(--line, #DDE5CB);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--paper, #fff);
}

.contract-line--empty {
  color: var(--muted, #5b6a5d);
  font-style: italic;
}

.contract-line-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.contract-line-number {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink, #122118);
}

.contract-line-head .num-tier-mini {
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 2px 8px;
}

.contract-badge-transfer {
  background: #ECF6CF;
  color: #3E5A0E;
  border-color: #C5DC8F;
}

.contract-line-meta {
  font-size: 13px;
  color: var(--muted, #5b6a5d);
  margin-top: 4px;
}

/* Krok 3 — zhrnutie zobrazuje všetko v ľavej karte, pravý panel je skrytý;
   mriežka objednávky sa stiahne na jeden stĺpec (full-width ľavý stĺpec) */
.order-layout--full {
  grid-template-columns: 1fr;
}

/* Oddeľovač medzi prehľadom čísel a cenovým rozpisom v ľavej karte */
.contract-divider {
  border: 0;
  border-top: 1px solid var(--line, #DDE5CB);
  margin: 18px 0;
}

.contract-pricing-note {
  color: var(--muted, #5b6a5d);
  font-size: 14px;
  line-height: 1.5;
  margin: 14px 0 0;
}

/* Light-theme prekrytie cenového rozpisu v ľavej (svetlej) karte — pôvodné
   .summary-* štýly sú ladené pre tmavý pravý panel (biele/priesvitné texty),
   tu ich prefarbíme na svetlé pozadie. Bonus-strip (zelený gradient) ostáva. */
.contract-pricing .summary-block {
  background: var(--paper, #fff);
  border: 1px solid var(--line, #DDE5CB);
}

.contract-pricing .summary-block-head strong {
  color: var(--ink, #122118);
}

.contract-pricing .summary-amount {
  color: var(--ink, #122118);
}

.contract-pricing .summary-amount .rate-list {
  color: var(--muted, #5b6a5d);
}

.contract-pricing .summary-amount .rate-effective {
  color: var(--brand-deep, #4a7000);
}

/* preemptívne — markup zatiaľ .single neemituje, ale pale lime by na svetlom
   pozadí zle čitateľné */
.contract-pricing .summary-amount.single {
  color: var(--brand-deep, #4a7000);
}

.contract-pricing .toggle-link {
  color: var(--muted, #5b6a5d);
  text-decoration-color: var(--line, #DDE5CB);
}

.contract-pricing .toggle-link:hover {
  color: var(--brand-deep, #4a7000);
  text-decoration-color: var(--brand-deep, #4a7000);
}

.contract-pricing .summary-row {
  border-bottom-color: var(--line, #DDE5CB);
}

.contract-pricing .summary-row span:first-child {
  color: var(--muted, #5b6a5d);
}

.contract-pricing .summary-row span:last-child {
  color: var(--ink, #122118);
}

.contract-pricing .summary-row .rate-list {
  color: var(--muted, #5b6a5d);
}

.contract-pricing .summary-row .rate-effective {
  color: var(--brand-deep, #4a7000);
}

.user-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink, #122118);
}

.user-badge button {
  border: none;
  background: none;
  color: var(--brand, #84BD00);
  cursor: pointer;
  font-size: 13px;
  text-decoration: underline;
  padding: 0;
}

@media (max-width: 600px) {
  .wizard-steps {
    gap: 6px 12px;
    font-size: 13px;
  }
}

/* ── Zákaznícka zóna ── */

.account-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 2px;
  margin: 24px 0 28px;
  border-bottom: 2px solid var(--line);
  padding-bottom: 0;
}

.account-nav a {
  display: inline-block;
  padding: 8px 18px;
  font-size: 15px;
  color: var(--ink-2);
  text-decoration: none;
  border-radius: 8px 8px 0 0;
  border: 1px solid transparent;
  border-bottom: none;
  margin-bottom: -2px;
  transition: color 0.15s, background 0.15s;
}

.account-nav a:hover {
  color: var(--brand-deep);
  background: var(--paper-2);
}

.account-nav a.is-active {
  color: var(--brand-deep);
  background: var(--paper);
  border-color: var(--line);
  border-bottom-color: var(--paper);
  font-weight: 600;
}

.account-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin-top: 16px;
}

.account-table th,
.account-table td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--line-2);
}

.account-table th {
  background: var(--paper-2);
  font-weight: 600;
  color: var(--ink-2);
}

.account-table tr:nth-child(even) td {
  background: var(--paper-3);
}

.account-summary {
  list-style: none;
  margin: 16px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
}

.form-success {
  color: #15803d;
  font-size: 14px;
  margin: 10px 0;
}

@media (max-width: 600px) {
  .account-nav {
    gap: 4px;
  }

  .account-nav a {
    padding: 7px 12px;
    font-size: 14px;
  }

  .account-table {
    font-size: 13px;
  }

  .account-table th,
  .account-table td {
    padding: 7px 8px;
  }
}

/* Odkaz na zákaznícku zónu v hlavičke — sekundárny pill v štýle .btn,
   dvojica s primárnym CTA. Ikona dedí farbu textu tlačidla. */
.account-link {
  display: inline-flex;
  align-items: center;
}

/* zlaté tlačidlo účtu — override .btn-secondary (pozadie + text/ikona) */
.account-btn {
  background: #e8b800;
  color: #122118;
  border-color: #e8b800;
}

.account-btn:hover {
  background: #d0a600;
  color: #122118;
  border-color: #d0a600;
}

.account-btn svg {
  display: block;
  flex: none;
}

/* Na užšom viewporte (kde sa skrýva hlavné menu) nechaj len ikonu,
   aby pill nepretláčal hlavičku; prístupnosť drží aria-label. */
@media (max-width: 980px) {
  .account-btn .account-btn-label {
    display: none;
  }

  .account-btn {
    padding-left: 11px;
    padding-right: 11px;
  }
}

/* =============================================================
   PRIHLÁSENIE — zákaznícka zóna (auth karta)
   ============================================================= */
.auth {
  display: flex;
  justify-content: center;
  padding: 72px 0;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  margin: 0 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 40px 36px;
}

.auth-title {
  margin: 0 0 6px;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.auth-sub {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.auth-submit {
  width: 100%;
  margin-top: 4px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.auth .ident-error {
  margin-top: 0;
}

/* 2FA — výber kontaktu, kód */
.auth-hint {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.auth-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 18px;
}

.auth-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  font-size: 15px;
  transition: border-color .15s, background .15s;
}

.auth-contact:hover {
  border-color: var(--mint-2);
  background: var(--paper-3);
}

.auth-contact input {
  accent-color: var(--brand);
}

.auth-ts {
  margin: 0 0 18px;
  min-height: 65px;
}

.auth-link {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  padding: 6px;
  color: var(--brand-deep);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.auth-link:hover {
  color: var(--brand);
}

@media (max-width: 600px) {
  .auth {
    padding: 40px 0;
  }

  .auth-card {
    padding: 30px 22px;
  }
}

/* =============================================================
   MÔJ ÚČET — zákaznícka zóna (chrome stránky)
   ============================================================= */
.account-shell {
  max-width: 880px;
}

.account-title {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.02em;
}

/* panel sedí ako karta pod záložkami (account-nav) */
.account-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 30px;
  min-height: 180px;
}

.account-card h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

.account-card > p {
  color: var(--muted);
}

/* formulár vnútri panela (napr. zmena hesla) — užší stĺpec */
.account-form {
  max-width: 380px;
}

@media (max-width: 600px) {
  .account-card {
    padding: 22px 18px;
  }

  .account-title {
    font-size: 25px;
  }
}

