@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* =========================================================
   CSS VARIABLES – DARK PUNK THEME
   ========================================================= */
:root {
  --color-pink: #DC2EFF;
  --color-pink-dim: #b020cc;
  --color-dark: #333333;
  --color-white: #FFFFFF;

  /* Dark backgrounds */
  --color-bg: #0f0f0f;
  --color-bg-alt: #1a1a1a;
  --color-bg-card: #1f1f1f;
  --color-bg-header: #0a0a0a;

  /* Text */
  --color-text: #e0e0e0;
  --color-text-muted: #888888;
  --color-heading: #ffffff;

  /* Glass – dark variant */
  --glass-bg: rgba(20, 20, 20, 0.82);
  --glass-border: rgba(220, 46, 255, 0.22);

  /* Shadows & glows */
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 12px 40px rgba(220, 46, 255, 0.28);
  --glow-pink: 0 0 18px rgba(220, 46, 255, 0.45), 0 0 36px rgba(220, 46, 255, 0.18);
  --glow-pink-sm: 0 0 10px rgba(220, 46, 255, 0.5);

  /* Borders */
  --border-subtle: 1px solid rgba(255, 255, 255, 0.07);
  --border-pink: 1px solid rgba(220, 46, 255, 0.35);

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;

  /* Spacing */
  --grid-unit: 8px;
  --container-width: 85%;
  --content-max-width: 68ch;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

p {
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: var(--content-max-width);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
}

strong {
  font-weight: 600;
  color: var(--color-text);
}

/* =========================================================
   CONTAINER
   ========================================================= */
.container {
  width: var(--container-width);
  max-width: 1400px;
  margin-inline: auto;
}

/* =========================================================
   BACKGROUND VARIANTS
   ========================================================= */
.bg-light {
  background-color: var(--color-bg-alt);
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-desc {
  max-width: 56ch;
  margin-inline: auto;
  color: var(--color-text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* Punk section tag */
.section-tag {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  background: transparent;
  color: var(--color-pink);
  border: 1px solid rgba(220, 46, 255, 0.5);
  border-radius: 4px;
  font-size: 0.7rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-pink);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(220, 46, 255, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-pink);
  box-shadow: var(--glow-pink);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-pink);
  border: 2px solid rgba(220, 46, 255, 0.6);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(220, 46, 255, 0.12);
  border-color: var(--color-pink);
  box-shadow: var(--glow-pink-sm);
  transform: translateY(-2px);
  color: var(--color-pink);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
}

/* =========================================================
   GLASS CARD
   ========================================================= */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: var(--border-pink);
}

/* =========================================================
   CARD BASE
   ========================================================= */
.card {
  background: var(--color-bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.card:hover {
  border-color: rgba(220, 46, 255, 0.3);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.top-bar {
  background: #080808;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  padding: 0.5rem 0;
  display: block;
  z-index: 1000;
  position: relative;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact {
  display: flex;
  gap: 1.5rem;
}

.top-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
  font-family: 'Outfit', sans-serif;
}

.top-link:hover {
  color: var(--color-pink);
}

.top-link i {
  color: var(--color-pink);
  font-size: 0.7rem;
}

.top-promo-link {
  color: var(--color-white);
  transition: color var(--transition-fast);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.02em;
}

.top-promo-link strong {
  color: var(--color-pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.top-promo-link:hover {
  color: var(--color-pink);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-height);
  background: transparent;
  transition: all var(--transition-base);
  border-bottom: 1px solid transparent;
}

/* Shift header down when top bar is visible (desktop) */
@media (min-width: 992px) {
  .site-header {
    top: 36px;
  }
}

.site-header.scrolled {
  top: 0 !important;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(220, 46, 255, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo img {
  height: 150px;
  width: auto;
  display: block;
  /* Logo may be taller than the header bar – keep bar height intact */
  margin: -39px 0;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  padding: 0.6rem 0.95rem;
  font-size: 1.05rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-pink);
  background: rgba(220, 46, 255, 0.08);
}

/* Tlačítko "Chci termín" v horním menu – sjednotná velikost s položkami */
.nav-links .btn-sm {
  padding: 0.6rem 1.3rem;
  font-size: 1.05rem;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--color-text);
  font-size: 1rem;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-social:hover {
  color: var(--color-pink);
  background: rgba(220, 46, 255, 0.1);
  box-shadow: var(--glow-pink-sm);
}

/* =========================================================
   HAMBURGER
   ========================================================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  z-index: 1000;
}

.hamburger:hover {
  background: rgba(220, 46, 255, 0.1);
}

.hamburger-line {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--color-pink);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--color-pink);
}

/* =========================================================
   NAV OVERLAY (MOBILE)
   ========================================================= */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 990;
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(220, 46, 255, 0.14), transparent 60%),
    radial-gradient(90% 50% at 50% 110%, rgba(220, 46, 255, 0.08), transparent 55%),
    #050505;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1.4rem;
  padding: 1.25rem 1.5rem 2rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

/* Horní lišta menu: logo vlevo, křížek vpravo */
.mobile-nav-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 360px;
  margin-bottom: 0.25rem;
}

.mobile-nav-logo img {
  height: 56px;
  width: auto;
  display: block;
}

/* Stagger animace obsahu při otevření */
.mobile-nav > *,
.nav-overlay .mobile-social {
  opacity: 0;
  transform: translateY(18px);
}

.nav-overlay.is-open .mobile-nav > *,
.nav-overlay.is-open .mobile-social {
  animation: mobile-nav-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.nav-overlay.is-open .mobile-nav > *:nth-child(1) { animation-delay: 0.08s; }
.nav-overlay.is-open .mobile-nav > *:nth-child(2) { animation-delay: 0.18s; }
.nav-overlay.is-open .mobile-nav > *:nth-child(3) { animation-delay: 0.28s; }
.nav-overlay.is-open .mobile-social { animation-delay: 0.36s; }

@keyframes mobile-nav-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav > *,
  .nav-overlay .mobile-social {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

.overlay-close {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.overlay-close:hover {
  background: var(--color-pink);
  color: var(--color-white);
  box-shadow: var(--glow-pink-sm);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  width: 100%;
  max-width: 360px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  width: 100%;
  counter-reset: navitem;
}

.mobile-nav-links > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-nav-links > li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0.35rem;
  font-size: 1.35rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-heading);
  width: 100%;
  transition: color var(--transition-fast), text-shadow var(--transition-fast), padding var(--transition-fast);
}

.mobile-nav-link::before {
  counter-increment: navitem;
  content: "0" counter(navitem);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-pink);
  opacity: 0.75;
}

.mobile-nav-link::after {
  content: "\f061"; /* fa-arrow-right */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.95rem;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.22);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  color: var(--color-pink);
  text-shadow: var(--glow-pink-sm);
  padding-left: 0.75rem;
}

.mobile-nav-link:hover::after,
.mobile-nav-link:focus-visible::after {
  color: var(--color-pink);
  transform: translateX(4px);
}

/* ---------- Služby v menu ---------- */
.mobile-services {
  width: 100%;
}

.mobile-services-label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.mobile-services-label::before,
.mobile-services-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 46, 255, 0.35));
}

