/*
Theme Name: Akire
Theme URI: https://akire.cz
Author: Akire Team
Author URI: https://akire.cz
Description: Custom WordPress theme for Akire
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: akire
*/

/* ==========================================================================
   Base Styles
   ========================================================================== */

:root {
  /* Colors */
  --color-primary: #EF7D17; /* energetická oranžová */
  --color-primary-hover: #E7411B; /* tepelná červená */
  --color-blue: #232D79; /* Akire modrá */
  --color-dark: #2b2b2b;
  --color-black: #000C12; /*  syta černá */
  --color-white: #ffffff;
  --color-gray: #DFEAF2; /* černá podkladová */
  --color-gray-2: #1B1F26; /* černá typografická */
  --color-gray-dark: #474747;
  --color-gray-light: #f6f6f6;
  --color-gray-lighter: #c4c4c4;
  --color-cold: #A6CCFF; /* chladící modrá */
  --color-tech: #7075AF; /* technologická modrá */
  --color-neutral: #99ACBF; /* neutrální černá */
  --color-grafit: #2E364D; /* grafitová černá */

  /* barvy s poznámkou z brandmanualu pro design */


  /* Typography */
  --font-primary: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container-width: 1240px;

  /* Spacing Scale */
  --spacing-0: 0;
  --spacing-1: 4px;
  --spacing-2: 8px;
  --spacing-3: 12px;
  --spacing-4: 16px;
  --spacing-5: 20px;
  --spacing-6: 24px;
  --spacing-7: 28px;
  --spacing-8: 32px;
  --spacing-10: 40px;
  --spacing-12: 48px;
  --spacing-16: 64px;
  --spacing-20: 80px;
  --spacing-24: 96px;
  --spacing-32: 128px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  color: var(--color-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* WordPress Admin Bar Fix */
body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

main,
.site-main,
#main-content {
  flex: 1 0 auto;
}
/* ==========================================================================
   Container
   ========================================================================== */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
}

/* Match header width to the hero section width */
.site-header .container {
  max-width: var(--container-width);
}

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

.site-logo {
  display: flex;
  align-items: center;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.desktop-only {
  display: flex;
  align-items: center;
}

.mobile-menu-contact,
.mobile-menu-blog {
  display: none;
}

/* Header Right Section (Blog + Kontakt) */
.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-blog-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-right: 16px;
}

.header-blog-link:hover {
  color: var(--color-primary-hover);
}

.header-blog-link.current-menu-item {
  color: var(--color-primary);
}

.site-logo img {
    height: 77px;
    width: auto;
    min-height: 63px;
    transition: opacity 0.3s ease;
    padding: 15px;
}

.site-logo img:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .site-logo img {
    height: 35px;
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span {
  background: var(--color-dark);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

.desktop-only {
  display: block;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-menu-contact,
  .mobile-menu-blog {
    display: block;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    padding: 60px 20px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.35s ease,
      visibility 0.35s ease;
  }

  .main-navigation.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 500px;
    align-items: center;
    margin-top: -20px;
    transform: translateY(-20%) scale(1.3);
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.4s ease,
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .main-navigation.active .nav-menu li {
    opacity: 1;
    transform: translateY(0);
  }

  .main-navigation.active .nav-menu li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .main-navigation.active .nav-menu li:nth-child(2) {
    transition-delay: 0.2s;
  }

  .main-navigation.active .nav-menu li:nth-child(3) {
    transition-delay: 0.3s;
  }

  .main-navigation.active .nav-menu li:nth-child(4) {
    transition-delay: 0.4s;
  }

  .main-navigation.active .nav-menu li:nth-child(5) {
    transition-delay: 0.5s;
  }

  .nav-menu a {
    font-size: 36px;
    line-height: 1.1;
    padding: 8px 0;
    border-bottom: none;
    display: block;
    color: var(--color-dark);
    font-weight: 600;
    transition:
      color 0.3s ease,
      transform 0.35s ease;
  }

  .nav-menu .btn-orange-icon {
    color: var(--color-white) !important;
    padding: 12px 51px;
    display: inline-flex !important;
    width: auto;
  }

  .nav-menu a:hover {
    color: var(--color-primary-hover);
    transform: translateX(10px);
  }

  .nav-menu .btn-orange-icon:hover {
    color: var(--color-white) !important;
    background: var(--color-primary-hover);
    transform: none;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 48px;
  margin: 0;
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 32px;
  }
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-menu a:hover {
  color: var(--color-primary-hover);
}

.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
  color: var(--color-primary);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 18px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

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

/* Orange button with icon */
.btn-orange-icon {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  padding-right: 41px;
}

.btn-orange-icon:hover {
  background: var(--color-primary-hover);
}

.btn-orange-icon .btn-icon {
  width: 30px;
  height: 28px;
  display: block;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-secondary {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-secondary:hover {
  opacity: 0.9;
}

.btn-white {
  background: var(--color-white);
  color: var(--color-black);
}

.btn-white:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

.btn-outline:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 80px;
  padding: 36px 0 56px;
  overflow-x: clip;
  isolation: isolate;
}

/* Brand pattern decoration (bottom-right, continues beyond the section) */
.hero-pattern-bg {
  position: absolute;
  top: -90px;
  right: -90px;
  width: clamp(420px, 44vw, 680px);
  height: auto;
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
  transform: rotate(-10deg);
  transform-origin: top right;
  -webkit-mask-image: radial-gradient(150% 150% at 100% 0%, #000 72%, transparent 100%);
  mask-image: radial-gradient(150% 150% at 100% 0%, #000 72%, transparent 100%);
}

@media (max-width: 768px) {
  .hero-pattern-bg {
    display: none;
  }
}

/* Scroll-down cue (desktop only) */
.hero-scroll-cue {
  display: none;
}

@media (min-width: 1200px) {
  .hero-scroll-cue {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(239, 125, 23, 0.3);
    box-shadow: 0 10px 24px -12px rgba(0, 12, 18, 0.35);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    z-index: 3;
    cursor: pointer;
    animation: heroScrollBounce 1.9s ease-in-out infinite;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }
  .hero-scroll-cue:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
  }
  .hero-scroll-cue svg {
    width: 22px;
    height: 22px;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue { animation: none; }
}

@media (min-width: 768px) {
  .hero-section {
    padding: 56px 0 64px;
  }
}

@media (min-width: 1200px) {
  .hero-section {
    padding: 48px 0 64px;
    min-height: 80vh;
  }
}

/* Hero foreground decoration (watermark) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero-decoration-left {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 440px;
  opacity: 0.05;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero-decoration-left {
    display: none;
  }
}

/* Page-wide ambient gradient background (homepage) */
body.home {
  position: relative;
}

body.home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    /* top layer: white fade that lightens the aura toward the bottom of the page */
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.5) 58%, rgba(255, 255, 255, 0.92) 100%),
    radial-gradient(58% 42% at 6% 3%, rgba(239, 125, 23, 0.11) 0%, transparent 68%),
    radial-gradient(55% 40% at 96% 14%, rgba(166, 204, 255, 0.34) 0%, transparent 70%),
    radial-gradient(60% 40% at 0% 36%, rgba(112, 117, 175, 0.20) 0%, transparent 68%),
    radial-gradient(55% 38% at 100% 56%, rgba(239, 125, 23, 0.10) 0%, transparent 68%),
    radial-gradient(62% 42% at 4% 76%, rgba(166, 204, 255, 0.30) 0%, transparent 70%),
    radial-gradient(55% 40% at 99% 93%, rgba(231, 65, 27, 0.14) 0%, transparent 70%);
}

/* Page decoration for subpages (outline version) */
.page-technologie,
.reference-archive,
.page-pro-profesionaly,
.blog-archive {
  position: relative;
  overflow: hidden;
}

.page-decoration {
  position: absolute;
  left: 0;
  top: 250px;
  width: auto;
  height: 350px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

@media (max-width: 1400px) {
  .page-decoration {
    height: 280px;
    opacity: 0.4;
  }
}

@media (max-width: 1024px) {
  .page-decoration {
    display: none;
  }
}

/* Reference archive - posun dekorace níže k sekci partnerů */
.reference-archive .page-decoration {
  top: auto;
  bottom: 1200px;
}

/* Hero grid: text left, video right */
.hero-section > .container {
  width: 100%;
  max-width: var(--container-width);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

@media (min-width: 1200px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 56px;
  }
}

/* ---------- Left column ---------- */
.hero-section .hero-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 1200px) {
  .hero-section .hero-content {
    margin: 0;
    text-align: left;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 13px;
  border-radius: 9999px;
  background: rgba(239, 125, 23, 0.08);
  border: 1px solid rgba(239, 125, 23, 0.22);
  color: var(--color-primary-hover);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: heroPulseDot 2.4s ease-out infinite;
}

.hero-section .hero-title {
  max-width: 16ch;
  margin: 0 0 clamp(18px, 1.6vw, 26px);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-black);
  opacity: 0;
  animation: heroRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

@media (max-width: 1199px) {
  .hero-section .hero-title {
    max-width: none;
  }
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
  font-weight: 500;
  color: #EF7D17;
  background: linear-gradient(96deg, #EF7D17 0%, #E7411B 88%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .highlight svg {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: auto;
}

.hero-section .hero-subtitle {
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.55;
  color: var(--color-gray-2);
  text-align: center;
  opacity: 0;
  animation: heroRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}

@media (min-width: 1200px) {
  .hero-section .hero-subtitle {
    margin: 0 0 clamp(28px, 2.5vw, 40px);
    text-align: left;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  opacity: 0;
  animation: heroRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.24s forwards;
}

@media (min-width: 1200px) {
  .hero-cta { justify-content: flex-start; }
}

.hero-cta .btn {
  padding: 13px 26px;
  font-size: 15px;
}

.hero-cta .btn-orange-icon {
  padding-right: 56px;
  box-shadow: 0 10px 24px -8px rgba(239, 125, 23, 0.55);
}

.hero-cta .btn-orange-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(231, 65, 27, 0.6);
}

.hero-cta .btn-orange-icon:hover .btn-icon {
  transform: translateY(-50%) translateX(3px);
}

/* Feature chips */
.hero-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  opacity: 0;
  animation: heroRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.32s forwards;
}

@media (min-width: 1200px) {
  .hero-features { justify-content: flex-start; }
}

.hero-features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-dark);
}

.hero-features svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: var(--color-primary);
}

/* ---------- Right column: video ---------- */
.hero-media {
  position: relative;
  opacity: 0;
  animation: heroFadeScale 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.hero-video {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-grafit);
  box-shadow: 0 16px 36px -26px rgba(0, 12, 18, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  animation: heroFloatMedia 7s ease-in-out 1.1s infinite;
}

@media (min-width: 1200px) {
  .hero-video {
    max-width: none;
    border-radius: 26px;
  }
}

.hero-video .video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 12, 18, 0.05) 0%, rgba(0, 12, 18, 0.45) 100%);
  transition: background 0.3s ease;
}

.hero-video:hover .video-overlay {
  background: linear-gradient(180deg, rgba(0, 12, 18, 0.12) 0%, rgba(0, 12, 18, 0.55) 100%);
}

.video-play-button {
  position: relative;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: transparent;
  border: none;
  padding: 0;
}

@media (min-width: 768px) {
  .video-play-button {
    width: 100px;
    height: 100px;
  }
}

.video-play-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239, 125, 23, 0.5);
  animation: heroPlayPulse 2.2s ease-out infinite;
}

.video-play-button:hover {
  transform: scale(1.08);
}

.video-play-button img {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.hero-video-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-black);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 20px -8px rgba(0, 12, 18, 0.45);
}

.hero-video-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ---------- Hero animations ---------- */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeScale {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroPulseDot {
  0% { box-shadow: 0 0 0 0 rgba(239, 125, 23, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(239, 125, 23, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 125, 23, 0); }
}

@keyframes heroPlayPulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 125, 23, 0.5); }
  70% { box-shadow: 0 0 0 22px rgba(239, 125, 23, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 125, 23, 0); }
}

@keyframes heroFloatMedia {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-section .hero-title,
  .hero-section .hero-subtitle,
  .hero-cta,
  .hero-features,
  .hero-media {
    animation: none;
    opacity: 1;
  }

  .hero-eyebrow-dot,
  .hero-video,
  .hero-media::before,
  .video-play-button::before {
    animation: none;
  }
}

/* ==========================================================================
   Content Sections
   ========================================================================== */

.content-section {
  padding: 32px 0;
}

@media (min-width: 768px) {
  .content-section {
    padding: 48px 0;
  }
}

.kariera-page .content-section {
  padding: 0;
}

/* Remove padding-top from testimonials section on homepage */
#testimonials-container .content-section {
  padding-top: 0;
}

.section-title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 28px;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 42px;
  }
}

@media (min-width: 1024px) {
  .section-title {
    text-align: left;
  }
}

/* ==========================================================================
   Product Cards (Přizpůsobí se typu stavby)
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.product-card {
  cursor: pointer;
}

.product-card-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.product-card:hover .product-card-image {
  box-shadow: 0 8px 24px rgba(255, 114, 0, 0.25);
  transform: translateY(-4px);
}

.product-card-image img {
  width: 100%;
  height: 231px;
  object-fit: cover;
  object-position: right bottom;
}

.product-card-label {
  position: absolute;
  top: 11px;
  left: 14px;
  color: var(--color-white);
  font-size: 23px;
  letter-spacing: 0.75px;
  opacity: 0.8;
  font-weight: 400;
}

.product-card-description {
  width: 91%;
  text-align: center;
  color: var(--color-gray-2);
  font-size: 20px;
  line-height: 1.3;
  margin: 0 auto;
}

/* ==========================================================================
   Features Cards (Hlavní výhody)
   ========================================================================== */

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

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

.feature-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 12, 18, 0.06);
  box-shadow: 0 10px 30px -18px rgba(0, 12, 18, 0.25);
  border-radius: 16px;
  padding: 24px 20px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 !important;
  line-height: 1.3;
  color: var(--color-black);
}

.feature-card > p {
  color: var(--color-gray-2);
  font-size: 14px;
  margin-bottom: 9px;
  line-height: 1.3;
}

.feature-list-title {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.2;
}

.feature-visual {
  background: var(--color-white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: visible;
}

.feature-note {
  gap: 8px;
  background: var(--color-white);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-size: 12px;
  color: var(--color-gray-2);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 20px;
  flex-shrink: 0;
}

/* Features (Figma detailed) */
.feature-sub {
  color: var(--color-gray-dark);
  font-size: 14px;
  margin: 2px 0 10px;
}

.visual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
}

/* Donut (approx 80% ring) */
.donut {
  width: 152px;
  height: 152px;
  position: relative;
  margin: 8px auto;
}

.donut-svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(-90deg);
  overflow: visible;
}
.donut-track,
.donut-progress {
  fill: none;
  stroke-width: 14;
}
.donut-track {
  stroke: #e9e9e9;
}
/* circumference for r=45 is ~282.6 */
.donut-progress {
  stroke: var(--color-primary);
  stroke-linecap: round;
  stroke-dasharray: 282.6;
  stroke-dashoffset: 282.6;
  transition: stroke-dashoffset 2.5s ease-out;
}

.donut.animated .donut-progress {
  stroke-dashoffset: calc(282.6 * 0.2);
}

.donut-inner {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.donut-label {
  color: var(--color-gray-2);
  font-size: 14px;
  line-height: 1.2;
}

.visual-aside-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 12px;
  position: absolute;
  top: 10px;
  line-height: 1.2;
}

.feature-note p {
  margin: 0;
}

.visual-aside .feature-note {
  position: absolute;
  right: -8px;
  bottom: -49px;
  z-index: 2;
  width: 106px;
  line-height: 1.2;
}

.note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Bars comparison */
.visual-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 6px;
}

.bar-chart {
  margin-top: 6px;
  display: flex;
  width: 100%;
  transform: scale(1.25) translateX(26px);
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 78px;
  margin: 0;
  justify-content: end;
  margin-right: 8px;
}

.bar {
  display: inline-block;
  width: 34px;
  background: var(--color-blue);
  border-radius: 2px;
  height: 0;
  transition: height 2s ease-out;
}

.feature-visual.animated .bar-1 {
  height: 68px;
}

.feature-visual.animated .bar-2 {
  height: 56px;
  width: 32px;
}

.feature-visual.animated .bar-3 {
  height: 74px;
}

.bar-2 {
  width: 32px;
}

.legend-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  align-self: end;
  justify-self: end;
  min-width: max-content;
  height: 78px;
  padding-bottom: 0;
  flex-direction: column;
}

.mini-bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: auto;
}

.mini-bar {
  display: inline-block;
  width: 34px;
  height: 0;
  background: var(--color-primary);
  border-radius: 2px;
  transition: height 2s ease-out;
}

.feature-visual.animated .mini-bar:nth-child(1) {
  height: 8px;
}

.feature-visual.animated .mini-bar:nth-child(2) {
  height: 11px;
}

.legend-text {
  font-size: 10px;
  color: var(--color-gray-2);
  margin-bottom: 6px;
  line-height: 1.3;
  display: block;
  max-width: 100px;
  text-align: center;
  margin-left: -10px;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .bar-chart {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .visual-aside .feature-note {
    bottom: -16px;
  }
}

/* Center and size the inner white box in the middle card similar to Figma */
.features-grid .feature-card:nth-child(2) .feature-visual {
  max-width: 313px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px;
}

.chart-caption {
  color: var(--color-gray-2);
  font-size: 13px;
  margin: 8px 0 10px;
}

.micro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
}

