/*
Theme Name: PadelKurty Child
Template: blocksy
*/

/* ═══════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════════════════ */
:root {
  --pk-bg:       #07101E;
  --pk-bg1:      #0B1526;
  --pk-bg2:      #0F1C30;
  --pk-card:     #0D1929;
  --pk-border:   rgba(255,255,255,0.07);
  --pk-accent:   #2563EB;
  --pk-accent-l: #3B82F6;
  --pk-accent-d: #1D4ED8;
  --pk-line:     rgba(37,99,235,0.28);
  --pk-white:    #EFF6FF;
  --pk-gray:     #94A3B8;
  --pk-muted:    #475569;
  --pk-nav:      70px;
  --pk-max:      1200px;
  --pk-pad:      clamp(20px, 5vw, 80px);
  --pk-section:  clamp(80px, 9vw, 120px);
  --pk-r:        10px;
  --pk-r2:       16px;
  --fh: 'Montserrat', sans-serif;
  --fb: 'Inter', sans-serif;
}

/* ═══════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.pk-template {
  background: var(--pk-bg);
  color: var(--pk-white);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ═══════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════ */
.pk-container {
  max-width: var(--pk-max);
  margin: 0 auto;
  padding: 0 var(--pk-pad);
}
.pk-section { padding: var(--pk-section) 0; }

.pk-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.10);
  border: 1px solid var(--pk-line);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pk-accent-l);
  font-family: var(--fh);
}
.pk-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pk-accent-l);
  animation: pk-pulse 2.2s ease-in-out infinite;
}
@keyframes pk-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(1.4); }
}

h1,h2,h3,h4,h5 { font-family: var(--fh); font-weight: 800; line-height: 1.12; }

.pk-h1 {
  font-size: clamp(38px, 5.5vw, 80px);
  color: var(--pk-white);
  letter-spacing: -2px;
}
.pk-h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--pk-white);
  letter-spacing: -0.5px;
}
.pk-h3 {
  font-size: clamp(17px, 1.8vw, 22px);
  color: var(--pk-white);
}
.pk-lead {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--pk-gray);
  line-height: 1.8;
}

/* BUTTONS */
.pk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border-radius: 8px;
  padding: 13px 26px;
  transition: all 0.22s ease;
  white-space: nowrap;
  cursor: pointer;
}
.pk-btn-primary {
  background: var(--pk-accent);
  color: #fff;
}
.pk-btn-primary:hover {
  background: var(--pk-accent-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,99,235,0.38);
}
.pk-btn-ghost {
  background: transparent;
  color: var(--pk-white);
  border: 1.5px solid rgba(255,255,255,0.15);
}
.pk-btn-ghost:hover {
  border-color: var(--pk-accent-l);
  color: var(--pk-accent-l);
}

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

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
.pk-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--pk-nav);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.pk-nav.is-scrolled {
  background: rgba(7,16,30,0.92);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 1px 0 var(--pk-border);
}
.pk-nav-inner {
  max-width: var(--pk-max);
  margin: 0 auto;
  padding: 0 var(--pk-pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}
.pk-logo img {
  height: 34px;
  width: auto;
}
.pk-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.pk-nav-links a {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 600;
  color: var(--pk-gray);
  letter-spacing: 0.2px;
  transition: color 0.2s;
  position: relative;
}
.pk-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--pk-accent-l);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.pk-nav-links a:hover { color: var(--pk-white); }
.pk-nav-links a:hover::after { transform: scaleX(1); }
.pk-nav-cta { margin-left: 12px; }