.mobile-services-label::after {
  background: linear-gradient(90deg, rgba(220, 46, 255, 0.35), transparent);
}

.mobile-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.mobile-service-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(220, 46, 255, 0.18);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.mobile-service-card i {
  font-size: 1.15rem;
  color: var(--color-pink);
  filter: drop-shadow(0 0 10px rgba(220, 46, 255, 0.45));
  flex-shrink: 0;
}

.mobile-service-card span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--color-white);
}

.mobile-service-card:hover,
.mobile-service-card:focus-visible {
  background: rgba(220, 46, 255, 0.1);
  border-color: var(--color-pink);
  box-shadow: var(--glow-pink-sm);
}

/* ---------- Patka menu: telefon + CTA ---------- */
.mobile-nav-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  width: 100%;
}

.mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.35rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.mobile-nav-phone i {
  color: var(--color-pink);
}

.mobile-nav-phone:hover {
  color: var(--color-pink);
}

.mobile-nav-cta {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.mobile-social {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(220, 46, 255, 0.1);
  border: 1px solid rgba(220, 46, 255, 0.3);
  color: var(--color-pink);
  font-size: 1.2rem;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.mobile-social a:hover {
  background: var(--color-pink);
  color: var(--color-white);
  box-shadow: var(--glow-pink-sm);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: var(--color-bg);
  overflow: hidden;
}

/* Dark grain / noise texture via SVG */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* Neon glow blob */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 65vw;
  height: 65vw;
  background: radial-gradient(circle, rgba(220, 46, 255, 0.1) 0%, rgba(220, 46, 255, 0.03) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 5rem 4rem;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: transparent;
  color: var(--color-pink);
  border: 1px solid rgba(220, 46, 255, 0.5);
  border-radius: 4px;
  font-size: 0.7rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-badge i {
  font-size: 0.7rem;
  color: var(--color-pink);
}

.hero-title {
  margin-bottom: 0.5rem;
  color: var(--color-heading);
  /* Punk: partial pink color on last word */
}

.hero-title span {
  color: var(--color-pink);
  text-shadow: var(--glow-pink);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 52ch;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-number {
  font-size: 1.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--color-pink);
  line-height: 1;
  text-shadow: var(--glow-pink-sm);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.hero-image {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: 0 0 60px rgba(220, 46, 255, 0.2), var(--shadow-soft);
  max-width: 460px;
  width: 100%;
  border: 1px solid rgba(220, 46, 255, 0.25);
}

.hero-img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.hero-img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(15, 15, 15, 0.92);
  border: var(--border-pink);
  border-radius: var(--radius-md);
  box-shadow: var(--glow-pink-sm), 0 8px 24px rgba(0, 0, 0, 0.5);
  z-index: 2;
  backdrop-filter: blur(12px);
}

.hero-img-badge i {
  font-size: 1.5rem;
  color: var(--color-pink);
  flex-shrink: 0;
  text-shadow: var(--glow-pink-sm);
}

.hero-img-badge span {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--color-text-muted);
  max-width: none;
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.hero-img-badge strong {
  font-weight: 700;
  color: var(--color-heading);
  font-family: 'Outfit', sans-serif;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-pink);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  opacity: 0.6;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =========================================================
   BENTO GRID – SERVICES OVERVIEW
   ========================================================= */
.bento-section {
  padding: 5rem 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  min-height: 360px;
}

.card-bento {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-bento img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.7) contrast(1.1) saturate(0.85);
}

.card-bento:hover img {
  transform: scale(1.06);
  filter: brightness(0.55) contrast(1.15) saturate(1);
}

.card-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  z-index: 1;
  transition: background var(--transition-base);
}

/* Hover overlay color change removed based on user feedback */
.card-bento:hover .card-bento-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 60%, transparent 100%);
}

.card-bento-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  z-index: 2;
  color: var(--color-white);
}

.card-bento-content h3 {
  color: var(--color-white);
  font-size: clamp(1.4rem, 2.8vw, 1.8rem); /* Increased for impact */
  margin-bottom: 0.35rem;
}