.micro-card {
  background: rgba(32, 94, 227, 0.08);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.feature-visual.animated .micro-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.feature-visual.animated .micro-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.feature-visual.animated .micro-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.micro-stat .num {
  color: var(--color-blue);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.micro-stat .desc {
  color: var(--color-black);
  font-size: 10px;
  line-height: 1.2;
}

.micro-arrow {
  position: absolute;
  top: -10px;
  left: -8px;
  width: 22px;
  height: 22px;
  display: block;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.5) rotate(-45deg);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.feature-visual.animated .micro-card:nth-child(2) .micro-arrow {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition-delay: 0.7s;
}

.feature-visual.animated .micro-card:nth-child(3) .micro-arrow {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition-delay: 1s;
}

.micro-stats .micro-card:nth-child(2) .micro-arrow,
.micro-stats .micro-card:nth-child(3) .micro-arrow {
  left: -17px;
  top: -4px;
}

/* Simplicity card */
.device-rect {
  width: 111px;
  height: 203px;
  border-radius: 18px;
  overflow: hidden;
}

.device-rect img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.feature-list {
  color: var(--color-gray-2);
  font-size: 12px;
}
.feature-list-title {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.feature-list ul {
  padding-left: 18px;
  margin: 0;
}
.feature-list li {
  margin-bottom: 6px;
}

/* ==========================================================================
   Gallery (Ukázky realizací)
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 27px;
}

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

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}

.gallery-item p {
  color: var(--color-gray-2);
  font-size: 16px;
}

@media (min-width: 768px) {
  .gallery-item p {
    font-size: 18px;
  }
}

.gallery-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */

.partners-section {
  padding: 48px 0;
  background: var(--color-white);
}

.partners-section .section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .partners-section .section-title {
    font-size: 34px;
  }
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  align-items: center;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
  }
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
}

.partner-logo img {
  width: 100%;
  height: 56px;
  object-fit: contain;
}

/* ==========================================================================
   Associations Section
   ========================================================================== */

.associations-section {
  padding: 48px 0;
  background: var(--color-white);
}

.associations-section .section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .associations-section .section-title {
    font-size: 34px;
  }
}

.associations-grid {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.association-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 80px;
}

.association-logo img {
  width: 100%;
  height: 56px;
  object-fit: contain;
}

/* ==========================================================================
   Testimonials (Reference zákazníků)
   ========================================================================== */

.testimonials-grid {
  column-count: 1;
  column-gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    column-count: 3;
  }
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 12, 18, 0.06);
  box-shadow: 0 10px 30px -18px rgba(0, 12, 18, 0.25);
  border-radius: 16px;
  padding: 24px;
  display: inline-block;
  width: 100%;
  margin-bottom: 24px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
}

.testimonial-stars {
  display: flex;
  gap: 0;
  margin-bottom: 8px;
}

.testimonial-stars svg {
  width: 19px;
  height: 19px;
  fill: var(--color-primary);
  color: var(--color-primary);
}

.testimonial-author {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 8px;
}

.testimonial-text {
  color: var(--color-gray-dark);
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================================================
   Footer CTA Section
   ========================================================================== */

.site-footer {
  position: relative;
  margin-top: 56px;
  background: linear-gradient(180deg, #232D79 0%, #131835 100%);
  color: var(--color-white);
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}

.site-footer .container {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
}

/* Soft ambient glow tying the ribbon into the body */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(42% 70% at 100% 0%, rgba(239, 125, 23, 0.12), transparent 60%),
    radial-gradient(42% 70% at 0% 0%, rgba(35, 45, 121, 0.35), transparent 60%);
}

/* Brand pattern decoration */
.footer-decoration {
  position: absolute;
  top: -50px;
  right: -70px;
  width: clamp(280px, 34vw, 460px);
  height: auto;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(215deg, #000 0%, rgba(0, 0, 0, 0.4) 45%, transparent 78%);
  mask-image: linear-gradient(215deg, #000 0%, rgba(0, 0, 0, 0.4) 45%, transparent 78%);
}

@media (max-width: 768px) {
  .footer-decoration {
    top: -30px;
    right: -90px;
    opacity: 0.35;
  }
}

/* Layout */
.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 56px 0 8px;
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    padding: 60px 0 16px;
  }
}

/* Left column */
.footer-logo img {
  height: 58px;
  width: auto;
  margin-bottom: 28px;
}

.footer-claim {
  max-width: 520px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-white);
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .footer-claim {
    font-size: 30px;
  }
}

.footer-claim .highlight {
  position: relative;
  display: inline-block;
}

.footer-claim .highlight svg {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
}