/* Hamburger */
.pk-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
  border-radius: 6px;
}
.pk-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--pk-white);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s;
}
.pk-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pk-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.pk-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.pk-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--pk-bg1);
  padding: calc(var(--pk-nav) + 20px) 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateX(100%);
  transition: transform 0.32s ease;
  pointer-events: none;
}
.pk-mobile-menu.is-open {
  transform: translateX(0);
  pointer-events: auto;
}
.pk-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--pk-border);
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  color: var(--pk-white);
  transition: color 0.2s;
}
.pk-mobile-link:hover { color: var(--pk-accent-l); }
.pk-mobile-cta {
  margin-top: 28px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.pk-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pk-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.padelkurty.sk/wp-content/uploads/2026/04/vystavba-padelovych-kurtov-na-kluc-padelkurty-sk.jpg');
  background-size: cover;
  background-position: center 30%;
}
.pk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(7,16,30,0.90) 0%,
    rgba(7,16,30,0.70) 45%,
    rgba(7,16,30,0.82) 100%
  );
}
.pk-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--pk-nav) + 48px) var(--pk-pad) 80px;
  max-width: calc(var(--pk-max) + var(--pk-pad) * 2);
  margin: 0 auto;
}
.pk-hero-badge { margin-bottom: 28px; }
.pk-hero-title {
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -2.5px;
  color: #fff;
  max-width: 840px;
  margin-bottom: 24px;
}
.pk-hero-title em {
  font-style: normal;
  color: var(--pk-accent-l);
}
.pk-hero-sub {
  font-size: clamp(15px, 1.35vw, 18px);
  color: rgba(239,246,255,0.72);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.8;
}
.pk-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pk-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-family: var(--fh);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.pk-scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: pk-bounce 2.2s ease-in-out infinite;
}
@keyframes pk-bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(5px); }
}

/* ═══════════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════════ */
.pk-stats {
  background: var(--pk-bg1);
  border-top: 1px solid var(--pk-border);
  border-bottom: 1px solid var(--pk-border);
  padding: 44px 0;
}
.pk-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pk-stat-item {
  text-align: center;
  padding: 8px 20px;
  border-right: 1px solid var(--pk-border);
}
.pk-stat-item:last-child { border-right: none; }
.pk-stat-num {
  font-family: var(--fh);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1;
  color: var(--pk-white);
  letter-spacing: -1.5px;
}
.pk-stat-num sup { color: var(--pk-accent-l); font-size: 0.55em; vertical-align: super; }
.pk-stat-label {
  font-family: var(--fh);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--pk-muted);
  margin-top: 7px;
}

/* ═══════════════════════════════════════════════════
   PREČO INVESTOVAŤ
═══════════════════════════════════════════════════ */
.pk-benefits { background: var(--pk-bg); }
.pk-benefits-head {
  max-width: 600px;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.pk-benefits-head .pk-badge { margin-bottom: 20px; }
.pk-benefits-head .pk-h2 { margin: 16px 0; }
.pk-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 56px;
}
.pk-benefit {}
.pk-benefit-num {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 800;
  color: var(--pk-accent);
  letter-spacing: 2.5px;
  margin-bottom: 12px;
  display: block;
}
.pk-benefit-divider {
  width: 36px; height: 2px;
  background: var(--pk-accent);
  border-radius: 2px;
  margin-bottom: 16px;
}
.pk-benefit h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--pk-white);
  margin-bottom: 10px;
  line-height: 1.35;
}
.pk-benefit p {
  font-size: 13.5px;
  color: var(--pk-gray);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════
   PRODUKTY
═══════════════════════════════════════════════════ */
.pk-products { background: var(--pk-bg1); }
.pk-products-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.pk-products-head .pk-badge { margin-bottom: 20px; }
.pk-products-head .pk-h2 { margin: 16px 0; }

.pk-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pk-product-card {
  background: var(--pk-card);
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-r2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pk-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  border-color: rgba(37,99,235,0.32);
}
.pk-product-img-wrap {
  overflow: hidden;
  position: relative;
}
.pk-product-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--pk-card), transparent);
}
.pk-product-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pk-product-card:nth-child(1) .pk-product-img { object-position: left center; }
.pk-product-card:nth-child(2) .pk-product-img { object-position: center center; }
.pk-product-card:nth-child(3) .pk-product-img { object-position: right center; }
.pk-product-card:hover .pk-product-img { transform: scale(1.04); }
.pk-product-body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.pk-product-tag {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pk-accent-l);
  margin-bottom: 8px;
}
.pk-product-name {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 800;
  color: var(--pk-white);
  margin-bottom: 12px;
}
.pk-product-desc {
  font-size: 13.5px;
  color: var(--pk-gray);
  line-height: 1.75;
  flex: 1;
}
.pk-product-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  color: var(--pk-accent-l);
  letter-spacing: 0.5px;
  transition: gap 0.2s;
}
.pk-product-card:hover .pk-product-cta { gap: 10px; }

