@charset "UTF-8";
/*
  Hlavní font: Sofia Pro (Adobe Fonts / Typekit – slug "sofia-pro").
  Přidej rodinu Sofia Pro do svého Adobe kitu (yge8hva) na fonts.adobe.com.
  Bez aktivace se použije fallback Sofia Sans (Google Fonts).
*/
:root {
  --bg: #ffffff;
  --bg-2: #ffbc00;
  --bg-gradient: radial-gradient(ellipse 115% 95% at 50% 50%,
      #ffffff 0%,
      #ffffff 48%,
      #fff8e6 72%,
      rgba(255, 224, 140, 0.55) 88%,
      rgba(255, 188, 0, 0.22) 100%);
  --ink: #1a1919;
  --ink-soft: rgba(26, 25, 25, 0.72);
  --ink-mute: rgba(26, 25, 25, 0.48);
  --line: rgba(26, 25, 25, 0.08);
  --line-strong: rgba(26, 25, 25, 0.16);
  --accent: #ffbc00;
  --accent-deep: #e6a900;
  --accent-glow: rgba(255, 188, 0, 0.2);
  --accent-gradient: linear-gradient(135deg, #ffbc00 0%, #e6a900 55%, #d9a000 100%);
  --yellow: var(--accent);
  --yellow-deep: var(--accent-deep);
  --brand: #108a01;
  --conic-gradient: conic-gradient(from 0deg,
      transparent 0deg,
      transparent 35deg,
      #ffbc00 75deg,
      rgba(255, 188, 0, 0.7) 105deg,
      transparent 135deg,
      transparent 180deg,
      transparent 215deg,
      #ffbc00 255deg,
      rgba(255, 188, 0, 0.7) 285deg,
      transparent 315deg,
      transparent 360deg);
  --vignette: radial-gradient(ellipse 72% 68% at 50% 50%,
      #ffffff 0%,
      rgba(255, 255, 255, 0.97) 38%,
      rgba(255, 255, 255, 0.72) 58%,
      rgba(255, 255, 255, 0.2) 78%,
      transparent 100%);
  --display: 'sofia-pro', 'Sofia Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --heading: 'sofia-pro', 'Sofia Sans', system-ui, -apple-system, sans-serif;
  --body: 'sofia-pro', 'Sofia Sans', system-ui, -apple-system, sans-serif;
  --heading-letter-spacing: 0.46px;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
  --nav-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  overflow-x: clip;
  padding-top: var(--nav-height);
  font-family: var(--display);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.container--admin-full {
  max-width: none;
  width: 100%;
  padding-left: clamp(16px, 2vw, 32px);
  padding-right: clamp(16px, 2vw, 32px);
}

@media (max-width: 700px) {
  .container {
    padding: 0 20px;
  }
}
/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--brand);
  border: 1px solid var(--brand);
  color: #fff;
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(16, 138, 1, 0.2);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  justify-content: center;
}