.footer-claim-sub {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

.footer-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.footer-meta p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-meta a:hover {
  color: var(--color-primary);
}

/* Right column */
.footer-aside {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

@media (min-width: 1024px) {
  .footer-aside {
    justify-self: end;
    gap: 56px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.footer-col a {
  font-size: 15px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.85);
}

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

@media (max-width: 767px) {
  .footer-col a {
    line-height: 1.2;
  }

  .footer-main {
    gap: 35px;
  }

  .site-footer .btn {
    font-size: 14px;
  }

  .footer-claim {
    font-size: 23px;
  }

  .footer-logo img {
    height: 42px;
  }
}

/* Partner logo (úsporami.cz) */
.footer-partner {
  margin-top: 8px;
}

@media (min-width: 600px) {
  .footer-partner {
    grid-column: 1 / -1;
  }
}

.footer-partner-logo {
  display: inline-flex;
  align-items: center;
  background: var(--color-white);
  border-radius: 12px;
  padding: 0 10px;
  transition: opacity 0.2s ease;
}

.footer-partner-logo:hover {
  opacity: 0.85;
}

.footer-partner-logo img {
  height: 72px;
  width: auto;
  display: block;
}

/* Copyright */
.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 36px;
  padding: 24px 0 28px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

/* Margin Utilities */
/* Margin All Sides */
.m-0 {
  margin: var(--spacing-0) !important;
}
.m-1 {
  margin: var(--spacing-1) !important;
}
.m-2 {
  margin: var(--spacing-2) !important;
}
.m-3 {
  margin: var(--spacing-3) !important;
}
.m-4 {
  margin: var(--spacing-4) !important;
}
.m-5 {
  margin: var(--spacing-5) !important;
}
.m-6 {
  margin: var(--spacing-6) !important;
}
.m-7 {
  margin: var(--spacing-7) !important;
}
.m-8 {
  margin: var(--spacing-8) !important;
}
.m-10 {
  margin: var(--spacing-10) !important;
}
.m-12 {
  margin: var(--spacing-12) !important;
}
.m-16 {
  margin: var(--spacing-16) !important;
}
.m-20 {
  margin: var(--spacing-20) !important;
}
.m-24 {
  margin: var(--spacing-24) !important;
}
.m-32 {
  margin: var(--spacing-32) !important;
}

/* Margin Top */
.mt-0 {
  margin-top: var(--spacing-0) !important;
}
.mt-1 {
  margin-top: var(--spacing-1) !important;
}
.mt-2 {
  margin-top: var(--spacing-2) !important;
}
.mt-3 {
  margin-top: var(--spacing-3) !important;
}
.mt-4 {
  margin-top: var(--spacing-4) !important;
}
.mt-5 {
  margin-top: var(--spacing-5) !important;
}
.mt-6 {
  margin-top: var(--spacing-6) !important;
}
.mt-7 {
  margin-top: var(--spacing-7) !important;
}
.mt-8 {
  margin-top: var(--spacing-8) !important;
}
.mt-10 {
  margin-top: var(--spacing-10) !important;
}
.mt-12 {
  margin-top: var(--spacing-12) !important;
}
.mt-16 {
  margin-top: var(--spacing-16) !important;
}
.mt-20 {
  margin-top: var(--spacing-20) !important;
}
.mt-24 {
  margin-top: var(--spacing-24) !important;
}
.mt-32 {
  margin-top: var(--spacing-32) !important;
}

/* Margin Bottom */
.mb-0 {
  margin-bottom: var(--spacing-0) !important;
}
.mb-1 {
  margin-bottom: var(--spacing-1) !important;
}
.mb-2 {
  margin-bottom: var(--spacing-2) !important;
}
.mb-3 {
  margin-bottom: var(--spacing-3) !important;
}
.mb-4 {
  margin-bottom: var(--spacing-4) !important;
}
.mb-5 {
  margin-bottom: var(--spacing-5) !important;
}
.mb-6 {
  margin-bottom: var(--spacing-6) !important;
}
.mb-7 {
  margin-bottom: var(--spacing-7) !important;
}
.mb-8 {
  margin-bottom: var(--spacing-8) !important;
}
.mb-10 {
  margin-bottom: var(--spacing-10) !important;
}
.mb-12 {
  margin-bottom: var(--spacing-12) !important;
}
.mb-16 {
  margin-bottom: var(--spacing-16) !important;
}
.mb-20 {
  margin-bottom: var(--spacing-20) !important;
}
.mb-24 {
  margin-bottom: var(--spacing-24) !important;
}
.mb-32 {
  margin-bottom: var(--spacing-32) !important;
}

/* Margin Left */
.ml-0 {
  margin-left: var(--spacing-0) !important;
}
.ml-1 {
  margin-left: var(--spacing-1) !important;
}
.ml-2 {
  margin-left: var(--spacing-2) !important;
}
.ml-3 {
  margin-left: var(--spacing-3) !important;
}
.ml-4 {
  margin-left: var(--spacing-4) !important;
}
.ml-5 {
  margin-left: var(--spacing-5) !important;
}
.ml-6 {
  margin-left: var(--spacing-6) !important;
}
.ml-7 {
  margin-left: var(--spacing-7) !important;
}
.ml-8 {
  margin-left: var(--spacing-8) !important;
}
.ml-10 {
  margin-left: var(--spacing-10) !important;
}
.ml-12 {
  margin-left: var(--spacing-12) !important;
}
.ml-16 {
  margin-left: var(--spacing-16) !important;
}
.ml-20 {
  margin-left: var(--spacing-20) !important;
}
.ml-24 {
  margin-left: var(--spacing-24) !important;
}
.ml-32 {
  margin-left: var(--spacing-32) !important;
}

/* Margin Right */
.mr-0 {
  margin-right: var(--spacing-0) !important;
}
.mr-1 {
  margin-right: var(--spacing-1) !important;
}
.mr-2 {
  margin-right: var(--spacing-2) !important;
}
.mr-3 {
  margin-right: var(--spacing-3) !important;
}
.mr-4 {
  margin-right: var(--spacing-4) !important;
}
.mr-5 {
  margin-right: var(--spacing-5) !important;
}
.mr-6 {
  margin-right: var(--spacing-6) !important;
}
.mr-7 {
  margin-right: var(--spacing-7) !important;
}
.mr-8 {
  margin-right: var(--spacing-8) !important;
}
.mr-10 {
  margin-right: var(--spacing-10) !important;
}
.mr-12 {
  margin-right: var(--spacing-12) !important;
}
.mr-16 {
  margin-right: var(--spacing-16) !important;
}
.mr-20 {
  margin-right: var(--spacing-20) !important;
}
.mr-24 {
  margin-right: var(--spacing-24) !important;
}
.mr-32 {
  margin-right: var(--spacing-32) !important;
}

/* Margin Horizontal (left + right) */
.mx-0 {
  margin-left: var(--spacing-0) !important;
  margin-right: var(--spacing-0) !important;
}
.mx-1 {
  margin-left: var(--spacing-1) !important;
  margin-right: var(--spacing-1) !important;
}
.mx-2 {
  margin-left: var(--spacing-2) !important;
  margin-right: var(--spacing-2) !important;
}
.mx-3 {
  margin-left: var(--spacing-3) !important;
  margin-right: var(--spacing-3) !important;
}
.mx-4 {
  margin-left: var(--spacing-4) !important;
  margin-right: var(--spacing-4) !important;
}
.mx-5 {
  margin-left: var(--spacing-5) !important;
  margin-right: var(--spacing-5) !important;
}
.mx-6 {
  margin-left: var(--spacing-6) !important;
  margin-right: var(--spacing-6) !important;
}
.mx-8 {
  margin-left: var(--spacing-8) !important;
  margin-right: var(--spacing-8) !important;
}
.mx-10 {
  margin-left: var(--spacing-10) !important;
  margin-right: var(--spacing-10) !important;
}
.mx-12 {
  margin-left: var(--spacing-12) !important;
  margin-right: var(--spacing-12) !important;
}
.mx-16 {
  margin-left: var(--spacing-16) !important;
  margin-right: var(--spacing-16) !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Margin Vertical (top + bottom) */
.my-0 {
  margin-top: var(--spacing-0) !important;
  margin-bottom: var(--spacing-0) !important;
}
.my-1 {
  margin-top: var(--spacing-1) !important;
  margin-bottom: var(--spacing-1) !important;
}
.my-2 {
  margin-top: var(--spacing-2) !important;
  margin-bottom: var(--spacing-2) !important;
}
.my-3 {
  margin-top: var(--spacing-3) !important;
  margin-bottom: var(--spacing-3) !important;
}
.my-4 {
  margin-top: var(--spacing-4) !important;
  margin-bottom: var(--spacing-4) !important;
}
.my-5 {
  margin-top: var(--spacing-5) !important;
  margin-bottom: var(--spacing-5) !important;
}
.my-6 {
  margin-top: var(--spacing-6) !important;
  margin-bottom: var(--spacing-6) !important;
}
.my-8 {
  margin-top: var(--spacing-8) !important;
  margin-bottom: var(--spacing-8) !important;
}
.my-10 {
  margin-top: var(--spacing-10) !important;
  margin-bottom: var(--spacing-10) !important;
}
.my-12 {
  margin-top: var(--spacing-12) !important;
  margin-bottom: var(--spacing-12) !important;
}
.my-16 {
  margin-top: var(--spacing-16) !important;
  margin-bottom: var(--spacing-16) !important;
}

/* Padding Utilities */
/* Padding All Sides */
.p-0 {
  padding: var(--spacing-0) !important;
}
.p-1 {
  padding: var(--spacing-1) !important;
}
.p-2 {
  padding: var(--spacing-2) !important;
}
.p-3 {
  padding: var(--spacing-3) !important;
}
.p-4 {
  padding: var(--spacing-4) !important;
}
.p-5 {
  padding: var(--spacing-5) !important;
}
.p-6 {
  padding: var(--spacing-6) !important;
}
.p-7 {
  padding: var(--spacing-7) !important;
}
.p-8 {
  padding: var(--spacing-8) !important;
}
.p-10 {
  padding: var(--spacing-10) !important;
}
.p-12 {
  padding: var(--spacing-12) !important;
}
.p-16 {
  padding: var(--spacing-16) !important;
}
.p-20 {
  padding: var(--spacing-20) !important;
}
.p-24 {
  padding: var(--spacing-24) !important;
}
.p-32 {
  padding: var(--spacing-32) !important;
}

/* Padding Top */
.pt-0 {
  padding-top: var(--spacing-0) !important;
}
.pt-1 {
  padding-top: var(--spacing-1) !important;
}
.pt-2 {
  padding-top: var(--spacing-2) !important;
}
.pt-3 {
  padding-top: var(--spacing-3) !important;
}
.pt-4 {
  padding-top: var(--spacing-4) !important;
}
.pt-5 {
  padding-top: var(--spacing-5) !important;
}
.pt-6 {
  padding-top: var(--spacing-6) !important;
}
.pt-7 {
  padding-top: var(--spacing-7) !important;
}
.pt-8 {
  padding-top: var(--spacing-8) !important;
}
.pt-10 {
  padding-top: var(--spacing-10) !important;
}
.pt-12 {
  padding-top: var(--spacing-12) !important;
}
.pt-16 {
  padding-top: var(--spacing-16) !important;
}
.pt-20 {
  padding-top: var(--spacing-20) !important;
}
.pt-24 {
  padding-top: var(--spacing-24) !important;
}
.pt-32 {
  padding-top: var(--spacing-32) !important;
}

/* Padding Bottom */
.pb-0 {
  padding-bottom: var(--spacing-0) !important;
}
.pb-1 {
  padding-bottom: var(--spacing-1) !important;
}
.pb-2 {
  padding-bottom: var(--spacing-2) !important;
}
.pb-3 {
  padding-bottom: var(--spacing-3) !important;
}
.pb-4 {
  padding-bottom: var(--spacing-4) !important;
}
.pb-5 {
  padding-bottom: var(--spacing-5) !important;
}
.pb-6 {
  padding-bottom: var(--spacing-6) !important;
}
.pb-7 {
  padding-bottom: var(--spacing-7) !important;
}
.pb-8 {
  padding-bottom: var(--spacing-8) !important;
}
.pb-10 {
  padding-bottom: var(--spacing-10) !important;
}
.pb-12 {
  padding-bottom: var(--spacing-12) !important;
}
.pb-16 {
  padding-bottom: var(--spacing-16) !important;
}
.pb-20 {
  padding-bottom: var(--spacing-20) !important;
}
.pb-24 {
  padding-bottom: var(--spacing-24) !important;
}
.pb-32 {
  padding-bottom: var(--spacing-32) !important;
}

/* Padding Left */
.pl-0 {
  padding-left: var(--spacing-0) !important;
}
.pl-1 {
  padding-left: var(--spacing-1) !important;
}
.pl-2 {
  padding-left: var(--spacing-2) !important;
}
.pl-3 {
  padding-left: var(--spacing-3) !important;
}
.pl-4 {
  padding-left: var(--spacing-4) !important;
}
.pl-5 {
  padding-left: var(--spacing-5) !important;
}
.pl-6 {
  padding-left: var(--spacing-6) !important;
}
.pl-7 {
  padding-left: var(--spacing-7) !important;
}
.pl-8 {
  padding-left: var(--spacing-8) !important;
}
.pl-10 {
  padding-left: var(--spacing-10) !important;
}
.pl-12 {
  padding-left: var(--spacing-12) !important;
}
.pl-16 {
  padding-left: var(--spacing-16) !important;
}
.pl-20 {
  padding-left: var(--spacing-20) !important;
}
.pl-24 {
  padding-left: var(--spacing-24) !important;
}
.pl-32 {
  padding-left: var(--spacing-32) !important;
}

/* Padding Right */
.pr-0 {
  padding-right: var(--spacing-0) !important;
}
.pr-1 {
  padding-right: var(--spacing-1) !important;
}
.pr-2 {
  padding-right: var(--spacing-2) !important;
}
.pr-3 {
  padding-right: var(--spacing-3) !important;
}
.pr-4 {
  padding-right: var(--spacing-4) !important;
}
.pr-5 {
  padding-right: var(--spacing-5) !important;
}
.pr-6 {
  padding-right: var(--spacing-6) !important;
}
.pr-7 {
  padding-right: var(--spacing-7) !important;
}
.pr-8 {
  padding-right: var(--spacing-8) !important;
}
.pr-10 {
  padding-right: var(--spacing-10) !important;
}
.pr-12 {
  padding-right: var(--spacing-12) !important;
}
.pr-16 {
  padding-right: var(--spacing-16) !important;
}
.pr-20 {
  padding-right: var(--spacing-20) !important;
}
.pr-24 {
  padding-right: var(--spacing-24) !important;
}
.pr-32 {
  padding-right: var(--spacing-32) !important;
}

/* Padding Horizontal (left + right) */
.px-0 {
  padding-left: var(--spacing-0) !important;
  padding-right: var(--spacing-0) !important;
}
.px-1 {
  padding-left: var(--spacing-1) !important;
  padding-right: var(--spacing-1) !important;
}
.px-2 {
  padding-left: var(--spacing-2) !important;
  padding-right: var(--spacing-2) !important;
}
.px-3 {
  padding-left: var(--spacing-3) !important;
  padding-right: var(--spacing-3) !important;
}
.px-4 {
  padding-left: var(--spacing-4) !important;
  padding-right: var(--spacing-4) !important;
}
.px-5 {
  padding-left: var(--spacing-5) !important;
  padding-right: var(--spacing-5) !important;
}
.px-6 {
  padding-left: var(--spacing-6) !important;
  padding-right: var(--spacing-6) !important;
}
.px-8 {
  padding-left: var(--spacing-8) !important;
  padding-right: var(--spacing-8) !important;
}
.px-10 {
  padding-left: var(--spacing-10) !important;
  padding-right: var(--spacing-10) !important;
}
.px-12 {
  padding-left: var(--spacing-12) !important;
  padding-right: var(--spacing-12) !important;
}
.px-16 {
  padding-left: var(--spacing-16) !important;
  padding-right: var(--spacing-16) !important;
}

/* Padding Vertical (top + bottom) */
.py-0 {
  padding-top: var(--spacing-0) !important;
  padding-bottom: var(--spacing-0) !important;
}
.py-1 {
  padding-top: var(--spacing-1) !important;
  padding-bottom: var(--spacing-1) !important;
}
.py-2 {
  padding-top: var(--spacing-2) !important;
  padding-bottom: var(--spacing-2) !important;
}
.py-3 {
  padding-top: var(--spacing-3) !important;
  padding-bottom: var(--spacing-3) !important;
}
.py-4 {
  padding-top: var(--spacing-4) !important;
  padding-bottom: var(--spacing-4) !important;
}
.py-5 {
  padding-top: var(--spacing-5) !important;
  padding-bottom: var(--spacing-5) !important;
}
.py-6 {
  padding-top: var(--spacing-6) !important;
  padding-bottom: var(--spacing-6) !important;
}
.py-8 {
  padding-top: var(--spacing-8) !important;
  padding-bottom: var(--spacing-8) !important;
}
.py-10 {
  padding-top: var(--spacing-10) !important;
  padding-bottom: var(--spacing-10) !important;
}
.py-12 {
  padding-top: var(--spacing-12) !important;
  padding-bottom: var(--spacing-12) !important;
}
.py-16 {
  padding-top: var(--spacing-16) !important;
  padding-bottom: var(--spacing-16) !important;
}

/* ========================================
   KONTAKT PAGE STYLES
   ======================================== */

/* Removed - now using unified .underlined-title-section */

.page-title {
  line-height: 1.2;
}

.page-title .highlight {
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.page-title .highlight svg {
  position: absolute;
  bottom: -15%;
  left: 0;
  width: 100%;
  height: auto;
}

/* Contact page specific - override bottom position */
.kontakt-page .page-title .highlight svg {
  bottom: -3%;
}

/* Contact Info Section */
.contact-info-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 22px;
  text-align: center;
}

.contact-info-container h2 {
  font-family: "Urbanist", sans-serif;
  font-size: 34px;
  font-weight: 400;
  color: #000;
  margin: 0 0 23px;
}

/* Kontakt: formulář vlevo (60%), kontaktní box vpravo (40%) */
.contact-columns {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: start;
  gap: 48px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0;
}

.contact-columns .contact-info-section {
  order: 2;
  padding: 16px 0 40px;
}

.contact-columns .contact-form-section {
  order: 1;
  padding: 16px 0 40px;
}

.contact-columns .contact-info-section .container,
.contact-columns .contact-form-section .container {
  max-width: none;
  margin: 0;
  padding: 0 22px;
}

.contact-columns .contact-info-container {
  max-width: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.contact-columns .contact-box {
  margin: 0;
  width: 100%;
}

.contact-columns .form-header,
.contact-columns .form-description {
  text-align: left;
  margin-left: 0;
}

.contact-columns .contact-form {
  max-width: none;
  margin: 0;
  padding: 0;
}

.contact-columns .checkbox-group {
  justify-content: flex-start;
}

.contact-columns .form-submit {
  text-align: left;
}

@media (max-width: 900px) {
  .contact-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-columns .contact-info-section {
    order: 1;
    padding-top: 40px;
  }

  .contact-columns .contact-form-section {
    order: 2;
  }

  .contact-columns .contact-info-container {
    text-align: center;
  }

  .contact-columns .contact-item-body {
    text-align: left;
  }

  .contact-columns .contact-box {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .contact-columns .form-header,
  .contact-columns .form-description {
    text-align: center;
  }
}

.contact-methods {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-method svg {
  flex-shrink: 0;
}

.contact-link {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  color: #000;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--color-primary);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item + .contact-item {
  margin-top: 50px;
}

.contact-item-icon {
  flex: none;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fbe7d6;
  color: var(--color-primary);
}

.contact-item-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.contact-item-label {
  font-family: "Urbanist", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
}

.contact-item-value {
  font-family: "Urbanist", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  color: #000;
  text-decoration: none;
  margin: 0;
  transition: color 0.3s ease;
}

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

.contact-item-value--text {
  font-weight: 500;
}

.contact-item-note {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
}

.contact-item-map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: inherit;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-item-map-link svg {
  flex: none;
}

.contact-item-map-link:hover {
  opacity: 0.75;
}

.contact-info-section {
  padding: 40px 0 20px;
}

.kontakt-lead {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: var(--color-gray-2);
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.contact-box {
  display: block;
  margin: 0 auto;
  padding: 36px 32px;
  background: var(--color-white);
  border: 1px solid rgba(0, 12, 18, 0.08);
  border-radius: 20px;
  box-shadow: 0 20px 48px -28px rgba(35, 45, 121, 0.25);
  min-width: 63%;
}

@media (max-width: 640px) {
  .kontakt-lead {
    font-size: 18px;
    line-height: 24px;
  }
  .contact-box {
    padding: 24px 22px;
  }
  .contact-item-value {
    font-size: 17px;
  }
  .contact-item + .contact-item {
    margin-top: 28px;
  }
}

/* Contact Form Section */
.contact-form-section {
  padding: 26px 0 80px;
}

.form-message {
  max-width: 735px;
  margin: 0 auto 30px;
  padding: 15px 30px;
  border-radius: 8px;
  text-align: center;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-message p {
  margin: 0;
}

.form-header {
  text-align: center;
  margin-bottom: 18px;
}

.form-header h2 {
  font-family: "Urbanist", sans-serif;
  font-size: 34px;
  font-weight: 400;
  color: #000;
  margin: 0 0 5px;
}

.form-description {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: var(--color-gray-2);
  max-width: 735px;
  margin: 0 auto;
}

.form-description strong {
  font-weight: 700;
}

.contact-form {
  max-width: 1049px;
  margin: 0 auto;
  padding: 0 22px;
}

.form-fields-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-control {
  width: 100%;
  height: 64px;
  padding: 20px 24px;
  background: #fff;
  border: none;
  border-bottom: 3px solid #e0e0e0;
  border-radius: 7px;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  color: #000;
  transition: border-color 0.3s ease;
}

.form-control::placeholder {
  color: var(--color-gray-2);
}

.form-control:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
}

textarea.form-control {
  height: 200px;
  resize: vertical;
  padding-top: 20px;
}

.required-mark {
  position: absolute;
  right: 24px;
  top: 20px;
  color: #eb5757;
  font-size: 18px;
  line-height: 32px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  color: var(--color-gray-2);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

span.wpcf7-form-control-wrap[data-name="souhlas"] {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.form-submit {
  text-align: center;
}

.btn-orange {
  background: var(--color-primary);
  color: #fff;
  padding: 15px 60px;
  border: none;
  border-radius: 84px;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.btn-orange:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.btn-orange:active {
  transform: translateY(0);
}

/* Team Section */
.team-section {
  padding: 20px 0 100px;
  background: #fff;
}

.team-section .section-title {
  font-family: "Urbanist", sans-serif;
  font-size: 34px;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin: 0 0 60px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
  width: calc((100% - 120px) / 4);
}

.team-member-image {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Specific adjustment for Jan Moravec - photo inside circle */
.team-member:nth-child(2) .team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.team-member-name {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0 0 0;
  line-height: 1.3;
}

.team-member-position {
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  color: var(--color-gray-2);
  margin: 0 0 6px;
  line-height: 1.3;
}

.team-member-email,
.team-member-phone {
  display: block;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  color: var(--color-primary);
  text-decoration: underline;
  margin: 0;
  transition: color 0.3s ease;
}

.team-member-email:hover,
.team-member-phone:hover {
  color: var(--color-primary-hover);
}

.team-member-contacts {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .team-grid {
    gap: 40px 30px;
  }

  .team-member {
    width: calc((100% - 30px) / 2);
  }
}

@media (max-width: 768px) {
  .kontakt-header .page-title {
    font-size: 48px;
  }

  .contact-info-container {
    padding: 19px 20px;
  }

  .contact-info-container h2 {
    font-size: 28px;
  }

  .contact-methods {
    flex-direction: column;
    gap: 20px;
  }

  .form-header h2 {
    font-size: 28px;
  }

  .form-description {
    font-size: 18px;
  }

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

  .team-grid {
    gap: 40px;
  }

  .team-member {
    width: 100%;
  }

  .team-section .section-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .kontakt-header .page-title {
    font-size: 36px;
  }

  .contact-info-container h2 {
    font-size: 24px;
  }

  .contact-link {
    font-size: 16px;
  }

  .form-header h2 {
    font-size: 24px;
  }

  .form-description {
    font-size: 16px;
  }

  .contact-form {
    padding: 0 15px;
  }
}

/* ==========================================================================
   Contact Form 7 Custom Styling
   ========================================================================== */

/* CF7 wrapper */
.wpcf7 {
  max-width: 1049px;
  margin: 0 auto;
  padding: 0 22px;
}

/* CF7 form elements inherit our custom styles */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  height: 64px;
  padding: 20px 24px;
  background: #fff;
  border: none;
  border-bottom: 3px solid #e0e0e0;
  border-radius: 7px;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  color: #000;
  transition: border-color 0.3s ease;
}

.wpcf7 textarea {
  height: 200px;
  resize: vertical;
  padding-top: 20px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
}

/* CF7 submit button */
.wpcf7 input[type="submit"] {
  background: var(--color-primary);
  color: #fff;
  padding: 15px 60px;
  border: none;
  border-radius: 84px;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

/* CF7 validation errors */
.wpcf7-not-valid-tip {
  color: #eb5757;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}

.wpcf7-not-valid {
  border-bottom-color: #eb5757 !important;
}

/* CF7 response messages */
.wpcf7-response-output {
  max-width: 735px;
  margin: 30px auto;
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  border: none !important;
}

.wpcf7-mail-sent-ok {
  background: #d4edda;
  color: #155724;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  background: #f8d7da;
  color: #721c24;
}

/* CF7 acceptance checkbox */
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.wpcf7-acceptance input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-right: 10px;
}

/* CF7 spinner */
.wpcf7-spinner {
  margin-left: 10px;
}

/* Hide CF7 default messages positioning */
.wpcf7-response-output {
  margin-top: 20px !important;
}

/* ==========================================================================
   Thank You Page (Děkujeme)
   ========================================================================== */

.dekujeme-section {
  padding: 120px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dekujeme-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.dekujeme-icon {
  margin-bottom: 40px;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.dekujeme-icon svg {
  display: inline-block;
}

.dekujeme-title {
  font-family: "Urbanist", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #000;
  margin: 0 0 24px;
}

.dekujeme-text {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-gray-2);
  margin: 0 0 40px;
}

.dekujeme-actions {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .dekujeme-section {
    padding: 80px 0;
  }

  .dekujeme-icon svg {
    width: 80px;
    height: 80px;
  }

  .dekujeme-title {
    font-size: 32px;
  }

  .dekujeme-text {
    font-size: 18px;
  }
}

/* ==========================================================================
   Reference Archive Page
   ========================================================================== */

.reference-archive {
  background: var(--color-white);
}

/* Underlined Title Section - Universal header for all pages */
.underlined-title-section {
  padding-top: 100px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .underlined-title-section {
    padding-top: 90px;
  }
}

.underlined-title-section .page-title {
  font-family: "Urbanist", sans-serif;
  font-size: 64px;
  font-weight: 400;
  color: #000;
  margin: 0;
  text-align: center;
  margin: 0 auto;
}

/* Subtitle below title */
.underlined-title-section + * .hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--color-gray-2);
  max-width: 800px;
  margin: 20px auto 0;
  text-align: center;
}

@media (max-width: 768px) {
  .underlined-title-section + * .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--color-gray-2);
  max-width: 800px;
  margin: 20px auto 29px;
  text-align: center;
}

/* References Grid Section */
.references-grid-section {
  padding: 12px 0 72px;
}

.references-grid-section .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Featured Reference (Full Width) */
.reference-featured {
  margin-bottom: 40px;
}

.reference-card-featured {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.reference-card-featured:hover {
  transform: translateY(-4px);
}

.reference-card-featured .reference-image {
  width: 100%;
  height: 363px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.reference-card-featured .reference-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reference-card-featured .reference-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 114, 0, 0.05);
  border-radius: 16px;
  pointer-events: none;
}

/* Regular References Grid (3 columns) */
.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.reference-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.reference-card:hover {
  transform: translateY(-4px);
}

.reference-card:hover .reference-arrow circle {
  fill: var(--color-primary);
}

.reference-card:hover .reference-arrow path {
  fill: var(--color-white);
}

.reference-card .reference-image {
  width: 100%;
  height: 231px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.reference-card .reference-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reference-card .reference-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 114, 0, 0.05);
  border-radius: 16px;
  pointer-events: none;
}

/* Reference Info */
.reference-info {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  padding: 0 5px 0 5px;
  gap: 8px;
}

.reference-name {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-gray-2);
  margin: 0;
  line-height: normal;
}

.reference-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

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

.reference-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* No References Message */
.no-references {
  text-align: center;
  padding: 80px 20px;
}

.no-references p {
  font-family: var(--font-primary);
  font-size: 20px;
  color: var(--color-gray-2);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
}

.pagination a,
.pagination span {
  font-family: var(--font-primary);
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination a {
  color: var(--color-dark);
  background: var(--color-gray-light);
}

.pagination a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.pagination .current {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1280px) {
  .reference-hero .container {
    padding: 0 60px;
  }
}

@media (max-width: 1024px) {
  .references-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reference-hero .container {
    padding: 0 40px;
  }

  .reference-hero .page-title {
    font-size: 48px;
  }

  .reference-hero .hero-subtitle {
    font-size: 20px;
  }

  .underlined-title-section .page-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .reference-hero {
    padding-top: 60px;
  }

  .reference-hero .page-title {
    font-size: 36px;
  }

  .reference-hero .hero-subtitle {
    font-size: 18px;
  }

  .reference-hero .container {
    padding: 0 20px;
  }

  .underlined-title-section .page-title {
    font-size: 48px;
  }

  .underlined-title-section .page-title .highlight .title-underline-svg path {
    stroke-width: 2.5 !important;
  }

  .references-grid-section {
    padding: 20px 0 80px;
  }

  .references-grid-section .container {
    padding: 0 20px;
  }

  .references-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reference-featured {
    margin-bottom: 32px;
  }

  .reference-card-featured .reference-image {
    height: 240px;
  }

  .reference-card .reference-image {
    height: 200px;
  }

  .reference-name {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .reference-hero .page-title {
    font-size: 28px;
  }

  .reference-hero .hero-subtitle {
    font-size: 16px;
  }

  .underlined-title-section .page-title {
    font-size: 36px;
  }

  .underlined-title-section .page-title .highlight .title-underline-svg path {
    stroke-width: 2 !important;
  }
}

/* ==========================================================================
   Reference Detail Page
   ========================================================================== */

.reference-single {
  background: var(--color-white);
}

/* Content Section */
.reference-single .htech1 {
  padding-bottom: clamp(36px, 5vw, 56px);
}

.reference-content-section {
  padding: 0 0 120px;
}

.reference-content-section .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Description */
.reference-description {
  max-width: 900px;
  margin: 0 0 60px;
  font-family: var(--font-primary);
  font-size: 19px;
  line-height: 1.6;
  color: var(--color-gray-2);
}

.reference-description p {
  margin: 0 0 20px;
}

.reference-description p:last-child {
  margin-bottom: 0;
}

/* YouTube Video */
.reference-video {
  margin-bottom: 60px;
}

.reference-video-landscape {
  width: 100%;
}

.reference-video-landscape .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
}

.reference-video-landscape .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Shorts Layout - Text + Video side by side */
.reference-shorts-layout {
  display: grid;
  grid-template-columns: 1fr 273px;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

.reference-shorts-text {
  flex: 1;
}

.reference-shorts-text .reference-description {
  margin-bottom: 0;
}

.reference-shorts-video {
  width: 273px;
  flex-shrink: 0;
}

.reference-shorts-video .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 9:16 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
}

.reference-shorts-video .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .reference-shorts-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reference-shorts-video {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}

/* Gallery */
.reference-gallery {
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item a {
  display: block;
  width: 100%;
  aspect-ratio: 343/231;
  border-radius: 16px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item p {
  margin-top: 12px;
  color: var(--color-gray-2);
  font-size: 16px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .gallery-item p {
    font-size: 18px;
  }
}

/* Back Button */
.reference-back {
  text-align: left;
  margin-top: 60px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-back:hover svg path {
  fill: var(--color-white);
}

.btn-back svg {
  transition: fill 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .reference-content-section .container {
    padding: 0 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reference-content-section {
    padding: 40px 0 80px;
  }

  .reference-content-section .container {
    padding: 0 20px;
  }

  .reference-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reference-back {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .reference-description {
    font-size: 14px;
  }

  .btn-back {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* ==========================================================================
   Blog Archive Page
   ========================================================================== */

.blog-archive {
  background: var(--color-white);
  position: relative;
}

/* Blog Archive Hero Styles */
.blog-archive .htech1 {
  padding-top: clamp(118px, 12vw, 150px);
  padding-bottom: clamp(64px, 8vw, 60px);
}

.blog-archive .htech1__pattern {
  top: -4%;
  right: -7%;
}

@media (max-width: 768px) {
  .blog-archive .htech1 {
    padding-top: clamp(104px, 24vw, 128px);
  }
}

/* Blog Grid Section - plynulý přechod z hero */
.blog-grid-section {
  padding: 24px 0 120px;
  position: relative;
  z-index: 1;
}

.blog-grid-section .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Blog Grid (3 columns) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.blog-featured {
  margin-bottom: 40px;
}

.blog-card-featured {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.3s ease;
  border-radius: 16px;
}

.blog-card-featured:hover {
  transform: translateY(-4px);
}

.blog-card-featured .blog-image {
  width: 100%;
  height: 363px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.blog-card-featured .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-featured .blog-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 114, 0, 0.05);
  border-radius: 16px;
  pointer-events: none;
}

/* Blog Card */
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.3s ease;
  border-radius: 16px;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card:hover .blog-arrow circle {
  fill: var(--color-primary);
}

.blog-card:hover .blog-image img {
  transform: scale(1.03);
}

.blog-card .blog-image {
  width: 100%;
  height: 231px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card .blog-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 114, 0, 0.05);
  border-radius: 16px;
  pointer-events: none;
}

/* Blog Info */
.blog-info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 5px 0 5px;
  gap: 8px;
}

.blog-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-gray-2);
  margin: 0;
  line-height: normal;
  flex: 1;
}

.blog-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

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

.blog-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-arrow circle {
  transition: fill 0.3s ease;
}

.blog-arrow path {
  transition: fill 0.3s ease;
}

/* No Posts Message */
.no-posts {
  text-align: center;
  padding: 80px 20px;
}

.no-posts p {
  font-family: var(--font-primary);
  font-size: 20px;
  color: var(--color-gray-2);
}

/* Responsive Design for Blog */
@media (max-width: 1280px) {
  .blog-grid-section .container {
    padding: 0 20px;
  }
  
  .blog-grid {
    gap: 28px;
  }
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .blog-grid-section .container {
    padding: 0 20px;
  }

  .blog-grid-section {
    padding: 24px 0 100px;
  }
  
  .blog-card {
    padding: 10px;
    border-radius: 16px;
  }
  
  .blog-card .blog-image {
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .blog-grid-section {
    padding: 24px 0 80px;
  }

  .blog-grid-section .container {
    padding: 0 20px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .blog-card {
    padding: 8px;
    border-radius: 14px;
    box-shadow: 
      0 2px 6px rgba(35, 45, 121, 0.04),
      0 3px 12px rgba(35, 45, 121, 0.05);
  }
  
  .blog-card .blog-image {
    aspect-ratio: 16 / 11;
    border-radius: 8px;
  }
  
  .blog-info {
    padding: 10px 6px 4px;
  }

  .blog-title {
    font-size: 17px;
  }
  
  .blog-arrow {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 540px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card {
    padding: 10px;
    border-radius: 16px;
  }
  
  .blog-card .blog-image {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
  }
  
  .blog-info {
    padding: 12px 6px 4px;
  }

  .blog-title {
    font-size: 18px;
  }
  
  .blog-grid-section {
    padding: 40px 0 64px;
  }
}

/* ==========================================================================
   Page Single
   ========================================================================== */

.page-single {
  background: var(--color-white);
}

/* Removed - now using unified .underlined-title-section */

/* Page Content Section */
.page-content-section {
  padding: 0;
}

.page-content-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 116px;
}

/* Page Post */
.page-post {
  max-width: 900px;
  margin: 0 auto;
}

.page-post-content {
  font-family: var(--font-primary);
  font-size: 19px;
  line-height: 1.7;
  color: var(--color-gray-2);
  text-align: justify;
}

/* Page content styles */
.page-post-content h1,
.page-post-content h2,
.page-post-content h3,
.page-post-content h4,
.page-post-content h5,
.page-post-content h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.page-post-content h1 {
  font-size: 32px;
}

.page-post-content h2 {
  font-size: 28px;
}

.page-post-content h3 {
  font-size: 24px;
}

.page-post-content h4 {
  font-size: 20px;
}

.page-post-content h5 {
  font-size: 18px;
}

.page-post-content h6 {
  font-size: 16px;
}

.page-post-content p {
  margin-bottom: 20px;
}

.page-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 24px 0;
}

.page-post-content ul,
.page-post-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.page-post-content ul {
  list-style: disc;
}
.page-post-content ol {
  list-style: decimal;
}
.page-post-content ul ul {
  list-style: circle;
}
.page-post-content ol ul {
  list-style: circle;
}
.page-post-content ul ol {
  list-style: lower-alpha;
}

.page-post-content li {
  margin-bottom: 8px;
}

.page-post-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--color-gray-2);
}

.page-post-content a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-post-content a:hover {
  color: var(--color-dark);
}

/* Responsive Design */
@media (max-width: 1280px) {
  .page-content-section .container {
    padding: 0 60px;
  }
}

@media (max-width: 1024px) {
  .page-content-section .container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .page-content-section {
    padding: 0;
  }

  .page-content-section .container {
    padding: 0 20px;
  }

  .page-title-section .page-post-title {
    font-size: 36px;
  }

  .page-post-content {
    font-size: 16px;
  }

  .page-post-content h1 {
    font-size: 28px;
  }

  .page-post-content h2 {
    font-size: 24px;
  }

  .page-post-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .page-title-section .page-post-title {
    font-size: 28px;
  }

  .page-post-content {
    font-size: 15px;
  }
}

/* Gutenberg content specifics for normal pages */
.page-post-content .wp-block-heading {
  margin: 32px 0 16px;
  color: var(--color-dark);
  font-weight: 600;
}

.page-post-content .privacy-policy-tutorial {
  color: var(--color-gray-2);
  font-style: italic;
}

.page-post-content hr,
.page-post-content .wp-block-separator {
  border: none;
  height: 1px;
  background: var(--color-gray-lighter);
  margin: 32px 0;
}

.page-post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 16px;
}

.page-post-content th,
.page-post-content td {
  border-bottom: 1px solid var(--color-gray-lighter);
  padding: 12px 16px;
  text-align: left;
}

.page-post-content th {
  color: var(--color-dark);
  font-weight: 600;
}

.page-post-content pre,
.page-post-content code,
.page-post-content kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.page-post-content code,
.page-post-content kbd {
  background: var(--color-gray-light);
  color: var(--color-dark);
  padding: 2px 6px;
  border-radius: 6px;
}

.page-post-content pre {
  background: var(--color-gray-light);
  color: var(--color-dark);
  padding: 16px;
  border-radius: 8px;
  overflow: auto;
}

.page-post-content blockquote,
.page-post-content .wp-block-quote {
  border-left: 4px solid var(--color-primary);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--color-gray-2);
}

.page-post-content figure {
  margin: 24px 0;
}

.page-post-content figcaption {
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--color-gray-2);
  text-align: center;
  margin-top: 8px;
}

.page-post-content .alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.page-post-content .alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.page-post-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .page-post-content .alignleft,
  .page-post-content .alignright {
    float: none;
    margin: 0 auto 20px;
  }
}

/* Optional: Gutenberg alignment helpers */
.page-post-content .has-text-align-center {
  text-align: center;
}
.page-post-content .has-text-align-right {
  text-align: right;
}

/* ==========================================================================
   Blog Single Post
   ========================================================================== */

.blog-single {
  background: var(--color-white);
  position: relative;
}

/* Background Logo Decoration */
.blog-single-bg-logo {
  position: fixed;
  left: -2%;
  top: 130px;
  width: 65%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.11;
}

.blog-single-bg-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Ensure content is above the background logo */
.blog-single .blog-title-section,
.blog-single .blog-content-section {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .blog-single-bg-logo {
    left: -10%;
    opacity: 0.08;
  }
}

@media (max-width: 768px) {
  .blog-single-bg-logo {
    display: none;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  font-family: var(--font-primary);
  font-size: 13px;
  color: var(--color-gray-2);
  opacity: 0.7;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-link {
  color: var(--color-gray-2);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--color-primary);
}

.breadcrumb-separator {
  margin: 0 8px;
  display: inline-flex;
  align-items: center;
}

.breadcrumb-separator svg {
  width: 16px;
  height: 16px;
  color: var(--color-gray-2);
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--color-dark);
  font-weight: 500;
}

/* Breadcrumbs for blog single page */
.blog-single-title-section {
  padding-top: clamp(96px, 10vw, 120px);
  padding-bottom: clamp(40px, 5vw, 60px);
}

.blog-single-title-section .underlined-title-section {
  padding-top: 0;
}

.blog-single-title-section .breadcrumbs {
  position: absolute;
  top: 82px;
  left: 0;
  right: 0;
  text-align: left;
  max-width: 967px;
  margin: 0 auto;
}

/* Blog Single Eyebrow */
.blog-single-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-primary);
  font-size: clamp(0.66rem, 1.1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #474747;
  margin: 0 0 clamp(22px, 3vw, 34px);
}

.blog-single .page-title {
  color: #000;
}

.blog-single-title-section {
  padding-bottom: clamp(20px, 3vw, 30px);
}

/* Blog Single - Gradient Highlight for Last Word */
.blog-single .page-title .highlight {
  background: linear-gradient(96deg, #EF7D17 0%, #E7411B 88%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-single .page-title .highlight .title-underline-svg {
  display: none;
}

.blog-single-eyebrow::before {
  content: "";
  width: clamp(26px, 4vw, 42px);
  height: 2px;
  background: linear-gradient(90deg, #EF7D17, #E7411B);
  border-radius: 2px;
  flex: none;
}

/* Blog Content Section */
.blog-content-section {
  padding: 0px 0 120px;
}

.blog-content-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Blog Post */
.blog-post {
  max-width: 900px;
  margin: 0 auto;
}

.blog-post-content {
  font-family: var(--font-primary);
  font-size: 19px;
  line-height: 1.7;
  color: var(--color-gray-2);
  text-align: justify;
}

/* Gutenberg content styles */
.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  color: #000;
  margin: 32px 0 16px 0;
}

.blog-post-content h1 {
  font-size: 32px;
}

.blog-post-content h2 {
  font-size: 28px;
}

.blog-post-content h3 {
  font-size: 24px;
}

.blog-post-content h4 {
  font-size: 20px;
}

.blog-post-content p {
  margin-bottom: 20px;
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 24px 0;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.blog-post-content li {
  margin-bottom: 8px;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--color-gray-2);
}

/* Back Button */
.blog-post-actions {
  margin-top: 48px;
  text-align: center;
}

.btn-back {
  display: inline-flex;
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--color-gray-2);
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid var(--color-gray-2);
  border-radius: 8px;
  transition: all 0.3s ease;
  gap: 4px;
}

.btn-back:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Responsive Design */
@media (max-width: 1280px) {
  .blog-content-section .container {
    padding: 0 60px;
  }
}

@media (max-width: 1024px) {
  .blog-title-section .breadcrumbs {
    max-width: 738px;
  }

  .blog-content-section .container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .blog-content-section {
    padding: 0;
  }

  .blog-content-section .container {
    padding: 0 20px;
  }

  .blog-title-section {
  }

  .blog-title-section .breadcrumbs {
    display: none;
  }

  .blog-title-section .blog-post-title {
    font-size: 36px;
  }

  .blog-title-section .page-title {
    font-size: 48px;
  }

  .blog-post-content {
    font-size: 16px;
  }

  .blog-post-content h1 {
    font-size: 28px;
  }

  .blog-post-content h2 {
    font-size: 24px;
  }

  .blog-post-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .blog-title-section .blog-post-title {
    font-size: 28px;
  }

  .blog-title-section .page-title {
    font-size: 36px;
  }

  .blog-post-content {
    font-size: 15px;
  }

  .blog-post-content h1 {
    font-size: 24px;
  }

  .blog-post-content h2 {
    font-size: 20px;
  }

  .blog-post-content h3 {
    font-size: 18px;
  }

  .btn-back {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* ==========================================================================
   Technologie Page
   ========================================================================== */

/* Removed - now using unified .underlined-title-section */

/* Ambient warm glow at the top of the page (fades out downward) */
.page-technologie::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1100px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(48% 420px at 12% 120px, rgba(239, 125, 23, 0.22) 0%, transparent 72%),
    radial-gradient(40% 360px at 92% 60px, rgba(239, 125, 23, 0.12) 0%, transparent 72%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 52%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 52%, transparent 100%);
}

/* Hero title: fluid + scoped, in the same spirit as the homepage */
.page-technologie .underlined-title-section .page-title {
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Larger section headings (same spirit as the bigger homepage titles) */
.page-technologie .technologie-teplo h2,
.page-technologie .technologie-bez-starosti h2,
.page-technologie .technologie-jak-funguje .section-title,
.page-technologie .technologie-proc-zvolit .section-title,
.page-technologie .technologie-vyber .section-title,
.page-technologie .technologie-ceny .section-title {
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 1.25;
  font-weight: 500;
}

/* Teplo Section */
.technologie-teplo {
  padding: 80px 0;
}

.technologie-teplo .teplo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.technologie-teplo h2 {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 28px;
  color: var(--color-black);
  max-width: 315px;
}

.technologie-teplo .teplo-description {
  font-size: 20px;
  line-height: 1.35;
  color: var(--color-gray-2);
  max-width: 441px;
}

.technologie-teplo .teplo-description p {
  margin-bottom: 12px;
}

.technologie-teplo .teplo-description p:last-child {
  margin-bottom: 0;
}

.technologie-teplo .teplo-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.technologie-teplo .teplo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.technologie-teplo .teplo-img-1 {
  grid-column: 1;
  grid-row: 2;
  aspect-ratio: 250 / 156;
}

.technologie-teplo .teplo-img-2 {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 250 / 156;
}

.technologie-teplo .teplo-img-3 {
  grid-column: 2;
  grid-row: 1 / 3;
  aspect-ratio: 250 / 326;
}

/* Jak funguje Section */
.technologie-jak-funguje {
  padding: 60px 0;
  text-align: center;
}

.technologie-jak-funguje .section-title {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--color-black);
  text-align: center;
}

.technologie-jak-funguje .section-description {
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-gray-2);
  max-width: 1049px;
  margin: 0 auto;
}

/* Proč zvolit Section */
.technologie-proc-zvolit {
  padding: 60px 0 80px;
  padding-top: 30px;
}

.technologie-proc-zvolit .section-title {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 48px;
  text-align: center;
  color: var(--color-black);
}

.technologie-proc-zvolit .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.technologie-proc-zvolit .benefit-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 12, 18, 0.06);
  box-shadow: 0 10px 30px -18px rgba(0, 12, 18, 0.14);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.technologie-proc-zvolit .benefit-card:hover {
  border-color: rgba(239, 125, 23, 0.4);
  box-shadow: 0 18px 40px -18px rgba(239, 125, 23, 0.28);
  transform: translateY(-4px);
}

.technologie-proc-zvolit .benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.technologie-proc-zvolit .benefit-icon svg {
  width: 24px;
  height: 24px;
}

.technologie-proc-zvolit .benefit-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: auto;
  height: auto;
  margin-bottom: 0;
}

.technologie-proc-zvolit .benefit-icon-img {
  width: 24px;
  height: 24px;
}

.technologie-proc-zvolit .benefit-title {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--color-black);
}

.technologie-proc-zvolit .benefit-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray-2);
  margin: 0;
}