/* ═══════════════════════════════════════════════════
   REALIZÁCIE
═══════════════════════════════════════════════════ */
.pk-gallery { background: var(--pk-bg); }
.pk-gallery-head {
  max-width: 580px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.pk-gallery-head .pk-badge { margin-bottom: 18px; }
.pk-gallery-head .pk-h2 { margin: 14px 0; }

.pk-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 220px;
  gap: 12px;
}
.pk-gallery-item {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
}
.pk-gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.pk-gallery-item:nth-child(5) { grid-column: span 2; }
.pk-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.pk-gallery-item:hover .pk-gallery-img { transform: scale(1.06); }
.pk-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,16,30,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}
.pk-gallery-item:hover .pk-gallery-overlay { opacity: 1; }
.pk-gallery-cta { text-align: center; margin-top: 44px; }

/* ═══════════════════════════════════════════════════
   KONTAKT
═══════════════════════════════════════════════════ */
.pk-contact { background: var(--pk-bg1); }
.pk-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.pk-contact-left .pk-badge { margin-bottom: 18px; }
.pk-contact-left .pk-h2 { margin: 14px 0 12px; }
.pk-contact-left .pk-lead { margin-bottom: 40px; }

.pk-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--pk-border);
}
.pk-contact-detail:last-of-type { border-bottom: none; }
.pk-contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(37,99,235,0.10);
  border: 1px solid var(--pk-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pk-accent-l);
}
.pk-contact-d-label {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pk-muted);
  margin-bottom: 4px;
}
.pk-contact-d-val {
  font-size: 15px;
  font-weight: 500;
  color: var(--pk-white);
}
.pk-contact-d-val a { color: var(--pk-accent-l); transition: color 0.2s; }
.pk-contact-d-val a:hover { color: #fff; }

/* FORM */
.pk-form-card {
  background: var(--pk-card);
  border: 1px solid var(--pk-border);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 48px);
}
.pk-form-title {
  font-family: var(--fh);
  font-size: 21px;
  font-weight: 800;
  color: var(--pk-white);
  margin-bottom: 6px;
}
.pk-form-subtitle {
  font-size: 13.5px;
  color: var(--pk-gray);
  margin-bottom: 30px;
  line-height: 1.6;
}
.pk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pk-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.pk-field label {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pk-muted);
}
.pk-field input,
.pk-field select,
.pk-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--pk-border);
  border-radius: 8px;
  padding: 12px 15px;
  color: #EFF6FF !important;
  -webkit-text-fill-color: #EFF6FF !important;
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.pk-field input:focus,
.pk-field select:focus,
.pk-field textarea:focus {
  border-color: var(--pk-accent);
  background: rgba(37,99,235,0.06);
}
/* Autofill override — zabraňuje prehliadaču sfarbovať pozadie na bielu/modrú */
.pk-field input:-webkit-autofill,
.pk-field input:-webkit-autofill:hover,
.pk-field input:-webkit-autofill:focus,
.pk-field input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #0D1929 inset !important;
  box-shadow: 0 0 0 1000px #0D1929 inset !important;
  -webkit-text-fill-color: #EFF6FF !important;
  caret-color: #EFF6FF;
  transition: background-color 9999s ease 0s;
}
.pk-field input::placeholder,
.pk-field textarea::placeholder { color: var(--pk-muted); }
/* Select — vertikálne zarovnanie textu, skrytá natívna šípka */
.pk-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  line-height: 1.4;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  vertical-align: middle;
  display: block;
}
.pk-field select option { background: var(--pk-bg1); color: var(--pk-white); }
.pk-field textarea { resize: vertical; min-height: 110px; }

.pk-hp { display: none !important; visibility: hidden; }

