/* =============================================================
   A2Z STUDIO — SDÍLENÝ STYLESHEET PRO PODSTRÁNKY SLUŽEB
   Použito na: Produkce, Nahrávání, Postprodukce, Dabing
   Zdroj: shared.css (mockup) — hodnoty se nesmí měnit
   ============================================================= */

/* ── self-hosted Inter (žádné externí CDN) ── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter/inter-300.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter/inter-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter/inter-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter/inter-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter/inter-700.ttf') format('truetype');
}

.a2z-service-page, .a2z-service-page *, .a2z-service-page *::before, .a2z-service-page *::after {
  box-sizing: border-box;
}
.a2z-service-page h1, .a2z-service-page h2, .a2z-service-page h3 {
  margin: 0;
  padding: 0;
}

:root {
  --red: #cc2929;
  --red-dim: rgba(204,41,41,0.1);
  --bg: #0f0f0f;
  --card: #161616;
  --dark: #0a0a0a;
  --border: rgba(255,255,255,0.07);
  --muted: #888;
}

.a2z-service-page {
  background: var(--bg);
  font-family: 'Inter', system-ui, sans-serif;
  color: #fff;
}

/* ── GP container full-bleed override (GeneratePress wraps content
     in a constrained .site-content/.content-area; tyto stránky jsou
     full-bleed, takže to musíme přebít). Header GP je sticky (ne fixed),
     proto na rozdíl od mockupu NEpoužíváme margin-top: 61px na .hero —
     GP header si svůj prostor zabírá sám v normálním flow. ── */
body.a2z-service-page .site-content,
body.a2z-service-page .content-area,
body.a2z-service-page .site-main,
body.a2z-service-page .inside-article {
  max-width: 100% !important;
  padding: 0 !important;
}
body.a2z-service-page .site-main > * {
  margin-bottom: 0 !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 620px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.22);
  transform: scale(1.03);
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,15,15,0.97) 35%, rgba(15,15,15,0.4) 70%, transparent 100%),
    linear-gradient(0deg, rgba(15,15,15,0.6) 0%, transparent 40%);
}
.hero-red-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 0% 60%, rgba(204,41,41,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  width: 100%;
}
.breadcrumb {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.breadcrumb::before {
  content: '';
  width: 5px; height: 5px; min-width: 5px;
  border-radius: 50%;
  background: #cc2929;
  box-shadow: 0 0 0 0 rgba(204,41,41,.55);
  animation: a2z-breadcrumb-pulse 2.4s ease-out infinite;
}
@keyframes a2z-breadcrumb-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(204,41,41,.55); }
  70%  { box-shadow: 0 0 0 5px rgba(204,41,41,0); }
  100% { box-shadow: 0 0 0 0 rgba(204,41,41,0); }
}
body .breadcrumb a {
  position: relative;
  color: #888 !important;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}
body .breadcrumb a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: #cc2929;
  transition: width 0.25s ease;
}
.breadcrumb a:hover { color: #fff !important; }
.breadcrumb a:hover::after { width: 100%; }
body .breadcrumb-sep {
  color: #cc2929 !important;
  display: inline-flex;
  transition: transform 0.25s ease;
}
.breadcrumb:hover .breadcrumb-sep { transform: translateX(3px); }
body .breadcrumb-current { color: #cc2929 !important; font-weight: 600; }
.hero-label,
.section-label,
.cta-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: #fff;
  padding: 7px 16px 7px 11px;
  border-radius: 999px;
  background: rgba(204,41,41,.14);
  border: 1px solid rgba(204,41,41,.45);
  box-shadow: 0 0 0 0 rgba(204,41,41,.35), 0 0 22px rgba(204,41,41,.22);
  animation: a2z-label-glow 2.6s ease-in-out infinite;
}
.hero-label { margin-bottom: 22px; }
.section-label { margin-bottom: 14px; }
.cta-label { margin-bottom: 18px; }
.hero-label::before, .section-label::before, .cta-label::before {
  content: '';
  width: 6px; height: 6px; min-width: 6px;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 10px rgba(255,59,59,.9);
  animation: a2z-label-dot-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes a2z-label-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .45; transform: scale(1.35); }
}
@keyframes a2z-label-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204,41,41,.35), 0 0 22px rgba(204,41,41,.22); }
  50%      { box-shadow: 0 0 0 3px rgba(204,41,41,.12), 0 0 30px rgba(204,41,41,.34); }
}
/* Label v koncové CTA sekci (úplně dole na stránce) -> jednotný "holý" styl
   bez bublinového rámečku/tečky/glow, stejně jako na O nás/Reference/Rádce.
   Sjednoceno na žádost klienta napříč celým webem — 2026-06-23. */