/* AKIRETHERM bez starostí Section */
.technologie-bez-starosti {
  padding: 60px 0;
}

.technologie-bez-starosti .bez-starosti-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.technologie-bez-starosti .bez-starosti-image {
  position: relative;
  height: 400px;
}

.technologie-bez-starosti .bez-starosti-img {
  width: 96%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 20%;
  display: block;
  border-radius: 0 12px 12px 0;
}

.technologie-bez-starosti .bez-starosti-text {
  padding: 0 20px;
}

.technologie-bez-starosti h2 {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 28px;
  color: var(--color-black);
  text-align: left;
}

.technologie-bez-starosti .bez-starosti-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.technologie-bez-starosti .bez-starosti-list li {
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-gray-2);
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.technologie-bez-starosti .bez-starosti-list li::before {
  content: "•";
  position: absolute;
  left: 3px;
  top: -13px;
  color: var(--color-primary);
  font-size: 37px;
  font-weight: bold;
}

.technologie-bez-starosti .highlight-orange {
  font-weight: 600;
  color: var(--color-primary);
}

.technologie-bez-starosti .bez-starosti-footer {
  text-align: center;
  margin-top: 32px;
}

.technologie-bez-starosti .footer-text-img {
  max-width: 448px;
  height: auto;
}

/* Výběr je snadný Section */
.technologie-vyber {
  padding: 40px 0 0;
  background: white;
}

.technologie-vyber .section-title {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 48px;
  color: var(--color-black);
  text-align: center;
}

.technologie-vyber .vyber-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.technologie-vyber .vyber-card {
  border: 1px solid var(--color-primary);
  border-radius: 20px;
  background: white;
  box-shadow: 0 22px 50px -30px rgba(0, 12, 18, 0.16);
  display: flex;
  /* flex-direction: column; */
  grid-template-columns: 1fr 300px;
  overflow: hidden;
}

.technologie-vyber .vyber-card-header {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.technologie-vyber .vyber-card-title {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  color: var(--color-black);
}

.technologie-vyber .vyber-card-title .brand {
  color: var(--color-primary);
}

.technologie-vyber .vyber-card-title .variant {
  font-weight: 400;
}

.technologie-vyber .vyber-card-title .variant-universal {
  color: #9747ff;
}

.technologie-vyber .vyber-card-title .variant-home {
  color: #119b59;
}

.technologie-vyber .vyber-card-title .variant-profi {
  color: #1c46a1;
}

.technologie-vyber .vyber-card-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: #031f14;
  opacity: 0.8;
  z-index: 1;
}

.technologie-vyber .vyber-card-badge .badge-icon {
  width: 27px;
  height: 27px;
}

.technologie-vyber .vyber-card-universal .badge-icon {
  width: 24px;
  height: 24px;
}