.pk-form-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 14px;
  margin-top: 4px;
}
.pk-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.pk-form-submit:disabled:hover { transform: none; box-shadow: none; background: var(--pk-accent); }

.pk-form-message {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  display: none;
}
.pk-form-message.is-success {
  background: rgba(16,185,129,0.10);
  border: 1px solid rgba(16,185,129,0.3);
  color: #34D399;
  display: block;
}
.pk-form-message.is-error {
  background: rgba(239,68,68,0.10);
  border: 1px solid rgba(239,68,68,0.3);
  color: #F87171;
  display: block;
}
.pk-form-privacy {
  font-size: 11.5px;
  color: var(--pk-muted);
  margin-top: 14px;
  line-height: 1.65;
}
.pk-form-privacy a { color: var(--pk-accent-l); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.pk-footer {
  background: var(--pk-bg);
  border-top: 1px solid var(--pk-border);
  padding: 40px 0;
}
.pk-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.pk-footer-logo img { height: 28px; width: auto; }
.pk-footer-copy { font-size: 12.5px; color: var(--pk-muted); }
.pk-footer-links { display: flex; gap: 22px; }
.pk-footer-links a {
  font-size: 12.5px;
  color: var(--pk-muted);
  transition: color 0.2s;
}
.pk-footer-links a:hover { color: var(--pk-accent-l); }

/* ═══════════════════════════════════════════════════
   BLOG — HERO
═══════════════════════════════════════════════════ */
.pk-blog-hero {
  background: var(--pk-bg1);
  padding: calc(var(--pk-nav) + 64px) 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--pk-border);
  position: relative;
  overflow: hidden;
}
.pk-blog-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.pk-blog-hero .pk-badge { margin-bottom: 20px; }
.pk-blog-hero .pk-h1 { margin: 16px auto 20px; max-width: 640px; }

.pk-blog-section { background: var(--pk-bg); }
.pk-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pk-blog-card {
  background: var(--pk-card);
  border: 1px solid var(--pk-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pk-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.38);
  border-color: rgba(37,99,235,0.28);
}
.pk-blog-thumb-wrap { overflow: hidden; }
.pk-blog-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pk-blog-card:hover .pk-blog-thumb { transform: scale(1.04); }
.pk-blog-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--pk-bg2), var(--pk-card));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pk-muted);
}
.pk-blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.pk-blog-date {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pk-muted);
  margin-bottom: 10px;
}
.pk-blog-title {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 700;
  color: var(--pk-white);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}
.pk-blog-excerpt {
  font-size: 13px;
  color: var(--pk-gray);
  line-height: 1.72;
  margin-bottom: 20px;
}
.pk-blog-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  color: var(--pk-accent-l);
  letter-spacing: 0.4px;
  transition: gap 0.2s;
}
.pk-blog-card:hover .pk-blog-more { gap: 10px; }
.pk-blog-loading,
.pk-blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 20px;
  color: var(--pk-muted);
  font-family: var(--fh);
  font-size: 14px;
}
.pk-loadmore-wrap { text-align: center; margin-top: 48px; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pk-benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 44px; }
  .pk-products-grid { grid-template-columns: repeat(2, 1fr); }
  .pk-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .pk-gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .pk-gallery-item:nth-child(5) { grid-column: span 1; }
  .pk-contact-layout { grid-template-columns: 1fr; }
  .pk-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .pk-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pk-stat-item:nth-child(2) { border-right: none; }
  .pk-stat-item:nth-child(3) { border-top: 1px solid var(--pk-border); }
  .pk-stat-item:nth-child(4) { border-top: 1px solid var(--pk-border); border-right: none; }
}
@media (max-width: 768px) {
  .pk-nav-links,
  .pk-nav-cta { display: none; }
  .pk-hamburger { display: flex; }
  .pk-hero-title { letter-spacing: -1.5px; }
  .pk-benefits-grid { grid-template-columns: 1fr; gap: 32px; }
  .pk-products-grid { grid-template-columns: 1fr; }
  .pk-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 8px;
  }
  .pk-gallery-item:nth-child(1) { grid-column: span 2; }
  .pk-form-row { grid-template-columns: 1fr; }
  .pk-blog-grid { grid-template-columns: 1fr; }
  .pk-footer-inner { flex-direction: column; text-align: center; }
  .pk-footer-links { justify-content: center; }
  .pk-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pk-gallery-grid { grid-template-columns: 1fr; }
  .pk-gallery-item:nth-child(1),
  .pk-gallery-item:nth-child(5) { grid-column: span 1; }
  .pk-hero-actions { flex-direction: column; align-items: flex-start; }
  .pk-hero-actions .pk-btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════
   SHARED SECTION HEADER