.card-bento-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  max-width: 32ch;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; /* Fixed initial width for a perfect circle */
  height: 38px;
  border-radius: 25px; /* Pill shape when expanded */
  background: rgba(220, 46, 255, 0.15);
  border: 1px solid rgba(220, 46, 255, 0.4);
  color: var(--color-white);
  font-size: 0.85rem;
  transition: all var(--transition-base);
  overflow: hidden;
  position: relative;
  gap: 0;
  padding: 0;
}

.card-arrow::before {
  content: 'Zjistit více';
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  opacity: 0;
  max-width: 0;
  white-space: nowrap;
  transition: all var(--transition-base);
  margin-right: 0;
}

.card-bento:hover .card-arrow {
  width: 125px; /* Expands to fit text */
  background: var(--color-pink);
  border-color: var(--color-pink);
  padding-left: 12px;
  padding-right: 12px;
  box-shadow: var(--glow-pink-sm);
  gap: 8px;
}

.card-bento:hover .card-arrow::before {
  opacity: 1;
  max-width: 100px;
  margin-right: 4px;
}

.card-bento:hover .card-arrow i {
  transform: translateX(4px);
}

/* =========================================================
   SERVICE DETAILS
   ========================================================= */
.service-detail {
  padding: 5rem 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.detail-reverse {
  direction: rtl;
}

.detail-reverse > * {
  direction: ltr;
}

.detail-text h2 {
  margin-block: 0.5rem 1rem;
}

.detail-text p {
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.service-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-pink);
  font-size: 0.78rem;
  flex-shrink: 0;
  text-shadow: var(--glow-pink-sm);
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding: 0.9rem 1.5rem;
  background: rgba(220, 46, 255, 0.07);
  border-left: 3px solid var(--color-pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  width: fit-content;
  box-shadow: inset 0 0 20px rgba(220, 46, 255, 0.04);
}

.price-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.price-amount {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--color-pink);
  text-shadow: var(--glow-pink-sm);
  line-height: 1;
  text-transform: none;
}

.note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  max-width: 44ch;
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.comparison-grid figure {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: var(--border-subtle);
}

.comparison-grid figure img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.9) contrast(1.05);
}

.comparison-grid figure:hover img {
  transform: scale(1.03);
}

.comparison-grid figcaption {
  padding: 0.6rem 0.75rem;
  font-size: 0.78rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--color-text-muted);
  text-align: center;
  background: var(--color-bg-card);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.single-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(220, 46, 255, 0.15), var(--shadow-soft);
  border: var(--border-subtle);
}

.single-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
}

/* =========================================================
   PARTNERS CAROUSEL
   ========================================================= */
.partners {
  padding: 5rem 0;
  background: var(--color-bg);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-label {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-heading);
  margin-bottom: 3rem;
  max-width: none;
}

.carousel-container {
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: carousel-scroll 35s linear infinite;
}

.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}

@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 1.5rem 3rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05); /* Neutral border */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
}

.carousel-item img {
  filter: none;
  opacity: 1;
  transition: transform 0.3s ease;
}

.carousel-item:hover img {
  transform: scale(1.05);
}

.carousel-item img {
  height: 100px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
}

/* Mobil: vypnout auto-scroll, zapnout ovládání prstem (swipe) */
@media (max-width: 767px) {
  .carousel-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: none;
    -webkit-mask-image: none;
    padding: 1rem;
  }

  .carousel-container::-webkit-scrollbar {
    display: none;
  }

  .carousel-track {
    animation: none;
    gap: 1rem;
  }

  /* Duplicity pro nekonečnou smyčku nejsou při ručním scrollu potřeba */
  .carousel-item[aria-hidden="true"] {
    display: none;
  }

  .carousel-item {
    scroll-snap-align: center;
  }
}

/* =========================================================
   PRICING SPLIT GLOBAL LAYOUT - COMPACT OPTIMIZED
   ========================================================= */
.pricing-global-section {
  padding: 50px 0; /* Reduced from 100px */
  background: #000;
}

.container-wide {
  width: var(--container-width); /* Sets it back to 85% like the rest of the site */
  max-width: 1440px;
  margin: 0 auto;
  padding: 0; 
}

.pricing-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Half and half split */
  gap: 2rem; /* Reduced from 3.5rem for tighter layout */
  align-items: start;
}

.side-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--color-pink);
  margin-bottom: 1.5rem; /* Reduced from 2.5rem */
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
}

/* Compact Matrix Styling */
.pricing-matrix-side .matrix-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #000;
  color: #fff;
  min-width: 425px;
  /* border-radius: var(--radius-md); removed from table to handle manually */
  /* overflow: hidden; removed to handle corners on specific cells */
  border: none; /* Removed outer border */
}

.pricing-matrix-side td, 
.pricing-matrix-side th {
  padding: 0.3rem 0.3rem !important;
  border-bottom: 1.5px solid #111;
  border-right: 1.5px solid #111;
  text-align: center;
  font-size: 0.9rem;
}

/* Specific borders to create the table shape without the top-left cell */
.pricing-matrix-side thead th:not(.matrix-label) {
  border-top: 1.5px solid #111;
}

.pricing-matrix-side tbody td:first-child {
  border-left: 1.5px solid #111;
}

/* Rounding the new visible corners */
/* 1. BASIC Header top-left */
.pricing-matrix-side thead th:nth-child(2) {
  border-top-left-radius: var(--radius-md);
}

