/* ===== Variables — Spotless dark (cenník) ===== */
:root {
  --color-bg: #0a0a0a;
  --color-surface: #141414;
  --color-text: #f5f5f5;
  --color-text-muted: #9a9a9a;
  --color-accent: #ffffff;
  --color-accent-dark: #e8e8e8;
  --color-accent-soft: #1c1c1c;
  --color-border: #2a2a2a;
  --font-display: "DM Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.55);
  --max-width: 1120px;
  --header-height: 72px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(35, 35, 35, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(28, 28, 28, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 60% 90%, rgba(22, 22, 22, 0.4) 0%, transparent 50%);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  mix-blend-mode: lighten;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1;
  white-space: nowrap;
}

.site-footer .logo-text {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.site-footer .logo-mark {
  width: 36px;
  height: 36px;
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--color-text);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s, opacity 0.3s;
}

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

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

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

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a.active {
  color: var(--color-text);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--color-accent);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text-muted);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-block {
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  padding: 1.75rem 0 2.5rem;
}

.hero-block {
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(155deg, #161616 0%, #131313 55%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-lg) + 4px);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: 55% 28%;
  display: block;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 20, 20, 0.05) 0%,
    rgba(20, 20, 20, 0.45) 55%,
    #141414 100%
  );
  pointer-events: none;
}

.hero-content {
  padding: 1.75rem 1.5rem 2rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  animation: fadeInUp 0.7s ease forwards;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.7s ease 0.1s forwards;
  opacity: 0;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  max-width: 520px;
  animation: fadeInUp 0.7s ease 0.2s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.7s ease 0.3s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero {
    padding: 2.5rem 0 3.5rem;
  }

  .hero-block {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 420px;
  }

  .hero-visual {
    position: relative;
    min-height: 100%;
    height: 100%;
    width: calc(100% + 5rem);
    margin-right: -5rem;
    z-index: 0;
  }

  .hero-visual img {
    position: absolute;
    inset: -4%;
    width: 108%;
    height: 108%;
    min-height: 100%;
    object-position: 55% center;
  }

  .hero-visual::after {
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(20, 20, 20, 0.03) 15%,
      rgba(20, 20, 20, 0.12) 30%,
      rgba(20, 20, 20, 0.28) 45%,
      rgba(20, 20, 20, 0.5) 58%,
      rgba(20, 20, 20, 0.72) 70%,
      rgba(20, 20, 20, 0.9) 82%,
      #141414 94%,
      #141414 100%
    );
  }

  .hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 2.25rem 2.5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-block {
    min-height: 460px;
  }

  .hero-content {
    padding: 3rem 2.75rem 3rem 1.75rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 3.2vw, 2.85rem);
  }

  .hero-content p {
    font-size: 1.1rem;
  }
}

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

/* ===== Features / Cards ===== */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 18px rgba(255, 255, 255, 0.07),
    0 0 36px rgba(255, 255, 255, 0.04),
    0 14px 40px rgba(0, 0, 0, 0.45);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.feature-card:hover .feature-icon {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.12);
  transform: scale(1.06);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.recommended {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}

.pricing-period {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.pricing-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.pricing-features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-text);
  font-weight: 700;
}

/* ===== Showcase panel (domov — galéria + reels) ===== */
.section--showcase {
  padding: 2.5rem 0 3rem;
}

.showcase-panel {
  background: linear-gradient(160deg, #161616 0%, #111111 50%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4) inset,
    0 20px 50px rgba(0, 0, 0, 0.35);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.showcase-panel:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4) inset,
    0 0 30px rgba(255, 255, 255, 0.03),
    0 24px 56px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .showcase-panel {
    padding: 2rem 2rem 1.75rem;
  }
}

.showcase-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.showcase-panel__head .section-title {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.showcase-panel__sub {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.showcase-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-text);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.showcase-panel__cta:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateX(2px);
}

.showcase-panel__media {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .showcase-panel__media {
    gap: 1.25rem;
  }
}

.showcase-panel__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .showcase-panel__photos {
    gap: 1rem;
  }
}