═══════════════════════════════════════════════════ */
.pk-sec-head { margin-bottom: clamp(44px, 6vw, 72px); }
.pk-sec-head--center { text-align: center; }
.pk-sec-head .pk-badge { margin-bottom: 18px; }
.pk-sec-head .pk-h2 { margin: 16px 0; }

/* ═══════════════════════════════════════════════════
   TYPY KURTOV
═══════════════════════════════════════════════════ */
.pk-courts { background: var(--pk-bg1); }

.pk-courts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pk-court-card {
  background: var(--pk-card);
  border: 1px solid var(--pk-border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pk-court-card:hover {
  transform: translateY(-7px);
  border-color: rgba(37,99,235,0.55);
  box-shadow: 0 22px 52px rgba(37,99,235,0.18);
}

.pk-court-img-wrap {
  position: relative;
  overflow: hidden;
}
.pk-court-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.pk-court-card:hover .pk-court-img { transform: scale(1.05); }

.pk-court-badge {
  position: absolute;
  top: 13px; left: 13px;
  background: var(--pk-accent);
  color: #fff;
  font-family: var(--fh);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.pk-court-badge--premium { background: #7C3AED; }
.pk-court-badge--robust  { background: #DC2626; }
.pk-court-badge--compact { background: #059669; }

.pk-court-body {
  padding: 22px 26px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pk-court-name {
  font-family: var(--fh);
  font-size: 21px;
  font-weight: 800;
  color: var(--pk-white);
  margin-bottom: 5px;
  line-height: 1.2;
}
.pk-court-sub {
  font-size: 13px;
  color: var(--pk-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.pk-court-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 20px;
}
.pk-court-feat {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13.5px;
  color: var(--pk-gray);
  line-height: 1.55;
}
.pk-cbar {
  display: block;
  width: 3px;
  min-height: 20px;
  background: var(--pk-accent);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.2s;
}
.pk-court-card:hover .pk-cbar,
.pk-surf-card:hover .pk-cbar { background: var(--pk-accent-l); }

.pk-court-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--fh);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--pk-accent-l);
  letter-spacing: 0.3px;
  transition: gap 0.2s;
  margin-top: auto;
}
.pk-court-card:hover .pk-court-cta { gap: 12px; }

/* ═══════════════════════════════════════════════════
   POVRCHY KURTOV
═══════════════════════════════════════════════════ */
.pk-surfaces { background: var(--pk-bg); }

.pk-surfaces-note {
  display: block;
  font-size: 12.5px;
  color: var(--pk-muted);
  margin-top: 10px;
  line-height: 1.6;
}
.pk-surfaces-link {
  color: var(--pk-accent-l);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.pk-surfaces-link:hover { color: #fff; }

.pk-surfaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pk-surf-card {
  background: var(--pk-card);
  border: 1px solid var(--pk-border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pk-surf-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37,99,235,0.42);
  box-shadow: 0 16px 42px rgba(37,99,235,0.14);
}
.pk-surf-card--featured {
  border-color: rgba(37,99,235,0.28);
}

.pk-surf-img-wrap { overflow: hidden; position: relative; }
.pk-surf-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.pk-surf-card:hover .pk-surf-img { transform: scale(1.05); }

.pk-surf-badge {
  position: absolute;
  top: 13px; left: 13px;
  background: var(--pk-accent);
  color: #fff;
  font-family: var(--fh);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.pk-surf-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.pk-surf-name {
  font-family: var(--fh);
  font-size: 19px;
  font-weight: 800;
  color: var(--pk-white);
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.pk-surf-sub {
  font-size: 12.5px;
  color: var(--pk-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════════════════
   ROI KALKULAČKA
═══════════════════════════════════════════════════ */
.pk-roi { background: var(--pk-bg1); }

.pk-roi-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

/* Sliders card */
.pk-roi-sliders {
  background: var(--pk-card);
  border: 1px solid var(--pk-border);
  border-radius: 20px;
  padding: clamp(22px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pk-roi-sg { display: flex; flex-direction: column; gap: 7px; }

.pk-roi-sl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.pk-roi-sl span {
  font-family: var(--fh);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--pk-gray);
  line-height: 1.4;
}
.pk-roi-sl strong {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 900;
  color: var(--pk-accent-l);
  min-width: 34px;
  text-align: right;
  flex-shrink: 0;
}

/* Range input */
.pk-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(
    to right,
    var(--pk-accent) 0%,
    var(--pk-accent) calc(var(--pct, 50) * 1%),
    rgba(255,255,255,0.10) calc(var(--pct, 50) * 1%),
    rgba(255,255,255,0.10) 100%
  );
}
.pk-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--pk-accent-l);
  border: 2px solid var(--pk-bg1);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.28);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pk-range:hover::-webkit-slider-thumb,
.pk-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 5px rgba(59,130,246,0.32);
  transform: scale(1.18);
}
.pk-range::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--pk-accent-l);
  border: 2px solid var(--pk-bg1);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.28);
  cursor: pointer;
}
.pk-range-mm {
  display: flex;
  justify-content: space-between;
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 600;
  color: var(--pk-muted);
}

/* Results card */
.pk-roi-results {
  background: var(--pk-card);
  border: 1px solid rgba(37,99,235,0.28);
  border-radius: 20px;
  padding: clamp(22px, 4vw, 40px);
  position: sticky;
  top: calc(var(--pk-nav) + 20px);
}
.pk-roi-rhead { margin-bottom: 20px; }
.pk-roi-rtitle {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 800;
  color: var(--pk-white);
  margin-bottom: 3px;
}
.pk-roi-rsub { font-size: 11.5px; color: var(--pk-muted); }

.pk-roi-metric { margin-bottom: 2px; }
.pk-roi-mlabel {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--pk-muted);
  margin-bottom: 3px;
}
.pk-roi-mval {
  font-family: var(--fh);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--pk-accent-l);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.pk-roi-metric--big .pk-roi-mval {
  font-size: clamp(30px, 4.5vw, 48px);
}
.pk-roi-mval--sm { font-size: clamp(17px, 2vw, 22px); color: var(--pk-white); }
.pk-c-pos { color: #34D399 !important; }
.pk-c-neg { color: #F87171 !important; }

.pk-roi-divider { height: 1px; background: var(--pk-border); margin: 18px 0; }

.pk-roi-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.pk-roi-note {
  font-size: 10.5px;
  color: var(--pk-muted);
  line-height: 1.6;
  margin: 14px 0 18px;
}
.pk-roi-cta { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — NOVÉ SEKCIE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pk-courts-grid   { grid-template-columns: repeat(2, 1fr); }
  .pk-surfaces-grid { grid-template-columns: repeat(2, 1fr); }
  .pk-roi-layout    { grid-template-columns: 1fr; }
  .pk-roi-results   { position: static; }
}
@media (max-width: 768px) {
  .pk-courts-grid   { grid-template-columns: 1fr; }
  .pk-surfaces-grid { grid-template-columns: 1fr; }
  .pk-roi-row2      { grid-template-columns: 1fr; gap: 10px; }
  .pk-roi-sliders   { gap: 18px; }
}
@media (max-width: 480px) {
  .pk-court-body  { padding: 18px 18px 22px; }
  .pk-surf-body   { padding: 18px 18px 22px; }
  .pk-roi-sliders,
  .pk-roi-results { padding: 20px; }
}