/* 2. EXCLUSIVE Header top-right */
.pricing-matrix-side thead th:last-child {
  border-top-right-radius: var(--radius-md);
  border-right: 1.5px solid #111;
}

/* 3. First Service Label top-left */
.pricing-matrix-side tbody tr:first-child td.matrix-label {
  border-top-left-radius: var(--radius-md);
  border-top: 1.5px solid #111;
}

/* 4. Last row corners */
.pricing-matrix-side tr:last-child td:first-child {
  border-bottom-left-radius: var(--radius-md);
}

.pricing-matrix-side tr:last-child td:last-child {
  border-bottom-right-radius: var(--radius-md);
}

.pricing-matrix-side th:not(.matrix-label),
.pricing-matrix-side td:not(.matrix-label) {
  width: 110px; /* Increased from 85px to prevent price wrapping */
}

.pricing-matrix-side thead th {
  background: #bc1ae8 !important;
  color: #000 !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.5rem 0.3rem !important;
  font-size: 0.95rem;
}

.pricing-matrix-side thead th.matrix-label {
  background: #000 !important;
  border: none !important;
}

.pricing-matrix-side .matrix-label {
  background: #bc1ae8 !important;
  color: #000 !important;
  text-align: left !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  width: 190px;
  font-size: 0.9rem;
  padding-left: 1.5rem !important; /* Added more space from the left edge */
}

.pricing-matrix-side .text-note {
  font-size: 0.78rem;
  color: var(--color-white); /* Changed to white for better readability */
  text-transform: none;
}

/* Check & Cross Colors in Matrix */
.pricing-matrix-side td.check i {
  color: #00ff88; /* Neon Green */
  filter: drop-shadow(0 0 4px rgba(0, 255, 136, 0.3));
}

.pricing-matrix-side td.cross i {
  color: #ff3366; /* Neon Pink/Red */
  filter: drop-shadow(0 0 4px rgba(255, 51, 102, 0.3));
}

.pricing-matrix-side .price-row td.matrix-label {
  padding-left: 1.5rem !important;
  text-align: left !important;
}

.pricing-matrix-side .price-row td {
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.8rem 0.5rem !important;
  background: #111;
  white-space: nowrap;
}

/* "OD" jako malý popisek nad cenou */
.pricing-matrix-side .price-row td:not(.matrix-label) .price-od {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.15rem;
}

.pricing-matrix-side .price-row td:not(.matrix-label) .price-val {
  display: block;
  line-height: 1;
}

.matrix-footer-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* Compact Others Side */
.pricing-others-side .pricing-row {
  padding: 1rem 1.4rem; /* More compact padding */
  margin-bottom: 0.6rem; /* Narrower gap between cards */
  grid-template-columns: 1fr auto;
}

.pricing-others-side .pr-info { gap: 1.4rem; }
.pricing-others-side .pr-icon { width: 44px; height: 44px; font-size: 1.2rem; }
.pricing-others-side .pr-text h3 { font-size: 1.15rem; }
.pricing-others-side .pr-text p { font-size: 0.85rem; line-height: 1.2; }
.pricing-others-side .pr-price strong { font-size: 1.7rem; }

.pricing-others-side .pr-badge { right: 1.5rem; padding: 0.3rem 1rem; font-size: 0.65rem; }