.cta-section .cta-label {
  display: block !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  animation: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--red) !important;
  margin-bottom: 28px !important;
}
.cta-section .cta-label::before {
  display: none !important;
}
body .hero h1 {
  font-size: clamp(36px, 4.5vw, 58px) !important;
  font-weight: 700 !important; letter-spacing: -1.5px !important; line-height: 1.1 !important;
  text-transform: none !important;
  max-width: 600px; margin-bottom: 24px;
}
body .hero-desc {
  font-size: 16px !important; color: #888 !important;
  line-height: 1.75 !important; max-width: 480px !important; margin-bottom: 36px;
  min-height: 84px; /* reserve space for 3 lines so hero block height (and centering) is consistent regardless of text length */
}
.hero-btn {
  background: var(--red); color: #fff; border: none;
  font-family: inherit; font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 36px; border-radius: 4px; cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(204,41,41,0.3);
}
.hero-btn:hover { background: #aa1f1f; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(204,41,41,0.45); }
/* Dva tlačítka vedle sebe (Produkce - poslechnout beaty na SoundCloudu +
   kontakt) - brief 2026-07-09/13, sekce 3. */
.hero-btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.25);
  box-shadow: none;
}
.hero-btn--outline:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.45);
  box-shadow: none;
  color: #fff;
}
@media (max-width: 700px) {
  .hero-btn-row { justify-content: center; }
}
.hero-price-note {
  margin-top: 14px; font-size: 12px;
  color: var(--muted); letter-spacing: 0.5px;
}
.hero-price-note strong { color: #fff; font-weight: 600; }

/* ── STATS BAR ── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.stats-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 28px 48px;
  display: flex; align-items: center; gap: 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 28px; font-weight: 700;
  color: var(--red); line-height: 1; white-space: nowrap;
}
.stat-info-label { font-size: 13px; font-weight: 500; color: #fff; }
.stat-info-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── SECTION LABEL (badge styling defined near .hero-label above) ── */

/* ── FEATURES SEKCE ── */
.features-section {
  padding: 96px 48px;
  max-width: 1200px; margin: 0 auto;
}
.features-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.features-left h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700; letter-spacing: -0.5px; margin-bottom: 20px;
  text-transform: none;
}
.features-left .intro {
  font-size: 15px; color: var(--muted);
  line-height: 1.8; margin-bottom: 40px;
}
.feature-list { display: flex; flex-direction: column; gap: 16px; list-style: none; margin: 0; padding: 0; }
.feature-list .feature-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px;
  background: #161616;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  font-size: 15.2px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  transition: border-color 200ms ease;
}
.feature-item:hover { border-color: rgba(212,43,43,.3); }
.feature-check {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; min-width: 22px;
  background: rgba(212,43,43,.1);
  border: 1px solid rgba(212,43,43,.4);
  color: #cc2929;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
  border-radius: 50%;
  margin-top: 1.6px;
}
.feature-check svg {
  width: 11px; height: 11px; display: block;
}
.feature-text { font-size: inherit; font-weight: 400; color: inherit; line-height: inherit; }

/* ── FOTO PRAVÝ SLOUPEC ── */
body .features-right,
body .features-right * {
  overflow: visible !important;
}
.features-right {
  position: relative;
  padding-bottom: 32px; padding-right: 20px;
}
body .photo-main,
body .photo-accent {
  overflow: hidden !important;
}
.photo-main {
  width: 100%; aspect-ratio: 4 / 3; border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}
.photo-main img {
  width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.88);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.photo-main:hover img { transform: scale(1.04); filter: brightness(1); }