.technologie-vyber .vyber-card-content {
  padding: 24px;
  flex: 1;
}

.technologie-vyber .vyber-description {
  font-size: 20px;
  line-height: 1.4;
  color: #474747;
  opacity: 0.8;
  margin-bottom: 24px;
}

.technologie-vyber .vyber-info {
  margin-bottom: 16px;
}

.technologie-vyber .vyber-info-label {
  font-size: 18px;
  font-weight: 500;
  color: #031f14;
  opacity: 0.8;
  margin-bottom: 4px;
}

.technologie-vyber .vyber-info-text {
  font-size: 16px;
  line-height: 1.5;
  color: #474747;
  opacity: 0.8;
  margin: 0;
}

.technologie-vyber .vyber-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  row-gap: 0px;
  margin-top: 20px;
}

.technologie-vyber .feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  color: var(--color-tech);
  padding: 4px 0;
}

.technologie-vyber .feature-tag img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(14%) sepia(25%) saturate(2156%) hue-rotate(198deg) brightness(95%) contrast(89%);
}

.technologie-vyber .vyber-card-footer {
  padding: 0 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.technologie-vyber .vyber-card-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
}

.technologie-vyber .vyber-card-visual-text {
  font-size: 14px;
  color: #474747;
}

.technologie-vyber .vyber-card-visual {
  flex-shrink: 0;
  align-self: flex-end;
}

.technologie-vyber .vyber-card-visual video {
  width: 200px;
  height: auto;
  border-radius: 8px;
}

.technologie-vyber .btn-vyber {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.48px;
  border-radius: 84px;
  background: var(--color-primary);
  color: white;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.technologie-vyber .btn-vyber:hover {
  background: var(--color-primary-hover);
}

/* Nová struktura pro kartu Universal s dvěma hlavními divy */
.technologie-vyber .vyber-card-visual-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  position: relative;
  padding: 20px;
  border-radius: 0 16px 16px 0;
  background: #ffffff;
}

.technologie-vyber .vyber-card-visual-section .vyber-card-visual {
  flex-shrink: 0;
  position: absolute;
  top: 48%;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 58%;
  object-fit: cover;
  background: #ffffff;
  border-radius: 16px;
  transform: translateY(-50%);
}

.technologie-vyber .vyber-card-visual-section .vyber-card-visual video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.technologie-vyber .vyber-card-visual-section .vyber-card-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-end;
  flex: 1;
  z-index: 1;
}

.technologie-vyber .vyber-card-visual-section .vyber-card-visual-text {
  font-size: 14px;
  color: #474747;
}

/* Náhled cen Section */
.technologie-ceny {
  padding: 80px 0;
  background: white;
}

.technologie-ceny .section-title {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 48px;
  color: var(--color-black);
  text-align: center;
}

.technologie-ceny .ceny-table {
  border: 1px solid #c4c4c4;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.technologie-ceny .ceny-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.technologie-ceny .ceny-header {
  background: rgba(225, 225, 225, 0.2);
  border-bottom: 1px solid #c4c4c4;
}

.technologie-ceny .ceny-col {
  padding: 20px 24px;
  font-size: 18px;
  color: var(--color-black);
  border-right: 1px solid #c4c4c4;
}

.technologie-ceny .ceny-col:last-child {
  border-right: none;
}

.technologie-ceny .ceny-header .ceny-col {
  font-weight: 400;
  color: var(--color-primary);
}

.technologie-ceny .ceny-header .variant-universal {
  color: #9747ff;
}

.technologie-ceny .ceny-header .variant-home {
  color: #119b59;
}

.technologie-ceny .ceny-header .variant-profi {
  color: #1c46a1;
}

.technologie-ceny .ceny-prices .ceny-col {
  font-size: 18px;
  font-weight: 400;
}

.technologie-ceny .ceny-note {
  font-size: 14px;
  color: var(--color-gray-2);
  text-align: right;
  margin-bottom: 48px;
}

.technologie-ceny .ceny-info {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.technologie-ceny .ceny-info-icon {
  flex-shrink: 0;
}

.technologie-ceny .cifernik-img {
  width: 139px;
  height: 137px;
  object-fit: contain;
}

.technologie-ceny .ceny-info-content {
  flex: 1;
}

.technologie-ceny .ceny-info-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.technologie-ceny .ceny-info-text {
  font-size: 16px;
  line-height: 1.6;
  color: #474747;
  opacity: 0.8;
  margin: 0;
}

.technologie-ceny .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* CTA Section */
.technologie-cta {
  padding: 80px 0;
  padding-bottom: 0;
  text-align: center;
  background: #e4e5e0;
}

.technologie-cta .cta-title {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--color-black);
}

.technologie-cta .cta-description {
  font-size: 20px;
  line-height: 1.6;
  color: #474747;
  opacity: 0.8;
  max-width: 843px;
  margin: 0 auto;
}

.technologie-cta .cta-button-wrapper {
  margin-top: 15px;
}

/* Dotace table section */
.dotace-table-section {
  margin-top: 60px;
}

.dotace-table-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 16px;
  color: var(--color-black);
}

.dotace-table-note {
  font-size: 16px;
  line-height: 1.5;
  color: #474747;
  opacity: 0.8;
  text-align: center;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.dotace-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto 60px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.dotace-row {
  display: contents;
}

.dotace-col {
  padding: 16px 20px;
  text-align: center;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.dotace-col:last-child {
  border-right: none;
}

.dotace-header .dotace-col {
  background: #f8f8f8;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black);
}

.dotace-type-row .dotace-col {
  font-size: 14px;
  color: #474747;
  opacity: 0.7;
}

.dotace-svt-row .dotace-col {
  border-bottom: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
}

.dotace-svt-row .svt-label {
  font-size: 12px;
  color: #474747;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 6px;
}


/* ==========================================================================
   TECHNOLOGIE — redesign layer (warm "heat-exchange" theme)
   ========================================================================== */

/* Scroll reveal */
.page-technologie .tech-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-technologie .tech-reveal.in-view {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .page-technologie .tech-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Section kicker label */
.page-technologie .tech-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 18px;
}
.page-technologie .tech-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-hover));
}
.page-technologie .tech-kicker--center {
  display: flex;
  justify-content: center;
}
.page-technologie .tech-kicker--center::after {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-primary-hover), var(--color-primary));
}
.page-technologie .tech-kicker--light {
  color: #ffb877;
}
.page-technologie .tech-kicker--light::before,
.page-technologie .tech-kicker--light::after {
  background: rgba(255, 184, 119, 0.7);
}

/* ---------- Hero ---------- */
.page-technologie .tech-hero {
  position: relative;
  text-align: center;
  padding: 150px 0 72px;
}
@media (max-width: 768px) {
  .page-technologie .tech-hero {
    padding: 120px 0 48px;
  }
}
.page-technologie .tech-hero-title {
  margin: 6px auto 0;
  max-width: 16ch;
  font-size: clamp(40px, 5.6vw, 78px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--color-black);
}
.page-technologie .tech-hero-title .highlight {
  position: relative;
  display: inline-block;
  color: var(--color-primary);
}
.page-technologie .tech-hero-title .highlight svg {
  position: absolute;
  left: 0;
  bottom: -0.16em;
  width: 100%;
  height: auto;
}
.page-technologie .tech-hero-sub {
  max-width: 640px;
  margin: 26px auto 0;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--color-gray-2);
}
.page-technologie .tech-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}
.page-technologie .tech-hero-cta .btn {
  padding: 13px 26px;
  font-size: 14px;
}
.page-technologie .tech-hero-cta .btn-orange-icon {
  padding-right: 56px;
  box-shadow: 0 10px 24px -8px rgba(239, 125, 23, 0.5);
}
.page-technologie .tech-hero-cta .btn-orange-icon:hover {
  transform: translateY(-2px);
}
.page-technologie .tech-hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 48px;
  margin: 52px 0 0;
  padding: 0;
}
.page-technologie .tech-hero-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 24px;
}
.page-technologie .tech-hero-stats li + li::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(0, 12, 18, 0.12);
}
.page-technologie .tech-hero-stats .num {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-black);
  background: linear-gradient(120deg, var(--color-primary-hover), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-technologie .tech-hero-stats .lbl {
  margin-top: 6px;
  font-size: 14px;
  color: var(--color-gray-dark);
  max-width: 150px;
  text-align: center;
}
@media (max-width: 600px) {
  .page-technologie .tech-hero-stats li + li::before { display: none; }
}

/* ---------- Teplo ---------- */
.page-technologie .technologie-teplo {
  padding: 12px 0 clamp(48px, 7vw, 96px);
}
.page-technologie .technologie-teplo .teplo-content {
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.page-technologie .technologie-teplo h2 {
  max-width: 12ch;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.page-technologie .teplo-stat {
  margin-top: 32px;
  padding: 22px 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(239, 125, 23, 0.10), rgba(231, 65, 27, 0.06));
  border: 1px solid rgba(239, 125, 23, 0.16);
  display: flex;
  align-items: center;
  gap: 18px;
}
.page-technologie .teplo-stat-num {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--color-primary-hover), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}
.page-technologie .teplo-stat-lbl {
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-gray-2);
}
.page-technologie .technologie-teplo .teplo-img {
  border-radius: 18px;
}

/* ---------- Bez starostí ---------- */
.page-technologie .technologie-bez-starosti {
  padding: clamp(48px, 6vw, 88px) 0;
}
.page-technologie .technologie-bez-starosti .bez-starosti-content {
  gap: clamp(40px, 6vw, 72px);
}
.page-technologie .technologie-bez-starosti h2 {
  font-weight: 500;
  letter-spacing: -0.02em;
}
.page-technologie .technologie-bez-starosti .bez-starosti-img {
  width: 100%;
  border-radius: 0 20px 20px 0;
}
.page-technologie .technologie-bez-starosti .bez-starosti-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.page-technologie .technologie-bez-starosti .bez-starosti-list li {
  padding: 7px 0 7px 40px;
  border-bottom: 1px solid rgba(0, 12, 18, 0.07);
}
.page-technologie .technologie-bez-starosti .bez-starosti-list li::before {
  content: "";
  left: 4px;
  top: 11px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary) url("./assets/images/sipka_btn.svg") center/12px no-repeat;
  background: var(--color-primary);
  font-size: 0;
  box-shadow: inset 0 0 0 0 transparent;
}
.page-technologie .technologie-bez-starosti .bez-starosti-list li::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 18px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ---------- Jak funguje ---------- */
.page-technologie .technologie-jak-funguje {
  padding: clamp(48px, 6vw, 88px) 0;
}
.page-technologie .technologie-jak-funguje h2 {
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.page-technologie .jak-funguje-figure {
  margin-top: 44px;
  padding: clamp(16px, 2vw, 28px);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 12, 18, 0.06);
}
.page-technologie .jak-funguje-image {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* ---------- Výběr (produktové karty) ---------- */
.page-technologie .technologie-vyber {
  padding: clamp(48px, 6vw, 88px) 0;
  background: transparent;
}
.page-technologie .technologie-vyber h2 {
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 6px;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.page-technologie .vyber-grid {
  gap: 28px;
}
.page-technologie .vyber-card {
  position: relative;
  border: 1px solid rgba(0, 12, 18, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 26px 60px -34px rgba(0, 12, 18, 0.18);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.page-technologie .vyber-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 72px -34px rgba(0, 12, 18, 0.22);
}
.page-technologie .vyber-card-content {
  padding: clamp(24px, 3vw, 38px);
}
.page-technologie .vyber-card-title {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.page-technologie .vyber-card-visual-section {
  border-radius: 0;
  min-width: 320px;
  background: transparent;
}
.page-technologie .vyber-features {
  gap: 10px 18px;
}
.page-technologie .vyber-card .btn-vyber {
  border-radius: 9999px;
  box-shadow: 0 10px 22px -10px rgba(239, 125, 23, 0.6);
}
.page-technologie .vyber-card .btn-vyber:hover {
  transform: translateY(-2px);
}

/* ---------- Proč zvolit (benefit cards) ---------- */
.page-technologie .technologie-proc-zvolit h2 {
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.page-technologie .technologie-proc-zvolit .benefits-grid {
  gap: 28px;
}
.page-technologie .technologie-proc-zvolit .benefit-card {
  padding: 36px 30px 30px;
  overflow: hidden;
}
.page-technologie .benefit-num {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.page-technologie .technologie-proc-zvolit .benefit-icon {
  top: 24px;
  right: 24px;
  opacity: 0.9;
}
.page-technologie .technologie-proc-zvolit .benefit-icon-img {
  width: 34px;
  height: 34px;
}
.page-technologie .technologie-proc-zvolit .benefit-title {
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ---------- Ceny ---------- */
.page-technologie .technologie-ceny {
  padding: clamp(48px, 6vw, 88px) 0;
  background: transparent;
}
.page-technologie .technologie-ceny h2 {
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.page-technologie .technologie-ceny .ceny-table {
  border: 1px solid rgba(0, 12, 18, 0.10);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 26px 60px -36px rgba(0, 12, 18, 0.16);
}
.page-technologie .technologie-ceny .ceny-header {
  background: linear-gradient(180deg, rgba(239, 125, 23, 0.06), rgba(239, 125, 23, 0.02));
  border-bottom: 1px solid rgba(0, 12, 18, 0.10);
}
.page-technologie .technologie-ceny .ceny-col {
  border-right: 1px solid rgba(0, 12, 18, 0.08);
}
.page-technologie .technologie-ceny .ceny-header .ceny-col {
  font-weight: 600;
  font-size: 16px;
}
.page-technologie .technologie-ceny .ceny-prices .ceny-col {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-black);
}
.page-technologie .technologie-ceny .ceny-info {
  align-items: center;
  gap: 32px;
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 12, 18, 0.06);
}
.page-technologie .technologie-ceny .ceny-info-title {
  font-weight: 600;
}

/* ---------- CTA panel ---------- */
.page-technologie .technologie-cta {
  background: transparent;
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 110px);
}
.page-technologie .tech-cta-panel {
  position: relative;
  text-align: center;
  padding: clamp(44px, 6vw, 80px) clamp(24px, 5vw, 80px);
  border-radius: 32px;
  background: linear-gradient(135deg, #232D79 0%, #131835 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(19, 24, 53, 0.45);
}
.page-technologie .tech-cta-panel::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(239, 125, 23, 0.35), transparent 70%);
  pointer-events: none;
}
.page-technologie .tech-cta-panel .cta-title {
  position: relative;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}
.page-technologie .tech-cta-panel .cta-description {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
  max-width: 720px;
  margin: 0 auto 28px;
}
.page-technologie .tech-cta-panel .cta-button-wrapper {
  position: relative;
  margin-top: 0;
}

/* ==========================================================================
   HERO VARIANTY (k výběru)
   ========================================================================== */
.page-technologie .variant-tag {
  width: 100%;
  text-align: center;
  padding: 13px 16px;
  background: #000C12;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.page-technologie .variant-tag:first-of-type {
  margin-top: 96px;
}

/* ---------- Varianta 1: editoriální split ---------- */
.page-technologie .techv1 {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) 0;
}
.page-technologie .techv1-glow {
  position: absolute;
  top: -180px;
  left: -140px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 125, 23, 0.22), transparent 70%);
  pointer-events: none;
}
.page-technologie .techv1-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}
.page-technologie .techv1-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-hover);
  margin-bottom: 22px;
}
.page-technologie .techv1-kicker .d {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}
.page-technologie .techv1-title {
  margin: 0 0 22px;
  max-width: 14ch;
  font-size: clamp(40px, 4.8vw, 66px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--color-black);
  text-align: left;
}
.page-technologie .techv1-title .brandword { color: var(--color-primary); }
.page-technologie .techv1-sub {
  max-width: 480px;
  margin: 0 0 30px;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--color-gray-2);
}
.page-technologie .techv1-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}
.page-technologie .techv1-cta .btn { padding: 13px 26px; font-size: 14px; }
.page-technologie .techv1-cta .btn-orange-icon { padding-right: 56px; }
.page-technologie .techv1-stats { display: flex; flex-wrap: wrap; gap: 28px; }
.page-technologie .techv1-stats .s {
  display: flex;
  flex-direction: column;
  padding-right: 28px;
  border-right: 1px solid rgba(0, 12, 18, 0.12);
}
.page-technologie .techv1-stats .s:last-child { border-right: none; padding-right: 0; }
.page-technologie .techv1-stats b {
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--color-primary-hover), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-technologie .techv1-stats span { font-size: 13px; color: var(--color-gray-dark); margin-top: 5px; max-width: 130px; }
.page-technologie .techv1-visual { position: relative; }
.page-technologie .techv1-card {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 12, 18, 0.06);
  box-shadow: 0 34px 74px -34px rgba(0, 12, 18, 0.5);
}
.page-technologie .techv1-card img { width: 100%; display: block; }
.page-technologie .techv1-pattern {
  position: absolute;
  top: -36px;
  right: -28px;
  width: 122px;
  height: auto;
  filter: drop-shadow(0 14px 26px rgba(0, 12, 18, 0.18));
}