.btn:hover:not(:disabled) {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn:hover:not(:disabled) svg {
  transform: translateX(4px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.btn--ghost:hover:not(:disabled) {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

/* ============= ANIMATED BACKGROUND (fixed) ============= */
.bg {
  position: fixed;
  inset: 0;
  background: var(--bg-gradient, var(--bg-2));
  overflow: hidden;
  z-index: 0;
}

.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 80% at 0% 50%, rgba(255, 188, 0, 0.18) 0%, transparent 72%), radial-gradient(ellipse 55% 80% at 100% 50%, rgba(255, 188, 0, 0.18) 0%, transparent 72%), radial-gradient(ellipse 90% 40% at 50% 0%, rgba(255, 224, 140, 0.12) 0%, transparent 70%), radial-gradient(ellipse 90% 40% at 50% 100%, rgba(255, 224, 140, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.bg-conic {
  position: absolute;
  inset: -42%;
  background: var(--conic-gradient);
  filter: blur(80px);
  animation: rotate-conic 22s linear infinite;
  opacity: 0.35;
  mix-blend-mode: multiply;
  mask-image: radial-gradient(ellipse 68% 62% at 50% 50%, transparent 52%, black 100%);
  -webkit-mask-image: radial-gradient(ellipse 68% 62% at 50% 50%, transparent 52%, black 100%);
}

@keyframes rotate-conic {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.bg-orb {
  display: none;
}

.bg-noise {
  display: none;
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: var(--vignette);
  pointer-events: none;
  z-index: 2;
}

/* ============= NAV ============= */
nav.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 12px clamp(20px, 3vw, 32px);
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 8px 32px rgba(26, 25, 25, 0.07);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px clamp(14px, 2vw, 24px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 6px 2px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a[aria-current=page] {
  color: var(--brand);
}

.nav-list a.nav-link--accent {
  background: rgba(255, 188, 0, 0.18);
  border-radius: 5px;
  padding: 6px 12px;
  color: var(--ink);
}

.nav-list a.nav-link--accent:hover {
  background: rgba(255, 188, 0, 0.28);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 5px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded=true] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded=true] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded=true] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.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;
}

@media (max-width: 991px) {
  .nav-toggle {
    display: flex;
    position: absolute;
    right: clamp(12px, 3vw, 20px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 96%;
    margin: 0;
    padding: 16px;
    box-sizing: border-box;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 5px;
    box-shadow: 0 16px 40px rgba(26, 25, 25, 0.1);
  }
  .nav-menu.is-open {
    display: flex;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }
  .nav-list a {
    padding: 12px 8px;
    font-size: 13px;
    text-align: center;
  }
}
.nav-contacts {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-soft);
}

.nav-contacts a {
  transition: color 0.2s ease;
}

.nav-contacts a:hover {
  color: var(--yellow);
}

@media (max-width: 700px) {
  .nav-contacts {
    display: none;
  }
}
/* ============= HERO ============= */
.hero {
  position: relative;
  z-index: 1;
  padding: 80px 0 80px;
  text-align: center;
  scroll-margin-top: var(--nav-height);
}

#hodnoceni,
#sluzby,
#reference,
#contact,
.process-section,
.screens-section {
  scroll-margin-top: var(--nav-height);
}

.hero-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  max-width: min(1100px, 100%);
  margin: 0 auto 32px;
}

.hero-head h1 {
  margin: 0;
  max-width: 18ch;
  text-align: left;
  flex: 0 1 auto;
}

.hero-brand {
  flex-shrink: 0;
  width: clamp(96px, 13vw, 300px);
  height: auto;
  animation: hero-brand-sway 10s ease-in-out infinite alternate;
}

@keyframes hero-brand-sway {
  from {
    transform: translateX(-14px);
  }
  to {
    transform: translateX(14px);
  }
}
@media (max-width: 720px) {
  .hero-head {
    flex-direction: column;
    gap: 24px;
  }
  .hero-head h1 {
    text-align: center;
  }
}
h1 {
  font-family: var(--heading);
  font-size: clamp(40px, 6vw, 100px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 auto 32px;
  max-width: 18ch;
}

h1 .hand {
  font-family: "Caveat", cursive;
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.15em;
  letter-spacing: 0;
  display: inline-block;
  transform: rotate(-3deg);
  line-height: 0.9;
}

.lead {
  font-family: var(--heading);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 500;
  color: var(--ink-mute);
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 38ch;
  margin: 48px auto 6rem;
}

.section-divider {
  display: flex;
  justify-content: center;
  margin: 5rem auto;
}

.section-divider-img {
  display: block;
  width: clamp(72px, 10vw, 96px);
  height: auto;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto 56px;
  padding: 0;
  list-style: none;
  align-items: center;
}

.benefits-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 clamp(12px, 2.5vw, 28px);
  border-right: 1px solid var(--line);
}
.benefits-item:last-child {
  border-right: none;
}

.benefits-value {
  font-family: var(--heading);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

.benefits-value--with-cca {
  display: inline-flex;
  align-items: baseline;
  gap: 0.22em;
}

.benefits-count-cca {
  font-family: var(--display);
  font-size: 0.36em;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-mute);
  line-height: 1;
}

.benefits-count {
  font-variant-numeric: tabular-nums;
}

.benefits-value--stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 100%;
}

.benefits-value-small {
  font-size: 0.33em;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.benefits-value-line {
  font-size: clamp(11px, 1.1vw, 17px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-wrap: balance;
}

.benefits-item--comm {
  justify-content: center;
  text-align: center;
}
.benefits-item--comm .benefits-value--stacked {
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.benefits-item--comm .benefits-value-line {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  color: var(--ink-mute);
  line-height: 1.35;
  text-align: center;
  max-width: 28ch;
}
@media (min-width: 701px) {
  .benefits-item--comm .benefits-value-line {
    white-space: nowrap;
    max-width: none;
  }
}

.benefits-item--reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.benefits-item--reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .benefits-item--reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.benefits-label {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--ink-soft);
  line-height: 1.35;
}

@media (max-width: 700px) {
  .benefits {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: min(100%, 34ch);
  }
  .benefits-value {
    font-size: clamp(36px, 11vw, 52px);
  }
  .benefits-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 0 0 20px;
  }
  .benefits-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
/* What we do */
.what {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.what-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  background: #fff;
  border-radius: 5px;
  padding: 28px 32px;
  box-shadow: 0 12px 40px rgba(26, 25, 25, 0.08);
  transition: box-shadow 0.25s ease, outline-color 0.25s ease;
  outline: 2px solid transparent;
  outline-offset: 0;
}
.what-item.is-selected {
  outline-color: var(--brand);
  box-shadow: 0 16px 48px rgba(16, 138, 1, 0.12);
}

.what-item-body {
  flex: 1;
}

.what-item-cta {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: none;
  transition: opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.what-item-cta:hover:not(:disabled) {
  background: #0e7a01;
  border-color: #0e7a01;
  color: #fff;
  transform: translateY(-2px);
}

.what-item:hover .what-item-cta,
.what-item:focus-within .what-item-cta {
  opacity: 1;
  pointer-events: auto;
}

@media (hover: none) {
  .what-item-cta {
    position: static;
    inset: auto;
    margin-top: 20px;
    opacity: 1;
    pointer-events: auto;
    align-self: flex-start;
  }
}
.what-item strong {
  display: block;
  font-family: var(--heading);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.what-item span,
.what-item-desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.what-item-desc {
  margin: 0 0 4px;
}

.what-item--detailed {
  min-height: 0;
}

.what-item-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.what-item-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.what-item-list li span {
  font-size: 14px;
  line-height: 1.45;
}

.what-item-check {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand);
}

@media (max-width: 900px) {
  .what {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* ============= PROCESS ============= */
.process-section {
  position: relative;
  z-index: 1;
  padding: 0 0 56px;
}

.process-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: clamp(32px, 4.5vw, 56px);
  box-shadow: 0 12px 40px rgba(26, 25, 25, 0.08);
  text-align: left;
}

.process-intro {
  max-width: 72ch;
  margin-bottom: clamp(36px, 4vw, 48px);
}

.process-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 16px;
}

.process-title {
  font-family: var(--heading);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 16px;
  color: var(--ink);
}

.process-lead {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.process-step {
  margin: 0;
}

.process-step-num {
  font-family: var(--heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(16, 138, 1, 0.32);
  margin: 0 0 12px;
}

.process-step-title {
  font-family: var(--heading);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--ink);
}

.process-step-text {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1000px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 28px;
  }
}
@media (max-width: 560px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.process-steps--five {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {
  .process-steps--five {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1000px) {
  .process-steps--five {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .process-steps--five {
    grid-template-columns: 1fr;
  }
}
.shoptet-page {
  position: relative;
  z-index: 1;
  padding: 64px 0 0;
}

.shoptet-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.shoptet-process-section {
  padding: 48px 0 64px;
}
.shoptet-process-section .process-intro {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(36px, 4vw, 48px);
  text-align: center;
}
.shoptet-process-section .process-title {
  margin-bottom: 12px;
}
.shoptet-process-section .process-lead {
  margin: 0 auto;
}
.shoptet-process-section .article-timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.shoptet-process-section .shoptet-timeline .article-timeline-title {
  font-size: clamp(17px, 1.6vw, 20px);
  margin: 0 0 8px;
}
.shoptet-process-section .shoptet-timeline .article-timeline-side p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.shoptet-timeline {
  position: relative;
  max-width: 920px;
  margin-top: 48px;
}
.shoptet-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(16, 138, 1, 0.45) 0%, rgba(16, 138, 1, 0.12) 100%);
}
.shoptet-timeline .article-timeline-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
  -moz-column-gap: 28px;
       column-gap: 28px;
  align-items: start;
  padding: 0 0 48px;
}
.shoptet-timeline .article-timeline-item::after {
  display: none;
}
.shoptet-timeline .article-timeline-item:last-child {
  padding-bottom: 0;
}
.shoptet-timeline .article-timeline-num {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: start;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}
.shoptet-timeline .article-timeline-side {
  min-width: 0;
}
.shoptet-timeline .article-timeline-side--left {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}
.shoptet-timeline .article-timeline-side--left p {
  text-align: right;
}
.shoptet-timeline .article-timeline-side--right {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
}

@media (max-width: 760px) {
  .shoptet-timeline {
    max-width: 720px;
    margin-top: 40px;
  }
  .shoptet-timeline::before {
    left: 27px;
    transform: none;
  }
  .shoptet-timeline .article-timeline-item {
    grid-template-columns: 56px minmax(0, 1fr);
    -moz-column-gap: 24px;
         column-gap: 24px;
    padding-bottom: 40px;
    align-items: start;
  }
  .shoptet-timeline .article-timeline-num {
    grid-column: 1;
    grid-row: 1;
  }
  .shoptet-timeline .article-timeline-side--left:empty,
  .shoptet-timeline .article-timeline-side--right:empty {
    display: none;
  }
  .shoptet-timeline .article-timeline-side--left:not(:empty),
  .shoptet-timeline .article-timeline-side--right:not(:empty) {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }
}
.shoptet-packages-section {
  position: relative;
  z-index: 1;
  padding: 0 0 64px;
}

.shoptet-packages-head {
  max-width: 52ch;
  margin: 0 auto 40px;
  text-align: center;
}

.shoptet-packages-title {
  font-family: var(--heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 12px;
}

.shoptet-packages-lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.shoptet-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(26, 25, 25, 0.08);
}

.shoptet-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 15px;
}
.shoptet-compare-table th,
.shoptet-compare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.shoptet-compare-table thead th {
  background: rgba(26, 25, 25, 0.03);
}
.shoptet-compare-table tbody tr:last-child th,
.shoptet-compare-table tbody tr:last-child td {
  border-bottom: 0;
}
.shoptet-compare-table tbody th[scope=row] {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  text-align: left;
  min-width: 220px;
}
.shoptet-compare-table tbody td {
  width: 180px;
  text-align: center;
}

.shoptet-compare-col-service {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: left;
  min-width: 220px;
}

.shoptet-compare-col-package {
  text-align: center;
  vertical-align: bottom;
  min-width: 120px;
}

.shoptet-compare-package-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  border-radius: 50%;
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 20px rgba(26, 25, 25, 0.18);
}

.shoptet-compare-col-package--1 .shoptet-compare-package-num {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  background: linear-gradient(145deg, #e8b88a 0%, #cd7f32 42%, #a65e1f 72%, #7a4518 100%);
}

.shoptet-compare-col-package--2 .shoptet-compare-package-num {
  color: #2e3338;
  background: linear-gradient(145deg, #ffffff 0%, #e8e8e8 35%, #b8bcc2 70%, #8b9199 100%);
}

.shoptet-compare-col-package--3 .shoptet-compare-package-num {
  color: #5c4a0f;
  background: linear-gradient(145deg, #fff4c2 0%, #e6c35c 38%, #c9a227 68%, #9a7b0a 100%);
}

.shoptet-compare-col-package--4 .shoptet-compare-package-num {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  background: linear-gradient(145deg, #d4a574 0%, #b87333 42%, #8f5a28 72%, #6b4226 100%);
}

.shoptet-compare-package-name {
  display: block;
  font-family: var(--heading);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

.shoptet-compare-row-price th,
.shoptet-compare-row-price td {
  background: rgba(26, 25, 25, 0.03);
}
.shoptet-compare-row-price th[scope=row] {
  font-weight: 600;
}
.shoptet-compare-row-price td {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.shoptet-compare-price-individual {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-soft);
  white-space: normal;
}

.shoptet-compare-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.shoptet-compare-icon svg {
  width: 18px;
  height: 18px;
}

.shoptet-compare-yes {
  color: #fff;
  background: var(--brand);
}

.shoptet-compare-no {
  color: var(--ink-mute);
  background: rgba(26, 25, 25, 0.06);
}

.shoptet-packages-note {
  margin-top: 28px;
}

.shoptet-addons-title {
  font-family: var(--heading);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 36px 0 16px;
  text-align: center;
}

.shoptet-compare-wrap--addons {
  margin-top: 0;
}

.shoptet-addons-table {
  min-width: 420px;
}
.shoptet-addons-table tbody td {
  width: auto;
  text-align: left;
}

.shoptet-addons-col-offer {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: left;
}

.shoptet-addons-offer {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  text-align: left;
}

.shoptet-addons-price {
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

@media (max-width: 991px) {
  .shoptet-compare-wrap {
    border-radius: 5px;
  }
  .shoptet-compare-table {
    min-width: 680px;
  }
  .shoptet-compare-table th,
  .shoptet-compare-table td {
    padding: 14px 12px;
  }
  .shoptet-compare-table tbody th[scope=row] {
    min-width: 180px;
    font-size: 14px;
  }
}
/* ============= REFERENCES CAROUSEL ============= */
.refs-section {
  position: relative;
  z-index: 1;
  padding: 40px 0 60px;
}

.refs-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.refs-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.refs-title {
  font-family: var(--heading);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}

.refs-title .hand {
  font-family: "Caveat", cursive;
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.15em;
  letter-spacing: 0;
  display: inline-block;
  transform: rotate(-3deg);
  line-height: 0.9;
}

.refs-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.refs-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.refs-arrow {
  width: 48px;
  height: 48px;
  padding: 0;
  gap: 0;
}

.refs-arrow svg {
  width: 20px;
  height: 20px;
}

.refs-arrow .refs-arrow-icon {
  font-size: 24px;
}

.refs-arrow .refs-arrow-icon--prev {
  transform: rotate(180deg);
}

.refs-arrow:disabled {
  opacity: 0.35;
}

.refs-arrow:disabled:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: none;
}

.refs-viewport {
  overflow: hidden;
  padding: 4px 0;
}

.refs-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.ref {
  flex: 0 0 calc((100% - 40px) / 3);
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ref-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ffbc00;
  line-height: 1;
}

.ref-star {
  display: block;
  flex-shrink: 0;
}

.ref-text {
  flex-grow: 1;
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

.ref-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.ref-name {
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.ref-company {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  transition: color 0.2s ease;
}

.ref-company:hover {
  color: var(--yellow);
}

.ref-cta {
  align-self: flex-start;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  pointer-events: none;
}

.ref:hover .ref-cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ref-cta:hover {
  transform: translateY(-2px);
}

.refs-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  margin-bottom: 0;
}

.refs-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--line-strong);
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.65, 0, 0.35, 1), background 0.25s ease;
}

.refs-dot:hover {
  background: var(--ink-soft);
}

.refs-dot.active {
  background: var(--brand);
  width: 32px;
}

@media (max-width: 1000px) {
  .ref {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}
@media (max-width: 700px) {
  .refs-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .ref {
    flex: 0 0 100%;
  }
}
/* ============= SCREENS SCROLLER ============= */
.screens-section {
  position: relative;
  z-index: 1;
  padding: 60px 0 80px;
  overflow-x: clip;
}

.screens-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.screens-title {
  font-family: var(--heading);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}

.screens-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.screens-title .hand {
  font-family: "Caveat", cursive;
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.15em;
  letter-spacing: 0;
  display: inline-block;
  transform: rotate(-3deg);
  line-height: 0.9;
}

.screens-scroller {
  width: 100%;
  max-width: 100%;
  margin-right: calc(50% - 50vw);
}

.screens-strip {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.screens-strip::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.screens-scrollbar {
  height: 16px;
  margin-top: 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.screens-scrollbar-track {
  position: relative;
  height: 16px;
  background: #ffffff;
  border-radius: 999px;
  cursor: pointer;
}

.screens-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  min-width: 48px;
  background: var(--brand);
  border-radius: 999px;
  cursor: grab;
  transition: background 0.2s ease;
}

.screens-scrollbar-thumb:hover {
  background: var(--ink);
}

.screens-scrollbar-thumb.is-dragging {
  cursor: grabbing;
  background: var(--ink);
}

.screens-track {
  display: flex;
  gap: 24px;
}

.screen {
  flex: 0 0 75vw;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.screen:hover {
  transform: translateY(-6px);
}

.screen-img {
  width: 100%;
  height: 991px;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid var(--line);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.screen:hover .screen-img {
  border-color: var(--yellow);
  box-shadow: 0 16px 40px rgba(26, 25, 25, 0.12);
}

.screen-img svg,
.screen-img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.screen-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}

.screen-name {
  font-family: var(--heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.screen-url {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

@media (max-width: 800px) {
  .screen-img {
    height: 600px;
  }
}
@media (max-width: 600px) {
  .screens-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .screens-track {
    gap: 16px;
  }
  .screen {
    flex: 0 0 85vw;
  }
  .screen-img {
    height: 480px;
  }
}
/* ============= CONSULTATION CALENDAR ============= */
.consultation-page {
  position: relative;
  z-index: 1;
  padding-top: clamp(56px, 10vw, 80px);
}

.consultation-section {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
}

.consultation-head {
  text-align: center;
  max-width: 58ch;
  margin: 0 auto 32px;
}

.consultation-title {
  font-family: var(--heading);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.52;
  margin: 0 0 14px;
  color: var(--ink);
}

.consultation-lead {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.consultation-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 12px 40px rgba(26, 25, 25, 0.08);
}

.consultation-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.consultation-week-label {
  font-family: var(--heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  text-align: center;
  color: var(--ink);
}

.consultation-weeks {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 8vw, 80px);
}

.consultation-week + .consultation-week {
  padding-top: clamp(24px, 4vw, 40px);
  border-top: 1px solid var(--line);
}

.consultation-week .consultation-week-label {
  margin-bottom: 16px;
}

.consultation-nav {
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.consultation-nav svg {
  width: 20px;
  height: 20px;
}

.consultation-grid {
  overflow-x: auto;
}

.consultation-table {
  min-width: 720px;
}

.consultation-row {
  display: grid;
  grid-template-columns: 150px repeat(var(--consultation-days, 4), minmax(0, 1fr));
  gap: 8px;
}

.consultation-row--head {
  margin-bottom: 8px;
}

.consultation-cell {
  min-width: 0;
}

.consultation-cell--time {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
}

.consultation-cell--day {
  text-align: center;
  padding: 8px 6px;
  border-radius: 5px;
  background: rgba(255, 188, 0, 0.12);
}

.consultation-day-name {
  display: block;
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.consultation-day-date {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.consultation-cell--slot {
  padding-bottom: 8px;
}

.consultation-slot {
  width: 100%;
  min-height: 44px;
  border-radius: 5px;
  border: 1px solid transparent;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.consultation-slot--free {
  font-size: 16px;
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  border-radius: 5px;
}

.consultation-slot--free:hover:not(:disabled) {
  font-size: 16px;
  background: rgba(255, 188, 0, 0.12);
  color: #000;
  border-color: rgba(255, 188, 0, 0.12);
  border-radius: 5px;
}

.consultation-slot--busy {
  font-size: 16px;
  background: var(--yellow);
  color: var(--ink-mute);
  border-color: var(--yellow);
  border-radius: 5px;
  cursor: default;
}

.consultation-calendar--admin .consultation-slot--busy {
  cursor: pointer;
}

.consultation-calendar--admin .consultation-slot--busy:hover:not(:disabled) {
  background: rgba(26, 25, 25, 0.1);
}

.consultation-calendar--admin .consultation-slot--busy.consultation-slot--selected {
  box-shadow: inset 0 0 0 2px var(--ink);
}

.consultation-slot--past {
  background: transparent;
  color: var(--ink-mute);
  border-color: var(--line);
  cursor: not-allowed;
}

.consultation-slot--unavailable {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background: transparent;
  color: var(--ink-mute);
  border: 1px dashed var(--line);
  border-radius: 5px;
  opacity: 0.45;
}

.consultation-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 18px;
}

.consultation-legend-item {
  font-size: 13px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.consultation-legend-item::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 5px;
}

.consultation-legend-item--free::before {
  background: var(--brand);
}

.consultation-legend-item--busy::before {
  background: var(--yellow);
}

.consultation-admin {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.consultation-admin-title {
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ink);
}

.consultation-admin-text {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.consultation-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consultation-admin-btn {
  min-height: 42px;
}

.consultation-admin-status {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--brand);
  margin: 12px 0 0;
}

.consultation-empty {
  text-align: center;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 768px) {
  .consultation-row {
    grid-template-columns: 120px repeat(var(--consultation-days, 4), minmax(0, 1fr));
    gap: 6px;
  }
  .consultation-slot {
    font-size: 12px;
    min-height: 40px;
    padding: 0 4px;
  }
}
/* ============= ADMIN PAGE ============= */
.admin-page {
  min-height: 100vh;
}

.admin-shell {
  position: relative;
  z-index: 1;
  padding: clamp(32px, 5vw, 64px) 0 clamp(48px, 6vw, 80px);
}

.admin-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 12px 40px rgba(26, 25, 25, 0.08);
}

.admin-card--narrow {
  max-width: 420px;
  margin: 0 auto;
}

.admin-title {
  font-family: var(--heading);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: var(--ink);
}

.admin-lead {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 24px;
}

.admin-login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-login-btn {
  width: 100%;
}

.admin-login-error {
  font-size: 14px;
  color: #b42318;
  margin: 0;
}

.admin-api-warning {
  font-size: 13px;
  line-height: 1.45;
  color: #b54708;
  background: rgba(255, 188, 0, 0.18);
  border: 1px solid rgba(255, 188, 0, 0.45);
  border-radius: 5px;
  padding: 10px 12px;
  margin: 16px 0 0;
}

.admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.admin-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-status {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--brand);
  margin: 16px 0 0;
  min-height: 1.2em;
}

.admin-booking-detail {
  margin-top: 24px;
}

.admin-booking-detail-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(26, 25, 25, 0.08);
}

.admin-booking-detail-title {
  font-family: var(--heading);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.admin-booking-detail-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.admin-booking-field {
  display: grid;
  gap: 4px;
}

.admin-booking-field dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.admin-booking-field dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink);
}

.admin-booking-field dd a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.admin-booking-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.admin-back {
  margin: 20px 0 0;
  font-size: 14px;
}

.admin-back a {
  color: var(--ink-soft);
  text-decoration: none;
}

.admin-back a:hover {
  color: var(--ink);
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.admin-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 10px 18px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.admin-tab.is-active {
  background: rgba(255, 188, 0, 0.22);
  border-color: rgba(255, 188, 0, 0.55);
  color: var(--ink);
}

.admin-panel {
  display: none;
}

.admin-panel.is-active {
  display: block;
}

.admin-app {
  position: relative;
  z-index: 1;
}

.admin-login[hidden],
.admin-app[hidden] {
  display: none !important;
}

.admin-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.admin-panel-title {
  font-family: var(--heading);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}

.admin-panel-lead {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  max-width: 72ch;
}

.btn--small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 12px;
}

.admin-projects-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-mail-setup {
  margin-bottom: 20px;
}

.admin-mail-setup-card {
  background: #fff7ed;
  border: 1px solid #fdba74;
  border-radius: 5px;
  padding: 20px;
}

.admin-mail-setup-title {
  margin: 0 0 8px;
  font-size: 18px;
}

.admin-mail-setup-lead {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.5;
}

.admin-mail-setup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .admin-mail-setup-grid {
    grid-template-columns: 1fr;
  }
}
.admin-projects-toolbar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(26, 25, 25, 0.08);
}

.admin-projects-toolbar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.admin-projects-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-projects-item.is-open {
  display: flex;
  flex-direction: column;
}

.admin-projects-list-empty {
  font-size: 14px;
  color: var(--ink-mute);
}

.admin-projects-list-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
}

.admin-projects-list-btn.is-active,
.admin-projects-list-btn:hover {
  border-color: rgba(255, 188, 0, 0.55);
  background: rgba(255, 188, 0, 0.12);
}

.admin-projects-item.is-open .admin-projects-list-btn {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}

.admin-project-detail {
  border: 1px solid rgba(255, 188, 0, 0.55);
  border-top: 0;
  border-radius: 0 0 5px 5px;
  padding: 20px;
  background: rgba(255, 188, 0, 0.06);
}

.admin-projects-list-name {
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.admin-projects-list-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-shrink: 0;
}

.admin-projects-empty {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}

.admin-project-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-project-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.admin-project-tasks {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.admin-project-tasks-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.admin-project-tasks-title {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.admin-task-create {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.admin-task-create input[type=text],
.admin-task-create input[type=month] {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0 12px;
  font: inherit;
}

.admin-task-create input[type=text] {
  min-width: 220px;
}

.admin-task-groups {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-task-group-title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 10px;
}

.admin-tasks-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.admin-tasks-table-wrap {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
}

.admin-tasks-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.admin-tasks-table th,
.admin-tasks-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.admin-tasks-table th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: rgba(26, 25, 25, 0.03);
}

.admin-tasks-row {
  cursor: pointer;
  transition: background 0.15s ease;
}

.admin-tasks-row:hover,
.admin-tasks-row.is-active {
  background: rgba(255, 188, 0, 0.08);
}

.admin-tasks-cell--title {
  font-weight: 600;
  color: var(--ink);
}

.admin-tasks-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.admin-task-invoice-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.admin-task-invoice-dot--yes {
  background: #16a34a;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.22);
}

.admin-task-invoice-dot--no {
  background: #dc2626;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.18);
}

.admin-tasks-cell--action {
  width: 110px;
  text-align: right;
}

.admin-task-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
}

.admin-task-status-badge--novy {
  border-color: rgba(26, 25, 25, 0.12);
}

.admin-task-status-badge--rozpracovany {
  border-color: rgba(255, 188, 0, 0.45);
  background: rgba(255, 188, 0, 0.14);
}

.admin-task-status-badge--ke_kontrole,
.admin-task-status-badge--ke_kontrole_upozorneni {
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
}

.admin-task-status-badge--uzavreny {
  border-color: rgba(22, 163, 74, 0.35);
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
}

.admin-task-detail {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 12px 32px rgba(26, 25, 25, 0.06);
}

.admin-tasks-layout.is-detail-open .admin-task-detail {
  margin-top: 4px;
}

.admin-task-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.admin-task-detail-heading {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.admin-task-detail-form {
  display: grid;
  gap: 14px;
}

@media (min-width: 992px) {
  .admin-task-detail-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
  }
  .admin-task-detail-form > .field:first-child,
  .admin-task-detail-grid,
  .admin-task-detail-meta,
  .admin-task-detail-actions {
    grid-column: 1/-1;
  }
  .admin-task-detail-grid {
    grid-template-columns: minmax(160px, 200px) minmax(220px, 1fr) minmax(180px, 220px);
  }
  .admin-task-detail-form > .field:nth-of-type(3),
  .admin-task-detail-form > .field:nth-of-type(4) {
    grid-column: auto;
  }
}
.admin-task-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-task-detail-meta {
  display: grid;
  gap: 10px;
  margin: 0;
}

.admin-task-detail-meta-item {
  display: grid;
  gap: 4px;
}

.admin-task-detail-meta dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.admin-task-detail-meta dd {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.admin-task-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.admin-modal[hidden] {
  display: none;
}

.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 25, 25, 0.45);
}

.admin-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(26, 25, 25, 0.18);
}

.admin-modal-title {
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
}

.admin-modal-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.admin-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 991px) {
  .admin-project-form-grid,
  .admin-task-detail-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .admin-header {
    flex-direction: column;
  }
  .admin-header-actions {
    width: 100%;
  }
  .admin-header-actions .btn {
    flex: 1;
  }
}
.contact-section {
  position: relative;
  z-index: 1;
  padding: 80px 0 120px;
}

@media (max-width: 991px) {
  .consultation-section,
  .contact-section {
    padding: 0;
  }
  .contact-section--pricing {
    padding-bottom: 32px;
  }
  .pricing-page,
  .article-page,
  .consultation-page {
    padding-top: calc(var(--nav-height) + 16px);
  }
  footer {
    padding: 32px 16px 48px;
  }
  .section-divider {
    display: flex;
    justify-content: center;
    margin: 3rem auto;
  }
  .contact-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-intro {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto;
}

.contact-headline {
  font-family: var(--heading);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--ink);
}

.contact-lead {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0;
}

.contact-entities-block {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-intro--billing {
  max-width: 68ch;
}

.contact-intro--billing .contact-headline {
  margin-bottom: 12px;
}

.contact-intro--billing .contact-lead {
  margin: 0;
}

.contact-entities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
  text-align: left;
}

.contact-entities .invoice {
  padding: 0;
  gap: 0;
  align-items: flex-start;
  text-align: left;
}

.contact-entities .invoice-name {
  margin: 0;
}

@media (max-width: 1200px) {
  .contact-entities {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1000px) {
  .contact-entities {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* ============= FORM ============= */
.form-card {
  background: var(--bg);
  color: var(--ink);
  padding: 32px;
  border-radius: 5px;
  border: 1px solid #fafafa;
  box-shadow: 0 20px 50px rgba(26, 25, 25, 0.05);
}

.form-title {
  font-family: var(--heading);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 6px;
}

.form-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 24px;
}

.form-card-toggle {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
}

.form-card-toggle-icon {
  display: none;
}

@media (min-width: 992px) {
  .form-card-toggle {
    pointer-events: none;
    cursor: default;
  }
}
@media (max-width: 991px) {
  .form-card.is-collapsible {
    padding: 0;
    overflow: hidden;
  }
  .form-card-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 16px 18px;
    cursor: pointer;
  }
  .form-card-toggle .form-title {
    margin: 0;
    flex: 1;
  }
  .form-card-toggle-icon {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--ink-mute);
    border-bottom: 2px solid var(--ink-mute);
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.22s ease;
  }
  .form-card.is-open .form-card-toggle-icon {
    transform: rotate(225deg);
  }
  .form-card-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 18px;
    transition: max-height 0.28s ease, opacity 0.22s ease, padding 0.28s ease;
  }
  .form-card.is-open .form-card-body {
    max-height: 2400px;
    padding: 0 18px 18px;
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) and (max-width: 991px) {
  .form-card-body,
  .form-card-toggle-icon {
    transition: none;
  }
}
form.zform {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  align-items: start;
}

.form-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-col--right .field--message {
  flex: 1;
}

.form-col--right .field--message textarea {
  min-height: 140px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .form-col--right .field--message textarea {
    min-height: 100px;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.field input,
.field textarea,
.field select {
  font-family: var(--display);
  font-size: 16px;
  padding: 15px 20px;
  background: rgba(26, 25, 25, 0.04);
  border: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
  border-radius: 5px;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.field select {
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a1919' fill-opacity='0.55' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.field input::-moz-placeholder, .field textarea::-moz-placeholder {
  color: var(--ink-mute);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-mute);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  background: rgba(26, 25, 25, 0.04);
  box-shadow: 0 0 0 2px var(--accent);
}

.field textarea {
  min-height: 80px;
  resize: vertical;
  font-family: var(--display);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.turnstile-wrap {
  min-height: 70px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.turnstile-wrap .cf-turnstile {
  max-width: 100%;
}

.submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 0;
  padding: 15px 22px;
  background: var(--brand);
  border: 1px solid var(--brand);
  color: #fff;
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(16, 138, 1, 0.2);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
  cursor: pointer;
}

.submit-btn svg {
  width: 14px;
  height: 14px;
}

.form-msg {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 4px 0 0;
  min-height: 18px;
  text-align: center;
  color: var(--ink-soft);
}

.form-msg.error {
  color: #DC2626;
}

.form-msg.success {
  color: #16A34A;
}

/* ============= INVOICE (no background) ============= */
.invoice {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.invoice-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

.invoice-name {
  font-family: var(--heading);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.invoice-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.invoice-toggle {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
}

.invoice-toggle-icon {
  display: none;
}

@media (max-width: 991px) {
  .contact-entities .invoice {
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
  }
  .invoice-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 16px 18px;
    cursor: pointer;
  }
  .invoice-toggle .invoice-row {
    flex: 1;
    min-width: 0;
    padding-top: 0;
    border-top: 0;
  }
  .invoice-toggle .invoice-name {
    flex: 1;
  }
  .invoice-toggle-icon {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--ink-mute);
    border-bottom: 2px solid var(--ink-mute);
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.22s ease;
  }
  .invoice.is-open .invoice-toggle-icon {
    transform: rotate(225deg);
  }
  .invoice-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    border-top: 0;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.22s ease, padding 0.28s ease, border-color 0.22s ease;
  }
  .invoice.is-open .invoice-rows {
    max-height: 520px;
    padding: 4px 18px 16px;
    border-top: 1px solid var(--line);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) and (max-width: 991px) {
  .invoice-rows,
  .invoice-toggle-icon {
    transition: none;
  }
}
.invoice-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.invoice-row:first-child {
  padding-top: 14px;
  border-top: 0;
}

.invoice-row .key {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.invoice-row .val {
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.invoice-row .val a {
  transition: color 0.2s ease;
}

.invoice-row .val a:hover {
  color: var(--yellow);
}

.invoice-row--empty .val {
  color: var(--ink-mute);
  opacity: 0.35;
  background: rgba(26, 25, 25, 0.04);
  border-radius: 5px;
  min-height: 1.4em;
  line-height: 1.4;
}

.invoice-row--address .val {
  min-height: 5.5em;
}

/* ============= PRICING PAGE ============= */
.pricing-page {
  position: relative;
  z-index: 1;
  padding: 64px 0 48px;
}

.pricing-head {
  max-width: 52ch;
  margin: 0 auto 40px;
  text-align: center;
}

.pricing-title {
  font-family: var(--heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 16px;
}

.pricing-lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.pricing-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(26, 25, 25, 0.08);
}

.pricing-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  font-size: 16px;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 24px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.pricing-table thead th {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: rgba(26, 25, 25, 0.03);
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table tbody th {
  font-family: var(--heading);
  font-weight: 700;
  color: var(--ink);
  width: 55%;
}

.pricing-table tbody td {
  font-family: var(--heading);
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
  text-align: right;
}

.pricing-note {
  max-width: 62ch;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.5;
}

.pricing-actions {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.benefits-section {
  position: relative;
  z-index: 1;
  padding: 16px 0 56px;
  text-align: center;
}

.benefits-section .benefits {
  margin-bottom: 0;
}

.contact-section--pricing {
  padding-top: 0;
}

.contact-section--pricing .contact-layout {
  gap: 32px;
}

.contact-intro--pricing {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto;
}

.contact-intro--pricing .contact-headline {
  margin-bottom: 12px;
}

.contact-intro--pricing .contact-lead {
  margin: 0;
}

.pricing-table-price--free {
  color: var(--brand);
}

@media (max-width: 991px) {
  .pricing-table-wrap {
    overflow-x: visible;
  }
  .pricing-table {
    min-width: 0;
  }
  .pricing-table thead {
    display: none;
  }
  .pricing-table tbody tr {
    display: block;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }
  .pricing-table tbody tr:last-child {
    border-bottom: 0;
  }
  .pricing-table th,
  .pricing-table td {
    display: block;
    width: 100%;
    padding: 0;
    border-bottom: 0;
    text-align: left;
  }
  .pricing-table tbody th {
    margin-bottom: 6px;
    font-size: 17px;
    line-height: 1.35;
  }
  .pricing-table tbody td {
    font-size: 16px;
    white-space: normal;
    text-align: left;
  }
  .pricing-table tbody td::before {
    content: "Cena";
    display: block;
    margin-bottom: 4px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-mute);
  }
}
/* ============= ARTICLE / BLOG ============= */
.article-page {
  position: relative;
  z-index: 1;
  padding: 48px 0 56px;
}

.article {
  max-width: 46rem;
  margin: 0 auto;
}

.article-back {
  margin: 0 0 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.article-back a {
  color: var(--ink-mute);
  text-decoration: none;
  transition: color 0.2s ease;
}
.article-back a:hover {
  color: var(--brand);
}

.article-meta {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.article-title {
  font-family: var(--heading);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 20px;
}

.article-lead {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 40px;
}

.article-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 24px;
  margin: 0;
  padding: 0 0 40px;
}
.article-timeline-item::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(16, 138, 1, 0.45) 0%, rgba(16, 138, 1, 0.12) 100%);
  transform: translateX(-50%);
}
.article-timeline-item:last-child {
  padding-bottom: 0;
}
.article-timeline-item:last-child::after {
  display: none;
}

.article-timeline-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 8px 24px rgba(16, 138, 1, 0.28);
  position: relative;
  z-index: 1;
}

.article-timeline-content {
  padding-top: 6px;
  min-width: 0;
}

.article-timeline-title {
  font-family: var(--heading);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--ink);
}

.article-timeline-content p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}

@media (max-width: 560px) {
  .article-timeline-item {
    grid-template-columns: 48px 1fr;
    gap: 0 16px;
    padding-bottom: 32px;
  }
  .article-timeline-item::after {
    left: 23px;
    top: 48px;
  }
  .article-timeline-num {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  .article-timeline-content {
    padding-top: 4px;
  }
}
.article-cta {
  margin-top: 48px;
  padding: 28px 28px 32px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 40px rgba(26, 25, 25, 0.06);
}

.article-cta-title {
  font-family: var(--heading);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.article-cta p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 0;
}

.contact-section--article {
  padding-top: 0;
}

.contact-section--article .contact-layout {
  gap: 32px;
}

.contact-intro--article {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto;
}

.contact-intro--article .contact-headline {
  margin-bottom: 12px;
}

.contact-intro--article .contact-lead {
  margin: 0;
}

/* ============= FOOTER ============= */
footer {
  position: relative;
  z-index: 1;
  padding: 32px 0 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-align: center;
}

.footer-copy,
.footer-links {
  margin: 0;
}

.footer-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
}

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--brand);
}

h1,
.lead,
.benefits-value,
.benefits-value-small,
.benefits-value-line,
.what-item strong,
.refs-title,
.process-title,
.process-step-title,
.screens-title,
.contact-headline,
.pricing-title,
.article-title,
.article-timeline-title,
.article-cta-title,
.form-title,
.invoice-name,
.ref-name,
.screen-name {
  letter-spacing: var(--heading-letter-spacing);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* ============= SHOPTET SETUP WIZARD ============= */
.setup-page {
  padding-top: 0;
}

.container--narrow {
  max-width: 760px;
}

.container--setup {
  max-width: 1080px;
}

.setup-header {
  padding: 20px 0 8px;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.setup-brand {
  font-weight: 400;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}

.setup-brand a {
  color: inherit;
  text-decoration: none;
}

.setup-brand a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.setup-header-note {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 1rem;
}

.setup-progress-wrap {
  width: 100%;
  position: sticky;
  top: 68px;
  z-index: 19;
}

.setup-progress {
  width: 100%;
  height: 15px;
  margin: 0;
  background: rgba(26, 25, 25, 0.08);
  border-radius: 0;
  overflow: hidden;
}

.setup-progress-bar {
  display: block;
  height: 100%;
  width: 10%;
  border-radius: 0;
  background: linear-gradient(90deg, var(--brand) 0%, #6fd400 35%, var(--accent) 100%);
  transition: width 0.3s ease;
}

.setup-main {
  padding: 32px 0 64px;
}

.setup-intro {
  margin-bottom: 32px;
}

.setup-intro--centered {
  width: 100%;
  text-align: center;
}

.setup-title {
  font-family: var(--heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: bold;
  line-height: 1.1;
  margin: 0 0 12px;
  max-width: none;
  letter-spacing: 0.7px;
}

.setup-lead {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 720px;
}

.setup-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.setup-steps {
  position: sticky;
  top: 88px;
}

.setup-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.setup-steps-item {
  position: relative;
}

.setup-steps-item:not(:last-child) {
  padding-bottom: 4px;
}

.setup-steps-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.setup-steps-item--done:not(:last-child)::after {
  background: var(--brand);
}

.setup-steps-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 6px 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.setup-steps-btn:disabled {
  cursor: default;
  opacity: 0.55;
}

.setup-steps-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--line-strong);
  background: var(--bg);
  color: var(--ink-mute);
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.setup-steps-item--active .setup-steps-num {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.setup-steps-item--done .setup-steps-num {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.setup-steps-name {
  font-size: 13px;
  line-height: 1.35;
  color: var(--ink-mute);
}

.setup-steps-item--active .setup-steps-name {
  color: var(--ink);
  font-weight: 600;
}

.setup-steps-item--done .setup-steps-name {
  color: var(--brand);
}

.setup-content {
  min-width: 0;
}

.setup-page .field label {
  font-size: 12px;
  font-weight: 600;
  color: #444;
  letter-spacing: 0;
  margin-top: 12px;
}

.setup-page .field input[type=file] {
  font-size: 13px;
  padding: 8px 0;
}

.setup-hint {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.45;
}

.setup-sublegend {
  margin: 18px 0 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.setup-language-primary {
  margin-top: 4px;
}

.setup-picker {
  position: relative;
}

.setup-picker-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: #fff;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.setup-picker-trigger[aria-expanded=true] {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 188, 0, 0.18);
}

.setup-picker-value {
  font-size: 14px;
}

.setup-picker-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink-mute);
  border-bottom: 2px solid var(--ink-mute);
  transform: rotate(45deg) translateY(-2px);
  flex-shrink: 0;
}

.setup-picker-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 280px;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(26, 25, 25, 0.12);
}

.setup-picker-list {
  display: grid;
}

.setup-picker-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
}

.setup-picker-option:last-child {
  border-bottom: 0;
}

.setup-picker-option:hover {
  background: rgba(255, 188, 0, 0.08);
}

.setup-picker-flag {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.setup-picker-label {
  font-size: 14px;
  line-height: 1.35;
}

.setup-picker-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.setup-picker-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(16, 138, 1, 0.08);
  border: 1px solid rgba(16, 138, 1, 0.18);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brand);
}

.setup-step-note {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}

.setup-conditional[hidden] {
  display: none;
}

.setup-currency-block legend,
.setup-shipping-block legend,
.setup-payment-block legend {
  font-size: 13px;
  font-weight: bold;
  text-transform: none;
  letter-spacing: 0.7px;
  color: var(--ink);
}

.setup-fields--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 640px) {
  .setup-fields--split {
    grid-template-columns: 1fr;
  }
}
.setup-wizard {
  padding: 28px;
}

.setup-step-title {
  font-family: var(--heading);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: bold;
  letter-spacing: 0.7px;
  margin: 0 0 8px;
}

.setup-step-lead {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 24px;
  line-height: 1.45;
}

.setup-fields {
  display: grid;
  gap: 18px;
}

.setup-page .field input:not([type=file]),
.setup-page .field textarea,
.setup-page .field select,
.setup-page .setup-picker-trigger,
.setup-page .setup-status-add-field input {
  border: 1px solid #fafafa;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.setup-page .field input:hover:not(:disabled):not(:focus),
.setup-page .field textarea:hover:not(:disabled):not(:focus),
.setup-page .field select:hover:not(:disabled):not(:focus),
.setup-page .setup-picker-trigger:hover:not([aria-expanded=true]),
.setup-page .setup-status-add-field input:hover:not(:disabled):not(:focus) {
  border-color: var(--accent);
  box-shadow: none;
}

.setup-page .field input:focus,
.setup-page .field textarea:focus,
.setup-page .field select:focus,
.setup-page .setup-picker-trigger[aria-expanded=true],
.setup-page .setup-status-add-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 188, 0, 0.18);
}

.setup-page .setup-check:hover {
  color: var(--ink);
}

.setup-page .btn {
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.setup-page .btn:hover:not(:disabled) {
  transform: none;
  filter: none;
  border-color: #0d6e00;
  box-shadow: 0 8px 24px rgba(16, 138, 1, 0.2);
}

.setup-page .btn--ghost:hover:not(:disabled) {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
  filter: none;
  box-shadow: none;
}

.setup-page .submit-btn:hover:not(:disabled) {
  border-color: #0d6e00;
  filter: none;
  transform: none;
}

.setup-fieldset {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 16px;
  margin: 0;
}

.setup-fieldset > .setup-check + .setup-check {
  margin-top: 14px;
}

.setup-fieldset > legend + .setup-check {
  margin-top: 10px;
}

.setup-fieldset legend {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 0 6px;
}

.setup-checkgrid {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.setup-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
  cursor: pointer;
}

.setup-check input[type=checkbox],
.setup-check input[type=radio],
.setup-picker-option input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 1px;
  flex-shrink: 0;
  border: 1px solid rgba(26, 25, 25, 0.2);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.setup-check input[type=checkbox]:hover,
.setup-check input[type=radio]:hover,
.setup-picker-option input[type=checkbox]:hover {
  border-color: var(--brand);
}

.setup-check input[type=checkbox]:checked,
.setup-check input[type=radio]:checked,
.setup-picker-option input[type=checkbox]:checked {
  background: radial-gradient(circle, #fff 32%, var(--brand) 33%);
  border-color: var(--brand);
}

.setup-check input[type=checkbox]:focus-visible,
.setup-check input[type=radio]:focus-visible,
.setup-picker-option input[type=checkbox]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 188, 0, 0.35);
}

.setup-nav {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.setup-nav .btn,
.setup-nav .submit-btn {
  width: 100%;
  justify-content: center;
}

.setup-nav .submit-btn {
  margin-left: 0;
  min-width: 0;
}

.setup-nav #setup-next,
.setup-nav #setup-submit {
  grid-column: 2;
  grid-row: 1;
}

.setup-nav #setup-next {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 188, 0, 0.25);
}

.setup-page .setup-nav #setup-next:hover:not(:disabled) {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
  filter: none;
  box-shadow: 0 8px 24px rgba(26, 25, 25, 0.18);
}

.setup-nav #setup-next[hidden],
.setup-nav #setup-submit[hidden] {
  display: none;
}

.setup-completion {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: conic-gradient(var(--brand) calc(var(--completion, 0) * 1%), rgba(26, 25, 25, 0.08) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(26, 25, 25, 0.12);
  pointer-events: none;
}

.setup-completion-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.setup-completion-value {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.setup-status-default,
.setup-status-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.setup-status-default li,
.setup-status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.setup-status-default li {
  color: var(--ink-soft);
}

.setup-status-add {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 12px;
}

.setup-status-add-field {
  margin: 0;
}

.setup-status-add-btn {
  white-space: nowrap;
  margin-bottom: 2px;
}

.setup-status-item-name {
  flex: 1;
}

.setup-status-remove {
  border: 0;
  background: transparent;
  color: var(--ink-mute);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.setup-status-remove:hover {
  color: var(--ink);
}

.setup-success {
  padding: 48px 32px;
  text-align: center;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 5px;
  margin: 2rem 0 0;
}

.setup-success-title {
  font-family: var(--heading);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: bold;
  letter-spacing: 0.7px;
  color: #fff;
  margin: 0 0 12px;
}

.setup-success-text {
  font-size: 18px;
  line-height: 1.55;
  color: #fff;
  margin: 0 auto;
}

.setup-consultation {
  margin-top: 2rem;
}

.setup-consultation-box {
  max-width: 100%;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 5px;
  border: 1px solid #fafafa;
  box-shadow: 0 20px 50px rgba(26, 25, 25, 0.05);
}

.setup-consultation-content {
  flex: 1;
  min-width: 0;
}

.setup-consultation-title {
  font-family: var(--heading);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: bold;
  letter-spacing: 0.7px;
  margin: 0 0 10px;
  color: var(--ink);
}

.setup-consultation-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  max-width: none;
}

.setup-consultation-btn {
  flex-shrink: 0;
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 188, 0, 0.25);
}

.setup-consultation-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

@media (max-width: 900px) {
  .setup-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .setup-steps {
    position: static;
    padding: 16px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--line);
    border-radius: 5px;
  }
}
@media (max-width: 640px) {
  .setup-wizard {
    padding: 20px 16px;
  }
  .setup-status-add {
    grid-template-columns: 1fr;
  }
  .setup-status-add-btn {
    width: 100%;
  }
  .setup-consultation-box {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px;
  }
  .setup-consultation-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ============= ADDON DETAIL (katalog doplňků) ============= */
.addon-page {
  position: relative;
  z-index: 1;
  padding: 40px 0 80px;
}

.addon-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}

.addon-breadcrumb-item--current {
  color: var(--ink);
}

.addon-head {
  max-width: 60ch;
  margin: 0 0 44px;
}

.addon-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  margin: 0 0 12px;
}

.addon-title {
  font-family: var(--heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 16px;
}

.addon-lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.addon-detail {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.addon-row {
  display: grid;
  gap: 28px;
  align-items: start;
}

.addon-row--media {
  grid-template-columns: minmax(0, 1fr);
}

.addon-media-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.addon-media--full .addon-media-frame {
  aspect-ratio: 16/9;
}

.addon-row--params {
  grid-template-columns: minmax(0, 1fr);
}

.addon-row--contact {
  grid-template-columns: minmax(0, 1fr);
}

.addon-media {
  margin: 0;
}

.addon-media-frame {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(26, 25, 25, 0.03);
  box-shadow: 0 18px 44px rgba(26, 25, 25, 0.07);
}

.addon-media-trigger {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.addon-media-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(26, 25, 25, 0.12);
}

.addon-media-trigger:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.addon-contactbar-icon.material-symbols-outlined {
  font-size: 26px;
}

.addon-notice .material-symbols-outlined {
  flex-shrink: 0;
  font-size: 22px;
  color: var(--accent-deep);
}

.addon-media-zoom .material-symbols-outlined {
  font-size: 20px;
}

.addon-media-placeholder .material-symbols-outlined {
  font-size: 44px;
}

.addon-play .material-symbols-outlined {
  font-size: 32px;
  margin-left: 2px;
}

.addon-author-link .material-symbols-outlined {
  font-size: 18px;
}

.lightbox-close .material-symbols-outlined {
  font-size: 22px;
}

.addon-media-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(26, 25, 25, 0.18);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.addon-media-zoom svg {
  width: 18px;
  height: 18px;
}

.addon-media-trigger:hover .addon-media-zoom,
.addon-media-trigger:focus-visible .addon-media-zoom {
  opacity: 1;
  transform: scale(1);
}

.addon-media-frame img,
.addon-media-frame video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.addon-media-frame--video {
  background: linear-gradient(135deg, #1a1919 0%, #2c2a26 100%);
}

.addon-media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.addon-media-placeholder svg {
  width: 44px;
  height: 44px;
}

.addon-media-placeholder--video {
  color: rgba(255, 255, 255, 0.78);
}

.addon-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(255, 188, 0, 0.4);
}

.addon-play svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.addon-media-caption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
}

.addon-section-title {
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}

.addon-params-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.addon-params-table th,
.addon-params-table td {
  padding: 12px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.addon-params-table th[scope=row] {
  width: 42%;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.addon-params-table td {
  color: var(--ink-soft);
}

.addon-params-row-price td {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--ink);
}

.addon-params-row-highlight th,
.addon-params-row-highlight td {
  background: var(--accent-glow);
  color: var(--ink);
}

.addon-params-row-highlight th[scope=row] {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.addon-params-row-highlight td {
  font-weight: 700;
  padding-right: 12px;
}

.addon-options {
  margin-top: 28px;
}

.addon-options-title {
  margin: 0 0 14px;
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.addon-options-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.addon-options-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink-soft);
}

.addon-options-check {
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 20px;
  color: var(--accent-deep);
}

@media (max-width: 640px) {
  .addon-options-list {
    grid-template-columns: 1fr;
  }
}
.addon-inquiry .form-submit {
  width: 100%;
}

.addon-author {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  text-align: center;
}

.addon-author-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: left;
}

.addon-author-id {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.addon-author-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 0;
}

.addon-author-photo {
  position: relative;
  width: 170px;
  margin: 0 auto 20px;
}

.addon-author-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 200px;
  border: 0;
  border-radius: 999px;
  -o-object-fit: cover;
     object-fit: cover;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.addon-author-badge {
  position: absolute;
  right: 2px;
  bottom: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 0 0 3px #fff;
}

.addon-author-name {
  margin: 0;
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.addon-author-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 5px 12px;
  border-radius: 5px;
  background: var(--accent-glow);
  color: var(--accent-deep);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.addon-author-tag .material-symbols-outlined {
  font-size: 16px;
}

.addon-author-role {
  margin: 4px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.addon-author-bio {
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 52ch;
  margin: 0;
}

.addon-author-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.addon-author-actions .btn {
  flex: 0 0 150px;
  min-height: 40px;
  justify-content: center;
}

.addon-author-bio p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.article-author {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.addon-author-bio p:last-child {
  margin-bottom: 0;
}

.addon-contactbar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-contactbar {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.addon-contactbar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  color: var(--ink);
  transition: color 0.2s ease;
}

.addon-contactbar-item:hover {
  color: var(--accent-deep);
}

.addon-contactbar-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--accent);
  transition: transform 0.2s ease;
}

.addon-contactbar-item:hover .addon-contactbar-icon {
  transform: scale(1.06);
}

.addon-contactbar-icon svg {
  width: 26px;
  height: 26px;
}

.addon-contactbar-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.addon-contactbar-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.addon-contactbar-value {
  font-family: var(--heading);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media (max-width: 560px) {
  .addon-contactbar {
    grid-template-columns: 1fr;
  }
}
.addon-author-link {
  margin-top: 18px;
}

.addon-author-link svg {
  width: 16px;
  height: 16px;
}

.addon-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 0;
  padding: 14px 18px;
  border-radius: 5px;
  background: var(--accent-glow);
  border: 1px solid rgba(255, 188, 0, 0.35);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
}

.addon-notice svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--accent-deep);
}

@media (max-width: 768px) {
  .addon-row--media,
  .addon-row--contact,
  .addon-media-photos {
    grid-template-columns: 1fr;
  }
}
/* ============= LIGHTBOX ============= */
body.lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 25, 25, 0.78);
  backdrop-filter: blur(4px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  max-width: min(1080px, 100%);
  max-height: 90vh;
  display: flex;
  animation: lightbox-in 0.2s ease;
}

@keyframes lightbox-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 90vh;
}

.lightbox-media {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  background: #000;
}

.lightbox-fallback {
  padding: 60px 80px;
  border-radius: 5px;
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.08);
  background: var(--accent);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 700px) {
  .lightbox {
    padding: 16px;
  }
  .lightbox-close {
    top: 8px;
    right: 8px;
  }
}