.showcase-panel__photos .gallery-item {
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.showcase-panel__photos .gallery-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.showcase-panel__photos .gallery-item__frame {
  aspect-ratio: 16 / 10;
  height: auto;
}

.showcase-panel__photos .gallery-item img {
  object-fit: cover;
}

.showcase-panel__photos .gallery-caption {
  display: none;
}

.showcase-panel__reels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

@media (max-width: 639px) {
  .showcase-panel__reels {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 320px;
    margin: 0 auto;
    padding-top: 1rem;
  }
}

@media (min-width: 900px) {
  .showcase-panel__reels {
    gap: 1rem;
    padding-top: 1.25rem;
  }
}

/* Reels na domovskej stránke — bez IG gradientu */
.showcase-panel__reels .reel-card--home {
  display: block;
  transition: transform 0.3s ease;
}

.showcase-panel__reels .reel-card--home:hover,
.showcase-panel__reels .reel-card--home.is-playing {
  transform: translateY(-3px);
}

.showcase-panel__reels .reel-card__inner {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.showcase-panel__reels .reel-card--home:hover .reel-card__inner,
.showcase-panel__reels .reel-card--home.is-playing .reel-card__inner {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.38);
}

/* ===== Gallery page ===== */
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-grid--page {
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .gallery-grid--page {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 920px;
  }
}

.gallery-item {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid--page .gallery-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 0.65rem;
}

.gallery-grid--page .gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #3a3a3a;
}

.gallery-item__frame {
  border-radius: 8px;
  overflow: hidden;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-grid--page .gallery-item__frame {
  height: 180px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.gallery-grid--page .gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-caption {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: 0.65rem 0.25rem 0.15rem;
  line-height: 1.4;
}

.gallery-grid--page .gallery-caption {
  position: static;
  opacity: 1;
  background: none;
  color: var(--color-text-muted);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
  animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.95rem;
  text-align: center;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-info-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.contact-info-item a:hover {
  color: var(--color-text);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover {
  border-color: var(--color-text);
  color: var(--color-text);
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  background: #1a2e1a;
  color: #7dce7d;
  border: 1px solid #2d4a2d;
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.form-success.show {
  display: block;
}

.form-error {
  display: none;
  background: #2e1a1a;
  color: #e88a8a;
  border: 1px solid #4a2d2d;
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.form-error.show {
  display: block;
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem 0;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-top: 0.75rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--color-text);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a:hover {
  color: var(--color-text);
}

/* ===== Page header (subpages) ===== */
.page-header {
  padding: 3rem 0 2rem;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== Utilities ===== */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===== Spotless: pricing tables ===== */
.pricing-tables {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .pricing-tables {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-category {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.pricing-category h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--color-border);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row span:last-child {
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}

.pricing-notes {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.pricing-notes li {
  list-style: disc;
  margin-left: 1.25rem;
  padding: 0.2rem 0;
}


/* ===== Instagram Reels ===== */
.section--reels {
  padding: 1.5rem 0 2rem;
}

.reels-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.85rem;
  max-width: 360px;
  margin: 0 auto;
}

@media (min-width: 540px) {
  .reels-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
    max-width: 720px;
  }
}

@media (min-width: 900px) {
  .reels-track {
    max-width: 880px;
    gap: 1.35rem;
  }
}

.reel-card {
  display: block;
  transition: transform 0.35s ease;
}

.reel-card:hover,
.reel-card.is-playing {
  transform: translateY(-5px) scale(1.03);
}

.reel-card__ring {
  display: block;
  padding: 3px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    #f9ce34 0%,
    #ee2a7b 45%,
    #d62976 70%,
    #962fbf 100%
  );
  transition: box-shadow 0.35s ease, filter 0.35s ease;
}

.reel-card:hover .reel-card__ring,
.reel-card.is-playing .reel-card__ring {
  box-shadow:
    0 0 20px rgba(238, 42, 123, 0.35),
    0 8px 28px rgba(0, 0, 0, 0.4);
  filter: brightness(1.08);
}

.reel-card__inner {
  display: block;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #0a0a0a;
}

.reel-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* ===== Scroll animations ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease var(--delay, 0s),
    transform 0.65s ease var(--delay, 0s);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .hero-content h1,
  .hero-content p,
  .hero-actions,
  .hero-eyebrow {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .sparkle {
    animation: none !important;
  }
}

/* ===== Čistenie okien — modrý highlight ===== */
.pricing-category--windows {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, #3a9fd4 0%, #5eb8e8 40%, #87ceeb 100%);
  border: none;
  box-shadow: 0 8px 32px rgba(43, 143, 212, 0.4);
  position: relative;
  overflow: hidden;
}

.pricing-category--windows::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.25) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-category--windows h3 {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
  font-size: 1.2rem;
  position: relative;
}

.pricing-category--windows .pricing-row {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  position: relative;
}

.pricing-category--windows .pricing-row span:first-child {
  color: rgba(255, 255, 255, 0.95);
}

.pricing-category--windows .pricing-row span:last-child {
  color: #1a5f8a;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  font-weight: 700;
}

@media (min-width: 640px) {
  .pricing-category--windows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
    align-content: start;
  }

  .pricing-category--windows h3 {
    grid-column: 1 / -1;
  }
}