/* ---------- Varianta 2: tmavá immersive ---------- */
.page-technologie .techv2 {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #232D79 0%, #11162e 100%);
  padding: clamp(80px, 8vw, 110px) 0;
}
.page-technologie .techv2-pattern {
  position: absolute;
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
  height: clamp(320px, 42vw, 560px);
  width: auto;
  opacity: 0.9;
  pointer-events: none;
}
.page-technologie .techv2-glow {
  position: absolute;
  right: 4%;
  top: 8%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 125, 23, 0.35), transparent 70%);
  pointer-events: none;
}
.page-technologie .techv2-inner { position: relative; max-width: 660px; }
.page-technologie .techv2-kicker {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 184, 119, 0.4);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb877;
}
.page-technologie .techv2-title {
  margin: 0 0 22px;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
}
.page-technologie .techv2-title .brandword {
  background: linear-gradient(120deg, #EF7D17, #E7411B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-technologie .techv2-sub {
  max-width: 520px;
  margin: 0 0 34px;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.page-technologie .techv2-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }
.page-technologie .techv2-cta .btn { padding: 13px 26px; font-size: 14px; }
.page-technologie .techv2-cta .btn-orange-icon { padding-right: 56px; }
.page-technologie .techv2-stats { display: flex; flex-wrap: wrap; gap: 14px; }
.page-technologie .techv2-stats .chip {
  display: flex;
  flex-direction: column;
  padding: 16px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.page-technologie .techv2-stats b { font-size: clamp(24px, 2.4vw, 32px); font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.page-technologie .techv2-stats span { font-size: 13px; color: rgba(255, 255, 255, 0.7); margin-top: 4px; }

/* ---------- Varianta 3: úhlový masthead ---------- */
.page-technologie .techv3 {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 6vw, 84px) 0;
}
.page-technologie .techv3-grid {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.page-technologie .techv3-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-hover);
  margin-bottom: 22px;
}
.page-technologie .techv3-kicker .d { width: 8px; height: 8px; border-radius: 50%; background: var(--color-primary); }
.page-technologie .techv3-title {
  margin: 0 0 22px;
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--color-black);
}
.page-technologie .techv3-title .brandword { color: var(--color-primary); }
.page-technologie .techv3-sub {
  max-width: 460px;
  margin: 0 0 32px;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--color-gray-2);
}
.page-technologie .techv3-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.page-technologie .techv3-cta .btn { padding: 13px 26px; font-size: 14px; }
.page-technologie .techv3-cta .btn-orange-icon { padding-right: 56px; }
.page-technologie .techv3-visual { position: relative; aspect-ratio: 1 / 1.04; }
.page-technologie .techv3-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  box-shadow: 0 36px 80px -34px rgba(0, 12, 18, 0.55);
}
.page-technologie .techv3-pattern {
  position: absolute;
  left: -34px;
  bottom: -28px;
  width: 132px;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 12, 18, 0.22));
}
.page-technologie .techv3-badge {
  position: absolute;
  left: -22px;
  top: 36px;
  display: flex;
  flex-direction: column;
  padding: 18px 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 48px -22px rgba(0, 12, 18, 0.45);
}
.page-technologie .techv3-badge b {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--color-primary-hover), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-technologie .techv3-badge span { font-size: 12px; color: var(--color-gray-dark); margin-top: 7px; line-height: 1.35; }

/* Varianty – responsivita */
@media (max-width: 900px) {
  .page-technologie .techv1-grid,
  .page-technologie .techv3-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-technologie .techv2-pattern { opacity: 0.35; }
  .page-technologie .techv3-visual { max-width: 460px; }
}

/* ---------- Centrované varianty (4–6) ---------- */
.page-technologie .tech-centered {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(72px, 8vw, 112px) 0 clamp(48px, 6vw, 80px);
}
.page-technologie .tech-centered .container { position: relative; z-index: 1; }
.page-technologie .tc-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.page-technologie .tc-kicker::before,
.page-technologie .tc-kicker::after {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-hover));
}
.page-technologie .tc-title {
  margin: 0 auto;
  max-width: 16ch;
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--color-black);
}
.page-technologie .tc-title .highlight { position: relative; display: inline-block; }
.page-technologie .tc-title .highlight svg { position: absolute; left: 0; bottom: -0.16em; width: 100%; height: auto; }
.page-technologie .tc-sub {
  max-width: 620px;
  margin: 24px auto 0;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--color-gray-2);
}
.page-technologie .tc-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 32px; }
.page-technologie .tc-cta .btn { padding: 13px 26px; font-size: 14px; }
.page-technologie .tc-cta .btn-orange-icon { padding-right: 56px; }
.page-technologie .tc-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 44px;
  margin: 48px 0 0;
  padding: 0;
}
.page-technologie .tc-stats li { display: flex; flex-direction: column; align-items: center; position: relative; padding: 0 22px; }
.page-technologie .tc-stats li + li::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 38px;
  background: rgba(0, 12, 18, 0.12);
}
.page-technologie .tc-stats b {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--color-primary-hover), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-technologie .tc-stats span { font-size: 14px; color: var(--color-gray-dark); margin-top: 5px; max-width: 150px; text-align: center; }
@media (max-width: 600px) {
  .page-technologie .tc-stats li + li::before { display: none; }
}

/* V4 — orange + violet ambient */
.page-technologie .techv4 .tech-centered-aura {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 50% at 16% 6%, rgba(239, 125, 23, 0.22), transparent 70%),
    radial-gradient(54% 54% at 88% 12%, rgba(123, 97, 219, 0.26), transparent 70%),
    radial-gradient(70% 40% at 50% 104%, rgba(123, 97, 219, 0.10), transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
}

/* V5 — faint brand pattern + violet */
.page-technologie .techv5 .tech-centered-aura {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 50% at 10% 8%, rgba(239, 125, 23, 0.18), transparent 70%),
    radial-gradient(50% 50% at 90% 14%, rgba(123, 97, 219, 0.24), transparent 70%);
}
.page-technologie .techv5 .tc-pattern-bg {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 400px;
  height: auto;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}

/* V6 — violet spotlight + brand mark */
.page-technologie .techv6 .tech-centered-aura {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(42% 56% at 50% -6%, rgba(123, 97, 219, 0.22), transparent 70%),
    radial-gradient(42% 42% at 14% 16%, rgba(239, 125, 23, 0.16), transparent 70%),
    radial-gradient(42% 42% at 86% 22%, rgba(231, 65, 27, 0.10), transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 66%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 66%, transparent 100%);
}
.page-technologie .techv6 .tc-mark {
  width: 60px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 12, 18, 0.16));
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .technologie-hero .page-title {
    font-size: 48px;
  }

  .technologie-hero .hero-subtitle {
    font-size: 20px;
  }

  .technologie-teplo .teplo-content {
    gap: 40px;
  }

  .technologie-teplo {
    padding-top: 11px;
    padding-bottom: 30px;
  }

  .technologie-proc-zvolit .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .technologie-bez-starosti .bez-starosti-content {
    grid-template-columns: 1fr;
  }

  .technologie-bez-starosti .bez-starosti-image {
    max-height: 300px;
    height: 100%;
  }

  .technologie-cta {
    padding-bottom: 50px;
  }

  .technologie-ceny .ceny-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .technologie-ceny .ceny-col:nth-child(2n) {
    border-right: none;
  }

  .technologie-ceny .ceny-col:nth-child(3),
  .technologie-ceny .ceny-col:nth-child(4) {
    border-top: 1px solid #c4c4c4;
  }

  .technologie-ceny .ceny-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .technologie-ceny .cifernik-img {
    width: 100px;
    height: 100px;
  }

  .container {
    padding: 0 36px;
  }

  /* Zmenšení paddingu mezi sekcemi na mobilu */

  .technologie-jak-funguje {
    padding: 40px 0;
  }

  .technologie-bez-starosti {
    padding: 40px 0;
  }

  .technologie-vyber {
    padding: 40px 0 0;
  }

  .technologie-proc-zvolit {
    padding: 40px 0 60px;
    padding-top: 20px;
  }

  .technologie-ceny {
    padding: 40px 0;
  }

  .technologie-bez-starosti .footer-text-img {
    max-width: 448px;
    height: auto;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .technologie-bez-starosti .bez-starosti-text {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .technologie-hero {
    padding: 100px 0 60px;
    padding-bottom: 0;
  }

  .technologie-hero .page-title {
    font-size: 36px;
  }

  .technologie-hero .hero-subtitle {
    font-size: 18px;
  }

  .technologie-hero .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .technologie-hero .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .technologie-teplo .teplo-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .technologie-teplo h2 {
    font-size: 28px;
  }

  .technologie-teplo .teplo-description {
    font-size: 18px;
  }

  .technologie-jak-funguje .section-title,
  .technologie-proc-zvolit .section-title,
  .technologie-cta .cta-title {
    font-size: 28px;
  }

  .technologie-jak-funguje .section-description,
  .technologie-cta .cta-description {
    font-size: 18px;
  }

  .dotace-table-title {
    font-size: 20px;
  }

  .dotace-table-note {
    font-size: 14px;
  }

  .dotace-table {
    grid-template-columns: 1fr;
  }

  .dotace-header .dotace-col {
    font-size: 16px;
  }

  .technologie-bez-starosti h2 {
    font-size: 28px;
  }

  .technologie-vyber .vyber-card {
    flex-direction: column;
  }

  .technologie-vyber .vyber-card-visual-section {
    border-radius: 16px;
  }

  .technologie-vyber .vyber-card-visual-section .vyber-card-visual {
    left: 10px;
    width: auto;
    top: 16px;
    transform: unset;
  }

  .technologie-vyber .btn-vyber {
    padding: 7px 17px;
    font-size: 15px;
  }

  .technologie-vyber .vyber-card-visual {
    margin-bottom: 0;
  }

  .technologie-vyber .vyber-card-visual-section .vyber-card-visual video {
    width: 100%;
    height: calc(100% + 20px);
    object-fit: contain;
    border-radius: 8px;
  }

  .technologie-ceny .section-title {
    font-size: 28px;
  }

  .technologie-ceny .ceny-table {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .technologie-ceny .ceny-row {
    display: contents;
  }

  .technologie-ceny .ceny-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .technologie-ceny .ceny-prices {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .technologie-ceny .ceny-col {
    padding: 16px;
    border-right: none;
    border-bottom: 1px solid #c4c4c4;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
  }

  .technologie-ceny .ceny-header .ceny-col:nth-child(1)::after {
    content: "od 450 000 Kč";
    color: var(--color-black);
    font-weight: 400;
  }

  .technologie-ceny .ceny-header .ceny-col:nth-child(2)::after {
    content: "od 111 000 Kč";
    color: var(--color-black);
    font-weight: 400;
  }

  .technologie-ceny .ceny-header .ceny-col:nth-child(3)::after {
    content: "od 132 000 Kč";
    color: var(--color-black);
    font-weight: 400;
  }

  .technologie-ceny .ceny-header .ceny-col:nth-child(4)::after {
    content: "od 159 000 Kč";
    color: var(--color-black);
    font-weight: 400;
  }

  .technologie-ceny .ceny-header .ceny-col:nth-child(5)::after {
    content: "od 370 000 Kč";
    color: var(--color-black);
    font-weight: 400;
  }

  .technologie-ceny .ceny-header .ceny-col:nth-child(6)::after {
    content: "od 385 000 Kč";
    color: var(--color-black);
    font-weight: 400;
  }

  .technologie-ceny .ceny-prices {
    display: none;
  }

  .technologie-ceny .ceny-col:last-child {
    border-bottom: none;
  }

  .technologie-ceny .ceny-note {
    font-size: 12px;
    text-align: center;
  }

  .technologie-ceny .ceny-info-title {
    font-size: 18px;
  }

  .technologie-ceny .ceny-info-text {
    font-size: 14px;
  }

  .technologie-ceny .hero-buttons {
    flex-direction: column;
  }

  .technologie-ceny .btn {
    width: 100%;
  }

  .technologie-vyber .vyber-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .technologie-vyber .vyber-card-left {
    order: 2;
  }

  .technologie-vyber .vyber-card-visual {
    order: 1;
    text-align: center;
    margin-bottom: 16px;
  }

  .technologie-vyber .vyber-card-visual video {
    width: 100%;
    max-width: 200px;
  }

  .technologie-vyber .btn-vyber {
    width: 100%;
    text-align: center;
  }

  .technologie-vyber .vyber-card-visual-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .technologie-hero .page-title {
    font-size: 28px;
  }

  .technologie-hero .hero-subtitle {
    font-size: 16px;
  }

  .technologie-teplo h2 {
    font-size: 24px;
    max-width: 300px;
  }

  .technologie-teplo .teplo-description {
    font-size: 16px;
  }

  .technologie-jak-funguje .section-title,
  .technologie-proc-zvolit .section-title,
  .technologie-cta .cta-title {
    font-size: 24px;
  }

  .technologie-jak-funguje .section-description,
  .technologie-cta .cta-description {
    font-size: 16px;
  }

  .technologie-proc-zvolit .benefit-title {
    font-size: 20px;
  }

  .dotace-table-title {
    font-size: 18px;
  }

  .dotace-table-note {
    font-size: 14px;
  }

  .dotace-header .dotace-col {
    font-size: 14px;
  }

  .dotace-svt-row .dotace-col {
    font-size: 14px;
  }
}

.page-pro-profesionaly .pro-section {
  padding-bottom: 48px;
  padding-top: 53px;
}

@media (max-width: 768px) {
  .page-pro-profesionaly .pro-section {
    padding-top: 0;
  }
}

.page-pro-profesionaly .pro-section-title {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--color-black);
}

.page-pro-profesionaly .color-home {
  color: #119b59;
}

.page-pro-profesionaly .color-profi {
  color: #1c46a1;
}

.page-pro-profesionaly .color-universal {
  color: #9747ff;
}

.page-pro-profesionaly .pro-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7%;
  align-items: stretch;
}

.page-pro-profesionaly .pro-col {
  min-width: 0;
}

.page-pro-profesionaly .pro-col.pro-media {
  position: relative;
  min-height: 100%;
}

.page-pro-profesionaly .pro-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  object-position: bottom;
}

.page-pro-profesionaly .pro-subsection {
  margin-top: 24px;
}

.page-pro-profesionaly .pro-subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--color-black);
}

.page-pro-profesionaly .pro-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.page-pro-profesionaly .pro-table th,
.page-pro-profesionaly .pro-table td {
  border: 1px solid #e8e8e8;
  padding: 3px 9px;
  text-align: left;
  vertical-align: top;
}

.page-pro-profesionaly .pro-table thead th {
  background: transparent;
  font-weight: 400;
  color: #666;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
}

.page-pro-profesionaly .pro-table tbody td {
  color: var(--color-gray-2);
  font-weight: 300;
}

.page-pro-profesionaly .pro-table tbody tr:first-child td {
  border-top: none;
}

.page-pro-profesionaly .pro-col p {
  font-size: 1.1rem;
  line-height: 1.35;
  color: var(--color-gray-2);
  margin-bottom: 12px;
}

.page-pro-profesionaly .pro-col p:last-child {
  margin-bottom: 0;
}

.page-pro-profesionaly .pro-subcontent p {
  font-size: 1.1rem;
  line-height: 1.35;
  color: var(--color-gray-2);
  margin-bottom: 12px;
}

.page-pro-profesionaly .pro-subcontent p:last-child {
  margin-bottom: 0;
}

.page-pro-profesionaly .certifikace-text {
  font-size: 16px;
  line-height: 1.7;
  color: #474747;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.page-pro-profesionaly #certifikace .pro-section-title {
  text-align: center;
}

.page-pro-profesionaly .certifikace-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-pro-profesionaly .certifikace-logo {
  width: auto;
  max-width: 180px;
  height: 80px;
  object-fit: contain;
}

.page-pro-profesionaly .pro-cta {
  padding: 60px 0;
  background: #f8f8f8;
  text-align: center;
}

.page-pro-profesionaly .pro-cta .cta-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--color-black);
}

.page-pro-profesionaly .pro-downloads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid #e8e8e8;
}

.page-pro-profesionaly .pro-downloads tbody {
  display: contents;
}

.page-pro-profesionaly .pro-downloads tr {
  display: contents;
}

.page-pro-profesionaly .pro-downloads td {
  padding: 3px 9px;
  border: 1px solid #e8e8e8;
  border-top: none;
  border-left: none;
}

.page-pro-profesionaly .pro-downloads td:nth-child(odd) {
  border-right: 1px solid #e8e8e8;
}

.page-pro-profesionaly .download-link {
  color: var(--color-gray-2);
  text-decoration: underline;
  font-size: 16px;
  line-height: 1.6;
  display: inline-block;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.page-pro-profesionaly .download-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

@media (max-width: 1024px) {
  .page-pro-profesionaly .pro-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-pro-profesionaly .pro-col.pro-media {
    position: relative;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .page-pro-profesionaly .pro-section-title {
    font-size: 28px;
  }

  .page-pro-profesionaly .pro-cta .cta-title {
    font-size: 24px;
  }

  .page-pro-profesionaly .certifikace-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .page-pro-profesionaly .pro-downloads {
    grid-template-columns: 1fr;
  }

  .page-pro-profesionaly .pro-downloads td {
    border-right: none;
  }

  .team-grid {
    gap: 34px;
  }

  .team-member {
    width: calc((100% - 34px) / 2);
  }
}

@media (max-width: 480px) {
  .page-pro-profesionaly .certifikace-logos {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .page-pro-profesionaly .certifikace-logo {
    max-width: 150px;
    height: 70px;
  }

  .contact-info-section {
    padding: 0px 0 20px;
  }

  .contact-link {
    font-size: 26px;
  }

  .wpcf7 {
    padding: 0;
  }

  .checkbox-text {
    line-height: 1.2;
  }

  .team-member-image {
    width: 126px;
    height: 126px;
  }

  .team-section .section-title {
    margin: 0 0 24px;
  }
}

/* Blog post content styling */
.blog-post-content strong {
  color: #333333 !important;
}

/* Team section title styling */
.team-section .section-title {
  font-family: "Urbanist", sans-serif;
  font-size: 34px;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin: 0 0 38px;
}

.faq-page .faq-section .container {
  max-width: 1200px;
  padding: 0;
}

.faq-page .faq-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.faq-page .faq-section-eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-hover));
}

.faq-page .faq-section h2 {
  text-align: left;
  font-size: 28px;
  font-weight: 400;
  margin: 6px 0 18px;
}

@media (min-width: 768px) {
  .faq-page .faq-section h2 {
    font-size: 32px;
  }
}

.faq-page .faq-list {
  display: grid;
  gap: 10px;
  margin: 0 auto;
}

.faq-page .faq-item {
  border: 1px solid #eeeeee;
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.faq-page .faq-item[open] {
  box-shadow: 0 8px 24px rgba(35, 45, 121, 0.18);
  border-color: rgba(35, 45, 121, 0.35);
}

.faq-page .faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--color-black);
  user-select: none;
  transition: color .2s ease;
}

.faq-page .faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-page .faq-item summary:hover {
  color: var(--color-primary);
}

.faq-page .faq-item__title {
  flex: 1 1 auto;
}

.faq-page .faq-item__icon {
  flex: none;
  width: 30px;
  height: 30px;
  padding: 7px;
  border-radius: 50%;
  background: #f4f4f2;
  color: #7a8087;
  transition: transform .25s ease, color .2s ease, background .2s ease;
}

.faq-page .faq-item summary:hover .faq-item__icon {
  background: #fbe7d6;
  color: var(--color-primary);
}