.pricing-cta-card {
  background: var(--color-bg-card);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid rgba(220, 46, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pcc-content h3 {
  font-size: 1.1rem;
  color: var(--color-pink);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
}

.pcc-content p {
  font-size: 0.85rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.45);
  max-width: 350px;
  margin: 0;
}

@media (max-width: 576px) {
  .pricing-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

@media (max-width: 1200px) {
  .pricing-split-grid { grid-template-columns: 1fr; gap: 4rem; }
  .pricing-matrix-side .matrix-container { overflow-x: auto; }
}

/* Rows styling for others... */
.pricing-table {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem; /* Reduced from 1.25rem */
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 2.2rem 3.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pricing-row:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(220, 46, 255, 0.3);
  transform: translateX(10px);
}

.pricing-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: background 0.3s ease;
}

.pricing-row:hover::before {
  background: var(--color-pink);
  box-shadow: 0 0 20px var(--color-pink);
}

.pr-info {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.pr-icon {
  width: 68px;
  height: 68px;
  background: #0a0a0a;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-pink);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

.pricing-row:hover .pr-icon {
  border-color: rgba(220, 46, 255, 0.4);
  transform: rotate(5deg);
}

.pr-text h3 {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 0.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.pr-text p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.05rem;
  margin: 0;
  max-width: 450px;
}

.pr-details {
  display: flex;
  align-items: center;
  gap: 4.5rem;
}

.pr-details span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pr-price {
  font-family: 'Barlow Condensed', sans-serif;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  text-transform: uppercase;
  min-width: 140px;
}

.pr-price strong {
  display: block;
  font-size: 2.4rem;
  color: var(--color-white);
  line-height: 0.9;
  margin-top: 0.3rem;
}

/* Featured Row */
.pricing-row.featured {
  background: rgba(220, 46, 255, 0.04);
  border-color: rgba(220, 46, 255, 0.15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.pricing-row.featured .pr-icon {
  background: var(--color-pink);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(220, 46, 255, 0.3);
}

.pr-badge {
  position: absolute;
  top: 0;
  right: 15%;
  padding: 0.4rem 1.4rem;
  background: var(--color-pink);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: 0 0 12px 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 5px 15px rgba(220, 46, 255, 0.2);
}

@media (max-width: 1100px) {
  .pr-details { gap: 2.5rem; }
  .pr-price strong { font-size: 2rem; }
}

@media (max-width: 991px) {
  .pricing-row { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem; }
  .pricing-row:hover { transform: translateY(-5px); }
  .pr-details { width: 100%; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 2rem; }
  .pr-badge { right: 2.2rem; }
}

@media (max-width: 580px) {
  .pricing-row { padding: 2rem 1.5rem; }
  .pr-info { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .pr-details { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .pr-details span { display: block; padding: 0.3rem 0.8rem; background: rgba(255,255,255,0.05); border-radius: 6px; }
  .pr-price strong { font-size: 2.2rem; }
  .pr-text p { font-size: 0.95rem; }
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.pricing-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-pink);
  font-size: 0.72rem;
  flex-shrink: 0;
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  max-width: none;
  margin: 0;
  margin-top: 1rem;
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 5rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 4.5rem;
  align-items: flex-start;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.accordion-item {
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-card);
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.accordion-item:has(.accordion-trigger[aria-expanded="true"]) {
  box-shadow: 0 4px 20px rgba(220, 46, 255, 0.12);
  border-color: rgba(220, 46, 255, 0.3);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-size: 0.9rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-heading);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.accordion-trigger:hover {
  color: var(--color-pink);
}

.accordion-trigger[aria-expanded="true"] {
  color: var(--color-pink);
}

.accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(220, 46, 255, 0.1);
  border: 1px solid rgba(220, 46, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--color-pink);
  transition: transform var(--transition-base), background var(--transition-fast), box-shadow var(--transition-fast);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
  background: var(--color-pink);
  color: var(--color-white);
  box-shadow: var(--glow-pink-sm);
}

.accordion-content {
  padding: 0 1.4rem 1.25rem;
}

.accordion-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 60ch;
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

/* =========================================================
   REVIEWS + MAP
   ========================================================= */
.reviews-map {
  padding: 5rem 0;
}

.reviews-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.reviews-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.review-card {
  padding: 1.75rem;
  background: var(--color-bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.review-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: rgba(220, 46, 255, 0.2);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  color: #f59e0b;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 1rem;
  max-width: none;
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-pink), #7a00b8);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: var(--glow-pink-sm);
}

.review-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-heading);
  font-family: 'Outfit', sans-serif;
}

.review-author span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-family: 'Outfit', sans-serif;
  text-transform: none;
}

.review-google-btn {
  align-self: flex-start;
  gap: 0.5rem;
}

.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  line-height: 0;
  border: var(--border-subtle);
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  filter: invert(0.9) hue-rotate(180deg) brightness(0.85);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(220, 46, 255, 0.1);
  border: 1px solid rgba(220, 46, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-pink);
  font-size: 1rem;
  flex-shrink: 0;
  text-shadow: var(--glow-pink-sm);
}

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item address,
.contact-item span {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.55;
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

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

.contact-social {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(220, 46, 255, 0.08);
  border: 1px solid rgba(220, 46, 255, 0.25);
  color: var(--color-pink);
  font-size: 1rem;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-social a:hover {
  background: var(--color-pink);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--glow-pink-sm);
}

/* Contact Form */
.contact-form-container {
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: var(--color-bg-card);
  border: var(--border-pink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

/* --- Inline validation --- */
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: #ff3366;
  background: rgba(255, 51, 102, 0.06);
}

.form-group input.is-invalid:focus,
.form-group select.is-invalid:focus,
.form-group textarea.is-invalid:focus {
  border-color: #ff3366;
  box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.15);
}

.field-error {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ff5c85;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-pink);
  box-shadow: 0 0 0 3px rgba(220, 46, 255, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
}

.form-group select option {
  background: var(--color-bg-card);
  color: var(--color-text);
}

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

.honeypot {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  max-width: none;
  margin: 0;
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.form-note a {
  color: var(--color-pink);
}

.form-intro {
  margin-bottom: 1.75rem;
}

.form-intro h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.6rem;
  line-height: 1.1;
  margin: 0 0 0.35rem;
}

.form-intro p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.form-section {
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-section + .form-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  color: var(--color-pink);
}

.form-section-title i {
  font-size: 0.9em;
}

.form-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-chip {
  position: relative;
  cursor: pointer;
  user-select: none;
}

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

.service-chip span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: border-color var(--transition-fast), background var(--transition-fast),
    color var(--transition-fast), box-shadow var(--transition-fast);
}

.service-chip span i {
  color: var(--color-pink);
  transition: color var(--transition-fast);
}

.service-chip:hover span {
  border-color: rgba(220, 46, 255, 0.5);
}

.service-chip input:checked + span {
  background: var(--color-pink);
  border-color: var(--color-pink);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(220, 46, 255, 0.15);
}

.service-chip input:checked + span i {
  color: #fff;
}

.service-chip input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(220, 46, 255, 0.35);
}

/* Custom combobox (brand / model / year) */
.combo-wrap {
  position: relative;
}

.combo-wrap input {
  padding-right: 2.6rem;
}

.combo-toggle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.combo-wrap.is-open .combo-toggle {
  color: var(--color-pink);
  transform: rotate(180deg);
}

.combo-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  max-height: 240px;
  overflow-y: auto;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: #1a1a1f;
  border: 1.5px solid rgba(220, 46, 255, 0.35);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55), 0 0 0 3px rgba(220, 46, 255, 0.08);
}

.combo-list::-webkit-scrollbar {
  width: 6px;
}

.combo-list::-webkit-scrollbar-thumb {
  background: rgba(220, 46, 255, 0.4);
  border-radius: 3px;
}