.photo-accent {
  position: absolute; bottom: 0; left: -28px;
  width: 150px; height: 150px;
  border-radius: 10px; overflow: hidden;
  border: 3px solid var(--bg);
  box-shadow: 0 12px 36px rgba(0,0,0,0.6);
}
.photo-accent img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-badge {
  position: absolute; top: 28px; right: 0;
  background: var(--red); border-radius: 10px;
  padding: 16px 20px; text-align: center;
  box-shadow: 0 8px 32px rgba(204,41,41,0.5);
}
.photo-badge-num { display: block; font-size: 30px; font-weight: 700; line-height: 1; }
.photo-badge-label {
  display: block; font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase; opacity: 0.9; margin-top: 5px;
}

/* ── QUOTE ── */
.quote-section { padding: 80px 48px; background: var(--dark); }
.quote-inner {
  max-width: 760px; margin: 0 auto;
  text-align: center; position: relative;
}
.quote-mark {
  font-size: 140px; font-weight: 800; font-family: Georgia, serif;
  color: rgba(204,41,41,0.55); line-height: 0.8;
  display: block; margin-bottom: 8px; pointer-events: none;
}
.big-quote {
  font-size: clamp(17px, 1.9vw, 23px);
  font-style: italic; font-weight: 300;
  line-height: 1.75; color: #bbb; margin-bottom: 30px;
}
.big-quote strong { color: #fff; font-style: normal; font-weight: 600; }
.quote-line { width: 36px; height: 2px; background: var(--red); margin: 0 auto; }

/* ── PROCESS TIMELINE ── */
.process-section { background: var(--dark); padding: 96px 48px; }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 64px; }
.process-header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700; letter-spacing: -0.5px;
  text-transform: none;
}
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 27px;
  left: calc(100% / 6); right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(204,41,41,0.3), var(--red));
}
.process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 32px;
  position: relative; z-index: 1;
}
.step-dot {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--dark); border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--red);
  letter-spacing: 1px; margin-bottom: 28px;
}
.step-title { font-size: 17px; font-weight: 600; margin-bottom: 12px; }
.step-desc { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

/* ── CTA ── */
.cta-section {
  position: relative; text-align: center;
  padding: 96px 48px; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(204,41,41,0.08) 0%, transparent 70%);
}
.cta-inner { position: relative; max-width: 560px; margin: 0 auto; }
/* .cta-label badge styling defined near .hero-label above */
.cta-inner h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700; letter-spacing: -1px; margin-bottom: 16px;
  text-transform: none;
}
.cta-inner p { font-size: 15px; color: var(--muted); margin-bottom: 36px; line-height: 1.7; }
.cta-btn {
  background: var(--red); color: #fff; border: none;
  font-family: inherit; font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 40px; border-radius: 4px; cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(204,41,41,0.3);
}
.cta-btn:hover { background: #aa1f1f; color: #fff; transform: translateY(-2px); }
.back-link {
  display: block; text-align: center;
  font-size: 12px; color: var(--muted);
  letter-spacing: 1px; text-decoration: none;
  margin-top: 40px; transition: color 0.2s;
}
.back-link:hover { color: #fff; }

/* ── RESPONSIVE (shared) ── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-right { display: none; }
}
@media (max-width: 700px) {
  .hero { height: auto; padding: 100px 0 60px; }
  .hero-content { padding: 0 24px; }
  .stats-bar-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .features-section { padding: 64px 24px; }
  .quote-section { padding: 64px 24px; }
  .process-section { padding: 64px 24px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .process-step { flex-direction: column; align-items: center; text-align: center; padding: 0; }
  .cta-section { padding: 64px 24px; }

  /* Hero content (breadcrumb, label, h1, popis, tlačítko) bylo na mobilu vlevo,
     zatímco přehled Služby (.sluzby-hero) je centrovaný — nekonzistentní vzhled
     mezi přehledem a podstránkami. Sjednoceno na centrované zobrazení. */
  .hero-content { text-align: center; }
  .breadcrumb { justify-content: center; margin: 0 auto 24px; }
  body .hero h1 { margin: 0 auto 24px; }
  body .hero-desc { margin: 0 auto 36px; }
}