.faq-page .faq-item[open] .faq-item__icon {
  transform: rotate(180deg);
  background: var(--color-primary);
  color: #fff;
}

.faq-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px 22px;
  color: var(--color-gray-dark);
  font-size: 16px;
  line-height: 1.6;
  transition:
    max-height 0.35s ease,
    padding 0.25s ease;
}

.faq-page .faq-item[open] .faq-answer {
  max-height: 600px;
  padding: 0 22px 22px;
}

.faq-page .faq-answer p {
  margin: 0 0 8px;
}

.faq-page .faq-answer ul {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
}

.faq-page .faq-answer li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 8px;
}

.faq-page .faq-answer li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--color-gray-dark);
}

.faq-page .faq-item summary:hover {
  color: var(--color-primary);
}

.faq-page .faq-item summary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 12px;
}

.faq-page .faq-section + .faq-section {
  margin-top: 60px;
  padding-top: 0;
}

.nzu-page .wp-block-table {
  max-width: 900px;
  margin: 0 auto 60px;
}

.nzu-page .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.nzu-page .wp-block-table th,
.nzu-page .wp-block-table td {
  padding: 16px 20px;
  text-align: center;
  border: 1px solid #e0e0e0;
}

.nzu-page .wp-block-table thead th {
  background: linear-gradient(180deg, rgba(239, 125, 23, 0.06), rgba(239, 125, 23, 0.02));
  font-size: 18px;
  font-weight: 600;
  color: var(--color-black);
}

.nzu-page .wp-block-table thead th .brand {
  color: var(--color-primary);
  font-weight: 400;
}

.nzu-page .wp-block-table thead th .variant-universal {
  color: #9747ff;
}

.nzu-page .wp-block-table thead th .variant-home {
  color: #119b59;
}

.nzu-page .wp-block-table thead th .variant-profi {
  color: #1c46a1;
}

.nzu-page .wp-block-table tbody td {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
}

@media (max-width: 640px) {
  .nzu-page .wp-block-table {
    margin: 0 auto 40px;
  }
  .nzu-page .wp-block-table th,
  .nzu-page .wp-block-table td {
    padding: 12px 14px;
    font-size: 14px;
  }
  .nzu-page .wp-block-table thead th {
    font-size: 16px;
  }
}

/* Gutenberg heading styles */
.content-section h2,
.content-section h3 {
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-black);
  margin: 32px 0 16px 0;
}

.content-section h2 {
  font-size: 34px;
}

.content-section h3 {
  font-size: 26px;
}

@media (max-width: 768px) {
  .content-section h2 {
    font-size: 28px;
  }

  .content-section h3 {
    font-size: 22px;
  }
}


/* ==========================================================================
   HERO VARIANTY (k výběru — po výběru smažeme zbylé)
   ========================================================================== */