.combo-list li {
  padding: 0.55rem 0.85rem;
  border-radius: calc(var(--radius-sm) - 4px);
  font-size: 0.92rem;
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.combo-list li:hover {
  background: rgba(220, 46, 255, 0.15);
}

.combo-list li.is-selected {
  background: var(--color-pink);
  color: #fff;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Author display:flex above beats the UA rule for [hidden], so the form
   would stay visible after a successful send without this. */
#contact-form[hidden] {
  display: none !important;
}

#contact-form .btn {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form-success[hidden] {
  display: none !important;
}

.form-success i {
  font-size: 3.5rem;
  color: #00ff88; /* Neon Green for success */
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.form-success h3 {
  font-size: 1.6rem;
  color: var(--color-heading);
}

.form-success p {
  color: var(--color-text-muted);
  max-width: 36ch;
  text-align: center;
  margin-inline: auto;
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer-bottom-wrap {
  border-top: 1px solid rgba(220, 46, 255, 0.15);
}

.footer-bottom {
  background: #080808;
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  max-width: none;
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--color-pink);
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   SECTION DIVIDER – punk style (pink line)
   ========================================================= */
.service-detail + .service-detail,
.pricing + .faq,
.faq + .reviews-map,
.reviews-map + .contact {
  position: relative;
}

/* =========================================================
   RESPONSIVE: 1200px
   ========================================================= */
@media (max-width: 1200px) {
  .hero-container { gap: 3rem; }
  .hero-img-frame img { height: 460px; }
  .detail-grid { gap: 3rem; }
  .footer-grid { gap: 2rem; }
}

/* =========================================================
   RESPONSIVE: 991px
   ========================================================= */
@media (max-width: 991px) {
  .top-bar { display: none; }
  :root { --header-height: 64px; }

  .main-nav { display: none; }
  .hamburger { display: flex; }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    padding-block: 4rem 3rem;
  }

  .hero-content { max-width: 100%; }
  .hero-badge   { margin-inline: auto; }
  .hero-cta     { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .hero-desc    { margin-inline: auto; }

  .hero-image { order: -1; }
  .hero-img-frame img { height: 360px; }
  .hero-img-badge { bottom: -1rem; left: 1rem; }

  .bento-grid { min-height: auto; gap: 1rem; grid-template-columns: 1fr 1fr; }
  .card-bento { min-height: 220px; }

  .detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .detail-reverse { direction: ltr; }

  .comparison-grid figure img { height: 200px; }
  .single-img img { height: 320px; }

  .pricing-grid { gap: 1.25rem; }
  .faq-grid     { gap: 0.75rem; }

  .reviews-map-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

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

/* =========================================================
   RESPONSIVE: 768px
   ========================================================= */
@media (max-width: 768px) {
  :root { --container-width: 92%; }

  section { padding: 3.5rem 0; }

  h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  .hero-img-frame img { height: 300px; }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .card-bento { min-height: 200px; }

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

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

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

  .footer-bottom .container { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
}

/* =========================================================
   RESPONSIVE: 480px
   ========================================================= */
@media (max-width: 480px) {
  :root { --container-width: 94%; }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .hero-stats { gap: 1.25rem; }

  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-grid figure img { height: 220px; }

  .contact-form-container { padding: 1.5rem; }

  /* Full-width service cards so titles/descriptions don't clip */
  .bento-grid { grid-template-columns: 1fr; }
  .card-bento { min-height: 240px; }
}

/* =========================================================
   FIXED GIFT BUTTON
   ========================================================= */
.fixed-gift-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg) translateX(42%);
  transform-origin: right top;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-pink);
  color: var(--color-white);
  padding: 0.8rem 1.5rem;
  border-radius: 16px 16px 0 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--glow-pink-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}


.fixed-gift-btn i {
  font-size: 1.1rem;
  transform: rotate(90deg);
}

/* =========================================================
   GIFT MODAL
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start; /* Start at top for better scrolling */
  justify-content: center;
  z-index: 2000;
  padding: 4rem 1rem; /* More space at top/bottom for scrollable content */
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  overflow-y: auto; /* Allow full overlay to scroll */
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: 100%;
  max-width: 540px;
  position: relative;
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(220, 46, 255, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(220, 46, 255, 0.1);
  background: rgba(15, 15, 15, 0.95);
  margin: auto 0; /* Keeps it centered vertically if content is short */
}

.modal-overlay.is-active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.modal-close:hover {
  background: var(--color-pink);
  transform: rotate(90deg);
  box-shadow: var(--glow-pink-sm);
  border-color: var(--color-pink);
}

.modal-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.modal-main-icon {
  font-size: 0.85em;
  color: var(--color-pink);
  margin-right: 0.35rem;
  vertical-align: baseline;
  filter: drop-shadow(0 0 15px rgba(220, 46, 255, 0.6));
}

.modal-header h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 0.75rem;
  color: var(--color-white);
  line-height: 1.2;
}

.modal-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

/* Mobil: menší nadpis + odsazení, ať se nepřekrývá s křížkem */
@media (max-width: 580px) {
  .modal-card {
    padding: 2rem 1.5rem;
  }

  .modal-header {
    padding-top: 2.2rem;
    margin-bottom: 1.75rem;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .modal-header p {
    font-size: 0.9rem;
  }
}

.voucher-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  padding: 0.55rem 1.1rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-pink);
  background: rgba(220, 46, 255, 0.08);
  border: 1px solid rgba(220, 46, 255, 0.35);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.voucher-preview-link:hover,
.voucher-preview-link:focus-visible {
  background: rgba(220, 46, 255, 0.18);
  border-color: var(--color-pink);
  color: var(--color-white);
}

/* ---------- Voucher preview lightbox ---------- */
.voucher-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(2, 2, 2, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.voucher-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.voucher-lightbox-figure {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.voucher-lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.voucher-lightbox-figure figcaption {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.voucher-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.voucher-lightbox-close:hover,
.voucher-lightbox-close:focus-visible {
  background: var(--color-pink);
  border-color: var(--color-pink);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.modal-form .btn {
  justify-content: center;
  text-align: center;
}

.modal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.modal-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.modal-form input,
.modal-form textarea,
.modal-form select {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: 'Outfit', sans-serif;
  transition: all var(--transition-fast);
}

.modal-form input:focus,
.modal-form textarea:focus,
.modal-form select:focus {
  outline: none;
  border-color: var(--color-pink);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(220, 46, 255, 0.1);
}

.modal-form select option {
  background: #111;
  color: #fff;
}

@media (max-width: 767px) {
  .modal-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .modal-card {
    padding: 2.5rem 1.5rem;
    margin: 1rem;
  }

  .fixed-gift-btn {
    transform: none;
    left: auto;
    right: 1.25rem;
    top: auto;
    bottom: 20%;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    justify-content: center;
    padding: 0;
    box-shadow: 0 10px 30px rgba(220, 46, 255, 0.4);
  }

  .fixed-gift-btn:hover {
    transform: scale(1.1);
    bottom: 20%;
    right: 1.25rem;
  }
}

/* =========================================================
   FIXED GIFT BUTTON (Desktop Fix)
   ========================================================= */
.fixed-gift-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg) translateY(-50%);
  transform-origin: right center;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-pink);
  color: var(--color-white);
  padding: 1rem 1.8rem;
  border-radius: 12px 12px 0 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--glow-pink-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.fixed-gift-btn:hover {
  background: #e03eff;
  box-shadow: var(--glow-pink);
  padding-bottom: 2.2rem;
}

.fixed-gift-btn i {
  font-size: 1.2rem;
  transform: rotate(90deg);
}

/* =========================================================
   DESIGN v7 - PANORAMA ROW VISION
   ========================================================= */
.service-panorama {
  padding: 6rem 0;
  background: #050505;
}

.panorama-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 4rem;
}

.ph-content {
  flex: 1;
}

.ph-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--color-pink);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.ph-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.ph-lead {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.ph-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.ph-note-bottom {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  max-width: 340px;
  text-align: right;
  line-height: 1.4;
  margin: 0;
  border-right: 2px solid rgba(220, 46, 255, 0.2);
  padding-right: 1.5rem;
}

.ph-features-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2.5rem;
  padding: 0;
  margin-top: 2rem;
}

.ph-features-grid li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.2;
}

.ph-features-grid li i {
  color: var(--color-pink);
  font-size: 0.85rem;
  flex-shrink: 0;
  text-shadow: var(--glow-pink-sm);
}

.ph-cta {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  background: #0f0f0f;
  padding: 2.5rem 4rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ph-price {
  display: flex;
  flex-direction: column;
}

.ph-price span {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.ph-price strong {
  font-size: 3.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1;
}

.ph-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.ph-link-cenik {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.825rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: 'Outfit', sans-serif;
  transition: all var(--transition-base);
  text-transform: none;
}

.ph-link-cenik:hover {
  color: var(--color-pink);
  opacity: 1;
}

/* Gallery Row */
.panorama-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  height: 420px;
}

.pg-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pg-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(220, 46, 255, 0.15);
  border-color: rgba(220, 46, 255, 0.3);
}

.pg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pg-item:hover img {
  transform: scale(1.05);
}

.pg-item.before img {
  opacity: 1;
  filter: none;
}

.pg-label {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.45rem 1.2rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 6px;
  letter-spacing: 0.12em;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
/* Custom Sponge Cursor & Hero Cleaning */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  font-size: 40px;
  pointer-events: none;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
  display: none;
  user-select: none;
}

body.hide-default-cursor {
  cursor: none !important;
}

body.hide-default-cursor a, 
body.hide-default-cursor button {
  cursor: none !important;
}

.hero-img-frame {
  position: relative !important;
  overflow: hidden !important; /* Clips canvas and img corners */
  z-index: 1;
}

.cleaning-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  border-radius: inherit;
}

.hero-img-badge {
  z-index: 50 !important; /* Above everything - frame and canvas */
}

@media (pointer: fine) and (min-width: 1025px) {
  .hero-img-frame:hover {
    cursor: none !important;
  }
}

.label-after {
  background: var(--color-pink);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1200px) {
  .panorama-header { flex-direction: column; align-items: flex-start; gap: 3rem; }
  .ph-cta { width: 100%; justify-content: space-between; }
  .panorama-gallery { height: 350px; }
}

@media (max-width: 991px) {
  .panorama-gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); height: 750px; }
}

@media (max-width: 480px) {
  /* Dva sloupce: vlevo investice + cena, vpravo tlačítko */
  .ph-cta { flex-direction: row; align-items: center; justify-content: space-between; padding: 1.5rem 1.25rem; gap: 1rem; }
  .ph-features { gap: 1rem; }
  .panorama-gallery { grid-template-columns: 1fr; height: 1200px; }
  .ph-price { min-width: 0; }
  .ph-price span { font-size: 0.7rem; margin-bottom: 0.15rem; }
  .ph-price strong { font-size: 2rem; }
  .ph-actions { align-items: stretch; gap: 0.55rem; flex-shrink: 0; }
  .ph-actions .btn { padding: 0.7rem 1rem; font-size: 0.8rem; white-space: normal; text-align: center; line-height: 1.15; }
  .ph-link-cenik { text-align: center; }
}