/* --- htech1: Editorial --- */
.htech1{position:relative;background:linear-gradient(180deg,#fdf9f5 0%,#fbf6f0 55%,#fff 100%);padding:clamp(150px,16vw,200px) 0 clamp(72px,9vw,120px);font-family:"Urbanist",sans-serif;-webkit-font-smoothing:antialiased;isolation:isolate;z-index:0;overflow-x:clip}
/* Sekce za hero leží nad dekorativním patternem, který přetéká z hero dolů */
.page-technologie > section:not(.htech1),
.reference-archive > section:not(.htech1),
.page-pro-profesionaly > section:not(.htech1),
.blog-archive > section:not(.htech1){position:relative;z-index:1}
.htech1 *{box-sizing:border-box}
.htech1__inner{position:relative;z-index:2;max-width:var(--container-width);margin:0 auto;width:100%;padding:0 20px}
.htech1__eyebrow{display:inline-flex;align-items:center;gap:.7em;font-size:clamp(.66rem,1.1vw,.78rem);font-weight:700;letter-spacing:.34em;text-transform:uppercase;color:#474747;margin:0 0 clamp(22px,3vw,34px)}
.htech1__eyebrow::before{content:"";width:clamp(26px,4vw,42px);height:2px;background:linear-gradient(90deg,#EF7D17,#E7411B);border-radius:2px;flex:none}
.htech1__title{margin:0;font-weight:500;font-size:clamp(34px,4vw,58px);line-height:1.08;letter-spacing:-.02em;color:#000C12;max-width:16ch}
.htech1__title--nowrap{max-width:none;white-space:nowrap}
.htech1__title .htech1__accent{font-weight:500;color:#EF7D17;background:linear-gradient(96deg,#EF7D17 0%,#E7411B 88%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;white-space:nowrap}
.htech1__rule{margin:clamp(30px,4vw,42px) 0 clamp(28px,3.5vw,38px);width:clamp(64px,9vw,108px);height:3px;border:0;border-radius:3px;background:linear-gradient(90deg,#EF7D17,#E7411B)}
.htech1__sub{margin:clamp(20px,2.5vw,30px) 0 0;max-width:56ch;font-size:clamp(1.04rem,1.9vw,1.32rem);line-height:1.62;font-weight:400;color:#1B1F26}
.htech1__sub strong{font-weight:600;color:#000C12}
.htech1__pattern-wrap{position:absolute;inset:0;z-index:1;overflow:visible;pointer-events:none}
.htech1__pattern{position:absolute;z-index:1;top:2%;right:-7%;width:clamp(360px,46vw,720px);height:auto;opacity:.045;pointer-events:none;transform:rotate(-4deg);user-select:none}
.htech1__glow{position:absolute;z-index:0;bottom:-30%;left:-14%;width:clamp(380px,42vw,640px);height:clamp(380px,42vw,640px);border-radius:50%;background:radial-gradient(circle,rgba(239,125,23,.12),rgba(239,125,23,0) 68%);pointer-events:none}
@media (max-width:768px){
.htech1{padding-top:clamp(140px,32vw,165px)}
.htech1__title{max-width:100%}
.htech1__sub{max-width:100%}
.htech1__pattern{top:2%;right:-22%;width:78vw;opacity:.04}
.htech1__eyebrow::before{width:24px}
.htech1__title--nowrap{white-space:normal}
}
@media (prefers-reduced-motion:no-preference){.htech1__accent{transition:none}}
/* Technologie: stejná výška hero jako Reference */
.page-technologie .htech1{padding-top:clamp(118px,12vw,150px);padding-bottom:clamp(40px,5vw,64px)}
@media (max-width:768px){.page-technologie .htech1{padding-top:clamp(104px,24vw,128px)}}
/* Reference: hero blíž k hornímu okraji, pattern může zasahovat níž */
.reference-archive .htech1{padding-top:clamp(118px,12vw,150px);padding-bottom:clamp(40px,5vw,64px)}
.reference-archive .htech1__pattern{top:-4%;right:-7%}
@media (max-width:768px){.reference-archive .htech1{padding-top:clamp(104px,24vw,128px)}}
/* Pro profesionály: hero blíž nahoru a menší mezera dole, pattern může zasahovat níž */
.page-pro-profesionaly .htech1{padding-top:clamp(118px,12vw,150px);padding-bottom:clamp(40px,5vw,64px)}
.page-pro-profesionaly #home-profi.pro-section{padding-top:12px}
.page-pro-profesionaly .htech1__pattern{top:-4%;right:-7%;opacity:.04}
.page-pro-profesionaly .pro-media{z-index:3}
.page-pro-profesionaly .pro-image{z-index:3}
@media (max-width:768px){.page-pro-profesionaly .htech1{padding-top:clamp(104px,24vw,128px)}
.page-pro-profesionaly .htech1__pattern{display:none}}

/* Pro profesionály: světlejší běžný text + zarovnání do bloku */
.page-pro-profesionaly .pro-col p,
.page-pro-profesionaly .pro-subcontent p{color:#3b424b;text-align:justify;hyphens:none}
.page-pro-profesionaly .pro-table tbody td{color:#3b424b}
.page-pro-profesionaly .htech1__sub{text-align:justify;hyphens:none}

/* Pro profesionály: sbalovatelné roletky */
.page-pro-profesionaly .pro-acc{
  margin-top:14px;
  border:1px solid #e7e7e4;
  border-radius:12px;
  background:#fff;
  transition:border-color .2s ease,box-shadow .2s ease;
}
.page-pro-profesionaly .pro-acc:first-of-type{margin-top:32px}
.page-pro-profesionaly .pro-acc:hover{border-color:#d9d9d4}
.page-pro-profesionaly .pro-acc[open]{
  border-color:#f0d4bd;
}

/* Kariéra: hero sekce */
.kariera-page .htech1{padding-top:clamp(118px,12vw,150px);padding-bottom:clamp(24px,3vw,40px)}
.kariera-page .htech1__pattern{top:-4%;right:-7%}
@media (max-width:768px){.kariera-page .htech1{padding-top:clamp(104px,24vw,128px)}}

/* FAQ: hero sekce */
.faq-page .htech1{padding-top:clamp(118px,12vw,150px);padding-bottom:clamp(24px,3vw,40px)}
.faq-page .htech1__pattern{top:-4%;right:-7%}
@media (max-width:768px){.faq-page .htech1{padding-top:clamp(104px,24vw,128px)}}

/* Nová zelená úsporám: hero sekce */
.nzu-page .htech1{padding-top:clamp(118px,12vw,150px);padding-bottom:clamp(24px,3vw,40px)}
.nzu-page .htech1__pattern{top:-4%;right:-7%}
@media (max-width:768px){.nzu-page .htech1{padding-top:clamp(104px,24vw,128px)}}

/* GDPR: hero sekce */
.gdpr-page .htech1{padding-top:clamp(118px,12vw,150px);padding-bottom:clamp(24px,3vw,40px)}
.gdpr-page .htech1__pattern{top:-4%;right:-7%}
@media (max-width:768px){.gdpr-page .htech1{padding-top:clamp(104px,24vw,128px)}}

/* Kontakt: hero sekce */
.kontakt-page .htech1{padding-top:clamp(118px,12vw,150px);padding-bottom:clamp(24px,3vw,40px)}
.kontakt-page .htech1__pattern{top:-4%;right:-7%}
@media (max-width:768px){.kontakt-page .htech1{padding-top:clamp(104px,24vw,128px)}}

/* Sekce za hero leží nad dekorativním patternem pro nové stránky */
.kariera-page > section:not(.htech1),
.faq-page > section:not(.htech1),
.nzu-page > section:not(.htech1),
.gdpr-page > section:not(.htech1),
.kontakt-page > section:not(.htech1){position:relative;z-index:1}

.page-pro-profesionaly .pro-acc__summary{
  display:flex;align-items:center;gap:14px;
  list-style:none;cursor:pointer;padding:18px 22px;
  font-size:1.18rem;font-weight:600;color:var(--color-black);
  user-select:none;transition:color .2s ease;
}
.page-pro-profesionaly .pro-acc__summary::-webkit-details-marker{display:none}
.page-pro-profesionaly .pro-acc__summary:hover{color:var(--color-primary)}
.page-pro-profesionaly .pro-acc__title{flex:1 1 auto}
.page-pro-profesionaly .pro-acc__icon{
  flex:none;width:30px;height:30px;padding:7px;border-radius:50%;
  background:#f4f4f2;color:#7a8087;
  transition:transform .25s ease,color .2s ease,background .2s ease;
}
.page-pro-profesionaly .pro-acc__summary:hover .pro-acc__icon{background:#fbe7d6;color:var(--color-primary)}
.page-pro-profesionaly .pro-acc[open] .pro-acc__icon{
  transform:rotate(180deg);background:var(--color-primary);color:#fff;
}
.page-pro-profesionaly .pro-acc__content{padding:0 22px 22px}
@media (max-width:768px){
  .page-pro-profesionaly .pro-acc__summary{font-size:1.05rem;padding:15px 16px}
  .page-pro-profesionaly .pro-acc__content{padding:0 16px 16px}
}

/* Pro profesionály: soubory ke stažení jako karty */
.page-pro-profesionaly .pro-files{
  display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:8px;
}
.page-pro-profesionaly .pro-file{
  display:flex;align-items:center;gap:16px;
  padding:16px 18px;border:1px solid #e7e7e4;border-radius:12px;
  background:#fff;text-decoration:none;color:var(--color-black);
  transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease;
}
.page-pro-profesionaly .pro-file:hover{
  border-color:#f0d4bd;
  box-shadow:0 8px 24px -16px rgba(239,125,23,.5);
  transform:translateY(-1px);
}
.page-pro-profesionaly .pro-file__icon{
  flex:none;display:grid;place-items:center;width:46px;height:46px;border-radius:10px;
  background:#fbe7d6;color:var(--color-primary);
}
.page-pro-profesionaly .pro-file__body{display:flex;flex-direction:column;gap:2px;min-width:0;flex:1 1 auto}
.page-pro-profesionaly .pro-file__title{font-size:1rem;font-weight:600;line-height:1.3}
.page-pro-profesionaly .pro-file__meta{font-size:.78rem;letter-spacing:.04em;text-transform:uppercase;color:#9aa0a6}
.page-pro-profesionaly .pro-file__dl{
  flex:none;display:grid;place-items:center;width:34px;height:34px;border-radius:50%;
  background:#f4f4f2;color:#7a8087;transition:background .2s ease,color .2s ease;
}
.page-pro-profesionaly .pro-file:hover .pro-file__dl{background:var(--color-primary);color:#fff}
@media (max-width:768px){
  .page-pro-profesionaly .pro-files{grid-template-columns:1fr}
}

/* --- htech2: Tmavý navy hero --- */
.htech2{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  padding:clamp(150px,16vw,210px) 24px clamp(72px,9vw,108px);
  background:linear-gradient(155deg,#232D79 0%,#1b2160 46%,#131835 100%);
  font-family:"Urbanist",sans-serif;
  color:#fff;
}
/* warm radial glow, top-left, behind content */
.htech2::before{
  content:"";
  position:absolute;
  z-index:0;
  top:-22%;
  left:-8%;
  width:62vw;
  height:62vw;
  max-width:760px;
  max-height:760px;
  background:radial-gradient(circle at 50% 50%,rgba(239,125,23,.42) 0%,rgba(231,65,27,.16) 38%,rgba(231,65,27,0) 70%);
  filter:blur(8px);
  pointer-events:none;
}
/* faint hairline at the very bottom for structure */
.htech2::after{
  content:"";
  position:absolute;
  z-index:0;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(112,118,175,.55) 50%,rgba(255,255,255,0) 100%);
  pointer-events:none;
}
/* brand pattern bleeding off the right, very subtle */
.htech2__deco{
  position:absolute;
  z-index:0;
  top:50%;
  right:-7%;
  width:clamp(360px,46vw,640px);
  transform:translateY(-50%) rotate(-6deg);
  opacity:.10;
  pointer-events:none;
  -webkit-user-select:none;
  user-select:none;
}
.htech2__inner{
  position:relative;
  z-index:1;
  max-width:1180px;
  margin:0 auto;
}
.htech2__col{
  max-width:760px;
}
.htech2__kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 clamp(22px,3vw,30px);
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}
.htech2__kicker::before{
  content:"";
  width:30px;
  height:2px;
  border-radius:2px;
  background:linear-gradient(90deg,#EF7D17,#E7411B);
}
.htech2__title{
  margin:0;
  font-weight:800;
  font-size:clamp(2.5rem,6.2vw,4.5rem);
  line-height:1.04;
  letter-spacing:-.02em;
  color:#fff;
}
.htech2__title span{
  background:linear-gradient(100deg,#EF7D17 0%,#E7411B 92%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:#E7411B;
}
.htech2__sub{
  margin:clamp(20px,3vw,26px) 0 0;
  max-width:600px;
  font-size:clamp(1.05rem,2vw,1.3rem);
  font-weight:400;
  line-height:1.6;
  color:rgba(225,228,242,.82);
}
.htech2__meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px 14px;
  margin:clamp(30px,4vw,40px) 0 0;
  list-style:none;
  padding:0;
}
.htech2__meta li{
  display:inline-flex;
  align-items:center;
  gap:14px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.02em;
  color:rgba(255,255,255,.72);
}
.htech2__meta li:not(:last-child)::after{
  content:"";
  width:4px;
  height:4px;
  border-radius:50%;
  background:#EF7D17;
  opacity:.9;
}
@media (max-width:768px){
  .htech2{padding:140px 20px 64px;}
  .htech2__deco{right:-22%;opacity:.07;width:clamp(300px,80vw,440px);}
  .htech2::before{top:-12%;width:90vw;height:90vw;}
  .htech2__sub{max-width:none;}
  .htech2__meta li:not(:last-child)::after{display:none;}
  .htech2__meta li:not(:last-child){
    padding-right:14px;
    border-right:1px solid rgba(255,255,255,.18);
  }
}

/* --- htech3: Asymetrické editorial --- */
.htech3{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:#fff;
  padding:clamp(150px,16vw,200px) clamp(20px,5vw,72px) clamp(72px,9vw,120px);
  font-family:"Urbanist",sans-serif;
  color:#000C12;
}
.htech3 .htech3__band{
  position:absolute;
  inset:0 -8% 0 auto;
  width:46%;
  background:linear-gradient(155deg,#232D79 0%,#131835 100%);
  clip-path:polygon(28% 0,100% 0,100% 100%,0 100%);
  z-index:-2;
  pointer-events:none;
}
.htech3 .htech3__pattern{
  position:absolute;
  top:clamp(120px,15vw,170px);
  right:clamp(-30px,-2vw,0px);
  width:clamp(180px,24vw,330px);
  opacity:.16;
  z-index:-1;
  pointer-events:none;
}
.htech3 .htech3__outline{
  position:absolute;
  left:-7%;
  bottom:-22%;
  width:clamp(220px,30vw,420px);
  opacity:.05;
  z-index:-1;
  pointer-events:none;
}
.htech3 .htech3__inner{
  position:relative;
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:clamp(36px,6vw,88px);
  align-items:start;
}
.htech3 .htech3__lead{
  position:relative;
  padding-left:clamp(20px,2.4vw,34px);
  max-width:760px;
}
.htech3 .htech3__lead::before{
  content:"";
  position:absolute;
  left:0;
  top:.35em;
  bottom:.4em;
  width:6px;
  border-radius:6px;
  background:linear-gradient(180deg,#EF7D17 0%,#E7411B 100%);
}
.htech3 .htech3__kicker{
  display:inline-block;
  font-size:clamp(.72rem,1.1vw,.82rem);
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#232D79;
  margin:0 0 clamp(18px,2.4vw,26px);
}
.htech3 .htech3__title{
  font-size:clamp(2.5rem,6.4vw,5rem);
  font-weight:800;
  line-height:1.02;
  letter-spacing:-.02em;
  margin:0;
  color:#000C12;
}
.htech3 .htech3__title sup{
  font-size:.34em;
  font-weight:700;
  top:-1.1em;
  color:#EF7D17;
}
.htech3 .htech3__sub{
  margin:clamp(22px,3vw,30px) 0 0;
  font-size:clamp(1.05rem,1.9vw,1.4rem);
  font-weight:500;
  line-height:1.45;
  color:#474747;
  max-width:30ch;
}
.htech3 .htech3__meta{
  position:relative;
  list-style:none;
  margin:clamp(8px,1vw,14px) 0 0;
  padding:0;
  display:flex;
  flex-direction:column;
  min-width:clamp(180px,17vw,232px);
}
.htech3 .htech3__meta li{
  position:relative;
  padding:clamp(16px,1.8vw,22px) 0 clamp(16px,1.8vw,22px) 22px;
  border-top:1px solid rgba(35,45,121,.14);
  font-size:clamp(.95rem,1.4vw,1.08rem);
  font-weight:700;
  line-height:1.25;
  color:#1B1F26;
}
.htech3 .htech3__meta li:last-child{
  border-bottom:1px solid rgba(35,45,121,.14);
}
.htech3 .htech3__meta li::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:7px;
  height:7px;
  border-radius:50%;
  background:#EF7D17;
}
.htech3 .htech3__meta li:nth-child(4){
  color:#232D79;
}
.htech3 .htech3__meta li:nth-child(4)::before{
  background:#E7411B;
}

@media (max-width:768px){
  .htech3{
    padding:clamp(140px,34vw,156px) 22px 64px;
  }
  .htech3 .htech3__band{
    inset:auto -12% -10% auto;
    width:78%;
    height:46%;
    clip-path:polygon(34% 0,100% 0,100% 100%,0 100%);
    opacity:.95;
  }
  .htech3 .htech3__pattern{
    top:auto;
    bottom:-4%;
    right:-8%;
    width:200px;
    opacity:.13;
  }
  .htech3 .htech3__inner{
    grid-template-columns:1fr;
    gap:34px;
  }
  .htech3 .htech3__sub{max-width:36ch;}
  .htech3 .htech3__meta{min-width:0;}
}

/* --- href1: Dark editorial --- */
.href1{position:relative;overflow:clip;background:linear-gradient(160deg,#232D79 0%,#1A2155 45%,#131835 100%);padding:clamp(150px,17vw,210px) clamp(20px,5vw,72px) clamp(72px,9vw,128px);font-family:"Urbanist",sans-serif;isolation:isolate}
.href1 *{box-sizing:border-box}
.href1__glow{position:absolute;inset:0;z-index:-2;pointer-events:none}
.href1__glow::before{content:"";position:absolute;top:-22%;right:-14%;width:min(58vw,720px);height:min(58vw,720px);border-radius:50%;background:radial-gradient(circle at center,rgba(239,125,23,.34) 0%,rgba(231,65,27,.12) 38%,transparent 70%);filter:blur(8px)}
.href1__glow::after{content:"";position:absolute;bottom:-30%;left:-16%;width:min(52vw,640px);height:min(52vw,640px);border-radius:50%;background:radial-gradient(circle at center,rgba(112,118,175,.30) 0%,transparent 68%)}
.href1__pattern{position:absolute;top:50%;right:clamp(-180px,-9vw,-60px);transform:translateY(-50%) rotate(-8deg);width:clamp(360px,46vw,640px);opacity:.10;z-index:-1;pointer-events:none;-webkit-mask-image:linear-gradient(105deg,transparent 0%,#000 55%);mask-image:linear-gradient(105deg,transparent 0%,#000 55%)}
.href1__pattern img{display:block;width:100%;height:auto}
.href1__grid{position:relative;z-index:1;max-width:1180px;margin-inline:auto;display:flex;flex-direction:column;align-items:flex-start;gap:clamp(22px,3vw,34px)}
.href1__chip{display:inline-flex;align-items:center;gap:10px;padding:9px 16px 9px 14px;border:1px solid rgba(239,125,23,.45);border-radius:100px;background:linear-gradient(90deg,rgba(239,125,23,.16),rgba(231,65,27,.05));backdrop-filter:blur(4px);color:#fff;font-size:13px;font-weight:600;letter-spacing:.04em;text-transform:uppercase}
.href1__chip-dot{width:7px;height:7px;border-radius:50%;background:#EF7D17;box-shadow:0 0 0 4px rgba(239,125,23,.20);flex:none}
.href1__chip strong{color:#EF7D17;font-weight:800}
.href1__title{margin:0;color:#fff;font-weight:800;line-height:1.02;letter-spacing:-.022em;font-size:clamp(2.6rem,7vw,5.4rem);max-width:14ch}
.href1__title .accent{position:relative;background:linear-gradient(96deg,#EF7D17,#E7411B);-webkit-background-clip:text;background-clip:text;color:transparent}
.href1__title .accent::after{content:"";position:absolute;left:.02em;right:.06em;bottom:-.1em;height:.08em;border-radius:4px;background:linear-gradient(90deg,#EF7D17,#E7411B);opacity:.55}
.href1__lead{margin:0;max-width:60ch;color:rgba(255,255,255,.74);font-size:clamp(1.02rem,1.7vw,1.3rem);line-height:1.6;font-weight:400}
.href1__lead .lead-strong{color:#fff;font-weight:600}
.href1__rule{width:clamp(64px,7vw,104px);height:3px;border-radius:3px;background:linear-gradient(90deg,#EF7D17,#E7411B);margin-top:2px}
.href1__title,.href1__chip,.href1__lead,.href1__rule{opacity:0;transform:translateY(18px);animation:href1-rise .8s cubic-bezier(.22,.61,.36,1) forwards}
.href1__chip{animation-delay:.05s}
.href1__title{animation-delay:.16s}
.href1__rule{animation-delay:.30s}
.href1__lead{animation-delay:.40s}
@keyframes href1-rise{to{opacity:1;transform:translateY(0)}}
@media (prefers-reduced-motion:reduce){.href1__title,.href1__chip,.href1__lead,.href1__rule{animation:none;opacity:1;transform:none}}
@media (max-width:768px){
.href1{padding-top:clamp(132px,32vw,160px)}
.href1__pattern{opacity:.07;right:-120px;width:300px}
.href1__title{font-size:clamp(2.3rem,11vw,3.4rem);max-width:100%}
.href1__lead{font-size:1.02rem}
.href1__glow::before{width:80vw;height:80vw;top:-10%}
}

/* --- href2: Editorial --- */
.href2{position:relative;overflow:clip;background:#fff;padding:clamp(150px,16vw,200px) clamp(20px,6vw,72px) clamp(64px,8vw,104px);font-family:"Urbanist",sans-serif;-webkit-font-smoothing:antialiased;isolation:isolate}
.href2 *{box-sizing:border-box}
.href2::before{content:"";position:absolute;top:-22%;right:-14%;width:min(56vw,720px);aspect-ratio:1/1;background:radial-gradient(circle at 50% 50%,rgba(239,125,23,.16),rgba(231,65,27,.07) 42%,transparent 68%);filter:blur(8px);z-index:-2;pointer-events:none}
.href2::after{content:"";position:absolute;bottom:-30%;left:-18%;width:min(46vw,560px);aspect-ratio:1/1;background:radial-gradient(circle at 50% 50%,rgba(35,45,121,.07),transparent 66%);z-index:-2;pointer-events:none}
.href2__deco{position:absolute;top:clamp(-40px,-3vw,-10px);right:clamp(-60px,-2vw,-20px);width:clamp(220px,30vw,420px);opacity:.10;transform:rotate(-4deg);z-index:-1;pointer-events:none;user-select:none}
.href2__inner{position:relative;max-width:1180px;margin:0 auto;z-index:1}
.href2__kicker{display:flex;align-items:center;gap:14px;margin:0 0 clamp(22px,3vw,34px);font-size:clamp(.7rem,1.4vw,.78rem);font-weight:700;letter-spacing:.26em;text-transform:uppercase;color:#7076AF}
.href2__kicker span{display:inline-block;width:clamp(30px,5vw,52px);height:2px;background:linear-gradient(90deg,#EF7D17,#E7411B);border-radius:2px}
.href2__title{margin:0;max-width:14ch;font-weight:800;font-size:clamp(2.6rem,8vw,6rem);line-height:.98;letter-spacing:-.02em;color:#000C12}
.href2__accent{position:relative;display:inline-block;color:#EF7D17;white-space:nowrap}
.href2__accent::after{content:"";position:absolute;left:-.02em;right:-.02em;bottom:.06em;height:.14em;background:linear-gradient(90deg,#EF7D17,#E7411B);border-radius:999px;transform:scaleX(0);transform-origin:left;animation:href2draw .9s cubic-bezier(.65,0,.2,1) .55s forwards}
@keyframes href2draw{to{transform:scaleX(1)}}
.href2__rule{margin:clamp(34px,4.5vw,52px) 0 clamp(26px,3vw,34px);width:clamp(56px,8vw,96px);height:3px;background:linear-gradient(90deg,#232D79,#7076AF);border-radius:3px}
.href2__sub{margin:0;max-width:62ch;font-size:clamp(1.02rem,2.1vw,1.28rem);line-height:1.62;font-weight:400;color:#474747}
.href2__sub b{font-weight:700;color:#1B1F26}
.href2__kicker,.href2__title,.href2__rule,.href2__sub{opacity:0;transform:translateY(18px);animation:href2up .8s cubic-bezier(.2,.7,.2,1) forwards}
.href2__kicker{animation-delay:.05s}
.href2__title{animation-delay:.16s}
.href2__rule{animation-delay:.3s;transform-origin:left}
.href2__sub{animation-delay:.4s}
@keyframes href2up{to{opacity:1;transform:translateY(0)}}
@media (prefers-reduced-motion:reduce){.href2 *{animation:none!important;opacity:1!important;transform:none!important}.href2__accent::after{transform:scaleX(1)}}
@media (max-width:768px){.href2{padding-top:clamp(132px,34vw,156px)}.href2__title{max-width:100%}.href2__deco{opacity:.07;width:clamp(180px,52vw,260px)}.href2__sub{max-width:100%}}

/* --- hpro1: Tmavý technický --- */
.hpro1{position:relative;overflow:clip;padding:clamp(150px,16vw,210px) clamp(20px,5vw,80px) clamp(72px,9vw,120px);background:radial-gradient(120% 140% at 82% 0%,#2a3690 0%,#232D79 38%,#131835 100%);color:#fff;font-family:"Urbanist",sans-serif;isolation:isolate}
.hpro1 *{box-sizing:border-box}
.hpro1__inner{position:relative;z-index:2;max-width:1180px;margin:0 auto}

/* blueprint grid + decoration */
.hpro1__grid{position:absolute;inset:0;z-index:0;background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);background-size:64px 64px;-webkit-mask-image:radial-gradient(110% 90% at 78% 8%,#000 0%,transparent 70%);mask-image:radial-gradient(110% 90% at 78% 8%,#000 0%,transparent 70%);pointer-events:none}
.hpro1__pattern{position:absolute;z-index:1;top:-6%;right:-8%;width:clamp(360px,46vw,720px);opacity:.10;transform:rotate(-4deg);pointer-events:none;filter:saturate(1.1)}
.hpro1__outline{position:absolute;z-index:1;bottom:-22%;left:-7%;width:clamp(280px,30vw,460px);opacity:.07;pointer-events:none}
.hpro1__glow{position:absolute;z-index:0;top:-30%;right:4%;width:46vw;height:46vw;max-width:620px;max-height:620px;background:radial-gradient(circle,rgba(239,125,23,.28),transparent 62%);filter:blur(8px);pointer-events:none}

/* kicker */
.hpro1__kicker{display:inline-flex;align-items:center;gap:11px;font-size:.74rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;color:#b9bfe8;margin:0 0 clamp(20px,3vw,30px)}
.hpro1__kicker::before{content:"";width:34px;height:1px;background:linear-gradient(90deg,#EF7D17,#E7411B)}

.hpro1__title{margin:0;font-weight:800;line-height:1.02;letter-spacing:-.02em;font-size:clamp(2.6rem,7vw,5rem)}
.hpro1__title em{font-style:normal;color:#EF7D17;background:linear-gradient(95deg,#EF7D17,#F0913B);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}

.hpro1__sub{margin:clamp(20px,3vw,30px) 0 0;max-width:50ch;font-size:clamp(1rem,1.5vw,1.22rem);line-height:1.6;font-weight:400;color:#cfd3ee}

/* chip row */
.hpro1__chips{display:flex;flex-wrap:wrap;align-items:center;margin:clamp(38px,5vw,58px) 0 0;padding-top:clamp(26px,3.4vw,38px);border-top:1px solid rgba(255,255,255,.12);gap:0}
.hpro1__chip{position:relative;display:flex;flex-direction:column;gap:5px;padding:0 clamp(20px,2.6vw,34px);min-width:0}
.hpro1__chip:first-child{padding-left:0}
.hpro1__chip:not(:first-child)::before{content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);width:1px;height:30px;background:rgba(255,255,255,.16)}
.hpro1__chip b{font-size:clamp(.92rem,1.3vw,1.06rem);font-weight:700;color:#fff;letter-spacing:-.01em;white-space:nowrap}
.hpro1__chip span{font-size:.7rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:#8f97c9}
.hpro1__chip:nth-child(4) b{color:#EF7D17}

@media (max-width:768px){
.hpro1{padding-left:20px;padding-right:20px}
.hpro1__sub{max-width:100%}
.hpro1__pattern{opacity:.08}
.hpro1__chips{flex-direction:column;align-items:flex-start;gap:18px;padding-top:26px}
.hpro1__chip{flex-direction:row;align-items:baseline;gap:10px;padding:0!important;width:100%}
.hpro1__chip:not(:first-child)::before{display:none}
.hpro1__chip b{white-space:normal}
.hpro1__chip span{order:2;color:#7c84bb}
}

/* --- hpro2: Editorial / technický --- */
.hpro2{position:relative;overflow:clip;background:#fff;padding:clamp(150px,16vw,196px) 0 clamp(56px,7vw,88px);font-family:"Urbanist",sans-serif;color:#000C12;isolation:isolate}
.hpro2 .hpro2__inner{position:relative;z-index:2;width:100%;max-width:1240px;margin:0 auto;padding:0 clamp(20px,5vw,48px)}
.hpro2 .hpro2__grid{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:flex-end;gap:clamp(32px,5vw,64px)}
.hpro2 .hpro2__eyebrow{display:flex;align-items:center;gap:12px;margin:0 0 clamp(22px,3vw,30px);font-size:13px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:#474747}
.hpro2 .hpro2__eyebrow::before{content:"";width:34px;height:2px;border-radius:2px;background:linear-gradient(90deg,#EF7D17,#E7411B);flex:none}
.hpro2 .hpro2__title{margin:0;font-weight:700;font-size:clamp(2.6rem,6.4vw,5rem);line-height:1.02;letter-spacing:-.025em;color:#000C12}
.hpro2 .hpro2__title em{font-style:normal;color:#EF7D17}
.hpro2 .hpro2__sub{margin:clamp(22px,3vw,30px) 0 0;max-width:46ch;font-size:clamp(1.02rem,1.6vw,1.22rem);line-height:1.62;font-weight:400;color:#1B1F26}
.hpro2 .hpro2__sub strong{font-weight:600;color:#000C12}
.hpro2 .hpro2__index{display:flex;align-items:flex-end;gap:14px;padding-bottom:6px;font-weight:700;line-height:1;color:#232D79;white-space:nowrap}
.hpro2 .hpro2__index span{font-size:clamp(2.4rem,5vw,3.6rem);letter-spacing:-.04em}
.hpro2 .hpro2__index small{font-size:13px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:#7076AF;transform:translateY(-4px)}
.hpro2 .hpro2__chips{display:flex;flex-wrap:wrap;gap:10px;margin:clamp(34px,4.5vw,48px) 0 0;padding-top:clamp(28px,3.5vw,38px);border-top:1px solid rgba(35,45,121,.12)}
.hpro2 .hpro2__chip{display:inline-flex;align-items:center;gap:9px;padding:9px 16px;border:1px solid rgba(35,45,121,.16);border-radius:999px;font-size:13.5px;font-weight:600;letter-spacing:.01em;color:#1B1F26;background:rgba(112,118,175,.045)}
.hpro2 .hpro2__chip::before{content:"";width:7px;height:7px;border-radius:50%;background:#EF7D17;flex:none}
.hpro2 .hpro2__chip:nth-child(2)::before{background:#232D79}
.hpro2 .hpro2__chip:nth-child(3)::before{background:#E7411B}
.hpro2 .hpro2__chip:nth-child(4)::before{background:#7076AF}
.hpro2 .hpro2__deco{position:absolute;z-index:1;top:clamp(96px,11vw,128px);right:clamp(-90px,-4vw,-40px);width:clamp(300px,38vw,520px);opacity:.085;pointer-events:none;transform:rotate(-2deg)}
.hpro2 .hpro2__deco img{display:block;width:100%;height:auto}
.hpro2 .hpro2__edge{position:absolute;z-index:0;left:0;top:0;width:6px;height:100%;background:linear-gradient(180deg,#EF7D17,#E7411B 45%,#232D79);opacity:.9}
@media (max-width:768px){
.hpro2{padding-top:clamp(132px,32vw,150px)}
.hpro2 .hpro2__grid{grid-template-columns:1fr;align-items:flex-start;gap:24px}
.hpro2 .hpro2__index{order:-1;padding-bottom:0}
.hpro2 .hpro2__deco{top:auto;bottom:-40px;right:-110px;width:300px;opacity:.07}
.hpro2 .hpro2__sub{max-width:none}
.hpro2 .hpro2__chips{margin-top:30px}
}

/* fix: htech3 meta list sits on navy band -> light text */
.htech3 .htech3__meta li,
.htech3 .htech3__meta li:nth-child(4) { color: rgba(255, 255, 255, 0.9); }