/* =========================================================
   BACK TO TOP BUTTON
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(220, 46, 255, 0.5);
  border-radius: 50%;
  background: rgba(20, 20, 24, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-pink);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition-fast), visibility var(--transition-fast),
    transform var(--transition-fast), background var(--transition-fast);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-pink);
  color: #fff;
  box-shadow: 0 0 20px rgba(220, 46, 255, 0.5);
}

/* =========================================================
   MOBILE REFINEMENTS (UX/UI pass)
   ========================================================= */
@media (max-width: 767px) {
  /* (logo sizing handled in the ≤991px block below) */

  /* Feature checklists: 3 columns overflowed the viewport */
  .ph-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem 1.5rem;
  }

  /* Mobile menu must cover the floating buttons */
  .nav-overlay {
    z-index: 1300;
  }

  /* Gift button: compact circular FAB in the bottom-right corner
     (the desktop tab style was overriding this further up the cascade) */
  .fixed-gift-btn {
    transform: none;
    left: auto;
    right: 1.25rem;
    top: auto;
    bottom: 1.25rem;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
    box-shadow: 0 10px 30px rgba(220, 46, 255, 0.4);
  }

  .fixed-gift-btn span {
    display: none;
  }

  .fixed-gift-btn i {
    transform: none;
    font-size: 1.3rem;
  }

  .fixed-gift-btn:hover {
    transform: scale(1.08);
    padding-bottom: 0;
  }

  /* Back-to-top hidden on mobile – gift FAB takes its corner spot */
  .back-to-top {
    display: none !important;
  }

  /* Tighter section rhythm on small screens */
  .service-panorama {
    padding: 4rem 0;
  }

  .panorama-header {
    margin-bottom: 2.5rem;
  }

  /* Pricing matrix: shrink so all three plans fit without side-scroll */
  .pricing-matrix-side .matrix-container {
    overflow-x: visible;
  }

  .pricing-matrix-side .matrix-table {
    min-width: 0;
    width: 100%;
  }

  .pricing-matrix-side td,
  .pricing-matrix-side th {
    padding: 0.5rem 0.15rem !important;
    font-size: 0.66rem;
  }

  .pricing-matrix-side thead th:not(.matrix-label) {
    font-size: 0.64rem;
    letter-spacing: 0;
  }

  .pricing-matrix-side .matrix-label {
    text-align: left;
    padding-left: 0.5rem !important;
    line-height: 1.1;
    font-size: 0.64rem;
  }

  /* Price row: "OD" wraps to its own line, the amount stays intact */
  .pricing-matrix-side tr:last-child td:not(.matrix-label) {
    font-size: 0.74rem;
    font-weight: 800;
    white-space: normal;
    line-height: 1.15;
  }

  /* FAQ: single column with even vertical rhythm (matches the
     in-column gap, so no odd jump between the two column blocks) */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  /* Service-detail price note: was right-aligned for the desktop
     side layout; centre it and switch the accent bar to the left */
  .ph-cta-group {
    align-items: stretch;
  }

  .ph-note-bottom {
    text-align: left;
    max-width: none;
    border-right: none;
    border-left: 2px solid rgba(220, 46, 255, 0.2);
    padding-right: 0;
    padding-left: 1.25rem;
  }

  /* Contact section: form first, then address/phone details */
  .contact-form-container {
    order: -1;
  }

  /* "Ostatní služby" cards: dva sloupce – vlevo název + popis,
     vpravo "od" + cena; TOP badge zůstává v kartě */
  .pricing-others-side .pricing-row {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.3rem;
  }

  .pricing-others-side .pr-info {
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
  }

  .pricing-others-side .pr-icon {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
    flex-shrink: 0;
  }

  .pricing-others-side .pr-text h3 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
  }

  .pricing-others-side .pr-text p {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .pricing-others-side .pr-details {
    width: auto;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 0;
  }

  .pricing-others-side .pr-price {
    min-width: 0;
  }

  .pricing-others-side .pr-price strong {
    font-size: 1.6rem;
    margin-top: 0.1rem;
  }

  .pricing-others-side .pr-badge {
    right: 1.3rem;
  }
}

@media (max-width: 480px) {
  /* Galleries: the 2-row template left rows 3-4 auto-sized,
     which blew images up to their intrinsic height */
  .panorama-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 280px;
    height: auto;
  }
}

/* =========================================================
   MOBILE HEADER / LOGO + HORIZONTAL SCROLL GUARD
   ========================================================= */
/* Never allow the page to pan sideways – wide decorative elements
   (carousel track, off-screen nav overlay) are clipped instead */
html,
body {
  overflow-x: clip;
}

@media (max-width: 991px) {
  /* Taller mobile header so a big logo fits inside the bar
     without overlapping the content below */
  :root {
    --header-height: 96px;
  }

  .header-logo img {
    height: 128px;
    margin: -16px 0;
  }
}

/* Dotyková zařízení: žádný "sticky hover" na plovoucím tlačítku dárku –
   jinak první ťuknutí jen spustí hover (tlačítko povyskočí) a teprve
   druhé ťuknutí otevře popup. Hover efekt necháme jen pro myš. */
@media (hover: none) {
  .fixed-gift-btn:hover {
    transform: none;
    padding: 0;
    background: var(--color-pink);
    box-shadow: 0 10px 30px rgba(220, 46, 255, 0.4);
  }

  /* Jemná zpětná vazba na skutečné klepnutí */
  .fixed-gift-btn:active {
    transform: scale(0.94);
  }
}
