/* CSS Proměnné - podle zadání a vzoru */
:root {
  --primary: #fb6f62;
  --secondary: #fea05f;
  --gradient-primary: linear-gradient(135deg, #fea05f 0%, #fb6f61 100%);
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --text-main: #333333;
  --text-muted: #666666;
  --border-color: #eaeaea;
  --font-main: 'Outfit', sans-serif;
  
  --border-radius: 20px;
  --border-radius-sm: 12px;
  --border-radius-lg: 32px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 15px 50px rgba(251, 111, 98, 0.15);
  
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  
  /* 8px Grid Spacing */
  --space-1: 0.5rem;   /* 8px */
  --space-2: 1rem;     /* 16px */
  --space-3: 1.5rem;   /* 24px */
  --space-4: 2rem;     /* 32px */
  --space-5: 2.5rem;   /* 40px */
  --space-6: 3rem;     /* 48px */
  --space-8: 4rem;     /* 64px */
  --space-12: 6rem;    /* 96px */
  --space-16: 8rem;    /* 128px */
}

/* Reset a Základy */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* Typografie */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: var(--space-3);
}

h1 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  margin-bottom: var(--space-3);
  max-width: 70vw;
}

/* Layout */
.container {
  width: 85%;
  max-width: 1400px;
  margin: 0 auto;
}

.section {
  padding: var(--space-12) 0;
}

.section-bg {
  background-color: var(--bg-secondary);
}

/* Grid Systém */
.grid {
  display: grid;
  gap: var(--space-4);
}

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

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

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

/* Utils */
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0 !important; }
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Tlačítka */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  font-size: 1.125rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 25px rgba(251, 111, 98, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(251, 111, 98, 0.4);
  color: white;
}

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

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  color: var(--primary);
}

/* Navigace */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0 0 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-bar {
  display: flex;
  align-items: center;
  background: white;
  padding: 12px 6px 12px 28px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  flex-shrink: 0;
  margin-right: 2rem;
}

.logo img {
  height: auto;
  width: 160px;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  white-space: nowrap;
}

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

/* CTA tlačítko v menu (text + barevný kroužek se šipkou) */
.nav-cta-btn {
  display: none;
  align-items: center;
  border: 1.5px solid var(--border-color);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
  padding-left: 20px;
  margin-left: auto;
  white-space: nowrap;
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.nav-cta-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.nav-cta-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.nav-cta-btn:hover .nav-cta-icon {
  transform: rotate(-45deg);
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-main);
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta-btn { display: flex; }
  .hamburger { display: none; }
}

/* Mobilní menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform var(--transition-normal);
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  margin-bottom: var(--space-4);
}

.mobile-menu a {
  font-size: 2rem;
  font-weight: 700;
}

/* Hero (Zarovnané na střed jako vzor) */
.hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-12);
  text-align: center;
  background: radial-gradient(circle at top, rgba(254, 160, 95, 0.05), transparent 60%);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  margin-left: auto;
  margin-right: auto;
}

.hero-benefits {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-main);
  background: rgba(46, 204, 113, 0.08);
  padding: 8px 16px;
  border-radius: 50px;
}

.hero-benefit i {
  color: #2ecc71;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .hero-benefits {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.2rem;
  background-color: white;
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.badge:hover,
section:hover .badge {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 15px rgba(251, 111, 98, 0.2) !important;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-4);
  font-weight: 600;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.stars { color: #fbbc04; }

/* Karty Služeb (jako ve vzoru: bílé, border, ikona) */
.service-card {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--space-5);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 20px rgba(251, 111, 98, 0.3);
  border-radius: 16px;
}

.service-icon i {
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon i {
  transform: scale(1.1);
}

/* Slider pro realizace */
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-4);
}

.slider-arrows {
  display: flex;
  gap: 10px;
}

.arrow-btn {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: none;
  background: rgba(251, 111, 98, 0.15);
  color: var(--primary);
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.slider-container {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: var(--space-4);
  transition: transform 0.4s ease-in-out;
}

.slider-slide {
  flex: 0 0 calc(50% - (var(--space-4) / 2));
  min-width: 0;
}

@media (max-width: 768px) {
  .slider-slide {
    flex: 0 0 100%;
  }
}

/* Portfolio (Gradient pozadí s obrázky uvnitř) */
.portfolio-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--gradient-primary);
  padding: var(--space-2) var(--space-4) 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  height: 100%;
  transition: var(--transition-normal);
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.portfolio-card:hover {
  box-shadow: var(--shadow-hover);
}

.portfolio-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.portfolio-link img {
  width: 100%;
  transition: filter var(--transition-normal);
  display: block;
}

.portfolio-link:hover img {
  filter: brightness(0.4);
}

.portfolio-tooltip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0;
  transition: all var(--transition-normal);
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}

.portfolio-link:hover .portfolio-tooltip {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

/* Portfolio Card Info Upgrade */
.portfolio-card {
    display: flex !important;
    flex-direction: column;
}

.portfolio-info {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem 0.5rem 1.5rem;
    color: white !important;
}

.portfolio-category {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.9;
    margin-bottom: 0.6rem;
    color: white !important;
}

.portfolio-card h3 {
    margin-bottom: 0.8rem;
    color: white !important;
    font-size: 1.8rem !important;
}

.portfolio-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff !important;
    opacity: 1 !important;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 0.5rem;
}

.portfolio-tags span {
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.portfolio-tags i {
    font-size: 0.8rem;
    color: white !important;
}

/* Redesigned Social Proof Bar - Horizontal on Desktop */
.portfolio-trust-bar {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    margin-top: 4rem !important;
    padding-top: 4rem !important;
}

@media (max-width: 1024px) {
    .portfolio-trust-bar {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .portfolio-trust-bar {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 1rem !important;
    }
}

.trust-card {
    background: white;
    padding: var(--space-4);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-normal);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1.2rem;
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
}

.trust-card span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
    display: block;
    line-height: 1.3;
}

/* Stats pruh jako ve vzoru */
.stats-bar {
  background: transparent;
  padding: var(--space-6) var(--space-4);
  border-radius: var(--border-radius-lg);
  margin: var(--space-8) 0;
  position: relative;
  z-index: 1;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  padding: 3px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-number {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-text {
  font-weight: 600;
}

/* --- GOOGLE REVIEWS STYLES --- */
.testimonials-google {
  padding-top: var(--space-8) !important;
  padding-bottom: var(--space-8) !important;
}

.google-reviews-wrapper {
  margin-top: var(--space-6);
  position: relative;
}

.google-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fdfdfd;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 15px 25px;
  margin: 0 40px 30px 40px;
  flex-wrap: wrap;
  gap: 15px;
}

.google-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.google-logo-full {
  height: 28px;
}

.google-rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Arial', sans-serif;
}

.excellent-text {
  font-weight: 700;
  color: #3c4043;
  font-size: 1.1rem;
}

.rating-number {
  font-weight: 700;
  color: #3c4043;
}

.reviews-count {
  color: #70757a;
  padding-left: 5px;
  border-left: 1px solid #dadce0;
}

.write-review-btn {
  padding: 8px 16px;
  border: 1px solid #dadce0;
  border-radius: 8px;
  font-weight: 500;
  color: #70757a;
  font-size: 0.85rem;
  background: white;
  transition: all 0.2s;
}

.write-review-btn:hover {
  background: #f8f9fa;
  color: #3c4043;
}

/* Slider Track for Reviews */
.reviews-slider-container {
  position: relative;
  overflow: visible;
}

.reviews-track-window {
  overflow: hidden;
  margin: 0 40px;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  align-items: flex-start; /* Důležité: Karty se nebudou natahovat na stejnou výšku */
}

.review-google-card {
  flex: 0 0 calc(33.333% - 14px);
  background: #fdfdfd; /* Světlejší pozadí jako v headeru */
  border: 1px solid #eeeeee; /* Jemný border */
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  text-align: left;
  transition: box-shadow 0.3s ease;
}

.review-google-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

@media (max-width: 1024px) {
  .review-google-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .review-google-card {
    flex: 0 0 100%;
  }
  .reviews-track-window {
    margin: 0;
  }
}

.card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.reviewer-meta {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  color: #3c4043;
  margin: 0;
}

.review-date {
  font-size: 0.85rem;
  color: #70757a;
}

.google-icon-card {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
}

.card-stars-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.verified-badge {
  color: #1a73e8;
  font-size: 0.9rem;
}

.review-content {
  font-size: 0.95rem;
  color: #3c4043;
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.review-content.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.read-more {
  margin-top: auto;
  font-size: 0.9rem;
  color: #70757a;
  font-weight: 500;
  cursor: pointer;
  padding-top: 5px;
}

.review-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid #eeeeee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.2s;
}

.review-nav-btn:hover {
  background: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.review-nav-btn.prev { left: -20px; }
.review-nav-btn.next { right: -20px; }

@media (max-width: 768px) {
  .review-nav-btn { display: none; }
}

/* Ceník Styles */
.pricing-section {
  padding-top: 5.375rem !important;
  padding-bottom: 4.75rem !important;
}

.included-features-wrapper {
  margin-top: 5px;
  padding: 5px 0;
  border-top: none;
  display: inline-block;
  width: 100%;
}

.included-title {
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.included-features-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 40px;
  color: var(--text-main);
  font-size: 1rem;
}

.included-features-list span {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 500;
}

.included-features-list i {
  color: #34A853;
  font-size: 0.85rem;
}

.price-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--space-6) var(--space-4);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
  text-align: center;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.price-card.popular {
  border: 2px solid var(--primary);
  box-shadow: 0 15px 40px rgba(251, 111, 98, 0.1);
  padding-top: calc(var(--space-6) + 10px);
  padding-bottom: calc(var(--space-6) + 10px);
  z-index: 2;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(251, 111, 98, 0.3);
  white-space: nowrap;
}

.extension-card {
  border: 1px solid #dadce0 !important;
  background: #fcfcfc !important;
}

.extension-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #70757a;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid #dadce0;
  white-space: nowrap;
}

.price-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.price-value {
  margin: 2px 0 0.8rem 0;
  color: var(--text-main);
}

.price-from {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-value .amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-main);
}

.price-value .currency {
  font-size: 1.2rem;
  font-weight: 600;
}

.price-features {
  list-style: none;
  margin-bottom: var(--space-5);
  text-align: left;
  flex: 1;
}

.price-features li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-features i {
  color: #16a34a;
  margin-top: 4px;
  font-size: 1.1rem;
}

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

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

/* Split Sekce (Levý barevný blok, pravý text) */
.split-box {
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-box h2, .split-box h3 {
  color: white;
}

.split-list-item {
  display: flex;
  gap: 20px;
  margin-bottom: var(--space-4);
}

.split-list-item h4 {
  margin-bottom: 0.25rem;
}

.split-icon {
  width: 40px;
  height: 40px;
  background: rgba(251, 111, 98, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.split-list-item {
  transition: transform 0.25s ease;
  cursor: default;
}

.split-list-item:hover {
  transform: translateX(6px);
}

.split-list-item:hover .split-icon {
  background: rgba(251, 111, 98, 0.22);
  transform: scale(1.12);
}

/* Kontaktní linky */
.contact-link {
  display: flex !important;
  align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: #444444 !important;
  text-decoration: none !important;
  transition: transform 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.contact-link .split-icon {
  background: var(--gradient-primary) !important;
  color: white !important;
  border-radius: 14px !important;
  width: 48px !important;
  height: 48px !important;
  font-size: 1.1rem !important;
  box-shadow: 0 4px 12px rgba(251, 111, 98, 0.3);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-link:hover {
  transform: translateX(5px) !important;
  color: #fb6f62 !important;
}

.contact-link:hover .split-icon {
  box-shadow: 0 6px 20px rgba(251, 111, 98, 0.5) !important;
  transform: scale(1.08) !important;
}

/* Timeline Curve SVG — hidden on desktop, shown on mobile */
.timeline-curve-svg { display: none; }

/* Timeline Styling */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0 60px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: var(--border-color);
  top: -40px;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
  z-index: 0;
}

.timeline-start-icon {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(251, 111, 98, 0.3);
}

@media (max-width: 768px) {
  .timeline-start-icon {
    left: 31px;
    width: 40px;
    height: 40px;
    top: -80px;
    font-size: 1rem;
  }
}

.timeline-progress {
  position: absolute;
  width: 2px;
  background: var(--gradient-primary);
  top: -40px;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
  height: 0%;
  z-index: 1;
}

.timeline-item {
  padding: 5px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: var(--space-1);
  z-index: 2;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: white;
  border: 2px solid var(--border-color);
  top: 25px;
  border-radius: 50%;
  z-index: 3;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.active-step::after {
  border-color: var(--primary);
  background-color: var(--primary);
  box-shadow: 0 0 10px rgba(251, 111, 98, 0.3);
  transform: scale(1.2);
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.right::after {
  left: -8px;
}

.timeline-content {
  padding: 30px 25px 20px 25px;
  background-color: white;
  position: relative;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.timeline-item.active-step .timeline-content {
  border-color: rgba(251, 111, 98, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.timeline-item:hover .timeline-content {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary);
}

.timeline-item:hover::after {
  transform: scale(1.4);
  background-color: var(--primary);
  box-shadow: 0 0 15px rgba(251, 111, 98, 0.4);
}

.timeline-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.12;
  position: absolute;
  top: 10px;
  right: 40px;
  line-height: 1;
  transition: all 0.4s ease;
  user-select: none;
}

.timeline-item:hover .timeline-number {
  opacity: 0.25;
  transform: translateY(-5px) scale(1.05);
}

.timeline-item.right .timeline-number {
  left: 50px;
  right: auto;
}

.btn-timeline {
  display: inline-block;
  padding: 18px 45px;
  background: #f8f9fa;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  filter: none;
}

.btn-timeline.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-primary);
  transform: translateY(-3px) scale(1.05);
  filter: none;
}

.btn-timeline:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.btn-timeline.active:hover {
  transform: translateY(-5px) scale(1.07);
  box-shadow: 0 12px 25px rgba(251, 111, 98, 0.3);
}

@media screen and (max-width: 768px) {
  .timeline::after, .timeline-progress {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 15px;
    text-align: left !important;
  }
  
  .timeline-item::after {
    left: 21px;
    right: auto;
  }
  
  .timeline-item.right {
    left: 0%;
  }

  .timeline-item.right::after {
    left: 21px;
  }

  /* Reduce bottom padding so SVG curve connects cleanly */
  .timeline {
    padding-bottom: 10px !important;
  }

  /* SVG curve connecting timeline line to button */
  .timeline-curve-svg {
    display: block;
    width: 100%;
    height: 70px;
    overflow: visible;
  }

  .timeline-curve-bg {
    stroke: var(--border-color);
    stroke-width: 2;
  }

  .timeline-curve-fill {
    stroke: #fb6f62;
    stroke-width: 2;
  }

  .timeline-number {
    right: 30px !important;
    left: auto !important;
    top: 10px !important;
  }
}

/* Finish Moment - Last Step Highlight */
.finish-moment.active-step .timeline-content {
  border: 1px solid var(--primary);
  box-shadow: 0 15px 40px rgba(251, 111, 98, 0.1);
}

.finish-moment.active-step::after {
  background-color: var(--primary) !important;
  box-shadow: 0 0 0 6px rgba(251, 111, 98, 0.15);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(251, 111, 98, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(251, 111, 98, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 111, 98, 0); }
}

.timeline-trust .status-dot::after {
  width: 12px;
  height: 12px;
  top: -2px;
  left: -2px;
}

/* Široké CTA */
.cta-banner {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  padding: var(--space-8) var(--space-4);
  text-align: center;
  color: white;
}

.cta-banner h2 { color: white; }

/* Formulář */
.form-box {
  background: var(--gradient-primary);
  padding: var(--space-6);
  border-radius: var(--border-radius-lg);
  color: white;
}

.form-box h3 { color: white; }

.form-control {
  width: 100%;
  padding: 1.2rem;
  border: none;
  border-radius: var(--border-radius-sm);
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.1);
  color: white;
}

.form-control::placeholder {
  color: rgba(255,255,255,0.7);
}

.form-control:focus {
  outline: 2px solid white;
  background: rgba(255,255,255,0.2);
}

.form-box .btn {
  width: 100%;
  background: white;
  color: var(--primary);
  margin-top: 1rem;
}

/* FAQ 2 sloupce */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .faq-grid { grid-template-columns: 1fr 1fr; }
}

.accordion-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 0 var(--space-4);
  margin-bottom: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-color: rgba(251, 111, 98, 0.2);
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-4) 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-icon-wrapper {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
}

.accordion-header:hover .faq-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(251, 111, 98, 0.3);
}

.accordion-icon {
  transition: transform 0.4s ease;
}

.accordion-header.active .faq-icon-wrapper {
  background: #444;
  transform: rotate(45deg);
}

.accordion-header.active .accordion-icon {
  transform: rotate(0deg); /* Wrapper rotates instead for cleaner look */
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content p {
  padding-bottom: var(--space-4);
  color: var(--text-muted);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.accordion-header.active + .accordion-content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* Patička */
.footer {
  padding: var(--space-6) 0 var(--space-3);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-logo {
  height: 32px;
  margin-left: -10px;
  margin-bottom: 1.2rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

.footer h4 { 
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.2rem;
  opacity: 0.9;
}

.footer ul { list-style: none; }
.footer li { 
  margin-bottom: 0.6rem; 
  color: var(--text-muted);
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer li a {
  transition: all var(--transition-fast);
  color: var(--text-muted);
  text-decoration: none;
}

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

/* Animace */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Online Status Badge */
.online-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f1f1f1;
  color: #333333;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1.5rem;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.status-dot {
  width: 10px;
  height: 10px;
  background-color: #22c55e;
  border-radius: 50%;
  position: relative;
}

.status-dot::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 14px;
  height: 14px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
  opacity: 0.5;
}

.trust-signal-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-icon-ring {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #34A853;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
  opacity: 0.5;
  z-index: 1;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  70% {
    transform: scale(2.5);
    opacity: 0;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

@keyframes icon-pulse {
  0%, 100% { 
    transform: scale(1); 
    color: #34A853;
  }
  50% { 
    transform: scale(1.5); 
    color: #34A853;
    text-shadow: 0 0 10px rgba(52, 168, 83, 0.6);
  }
}

.pulsing-icon {
  animation: icon-pulse 2s infinite;
  display: inline-block;
}

/* City tagy – sekce "Tvorba webu po celé ČR" na homepage */
.city-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  background: white;
  border: 1.5px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.city-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(251, 111, 98, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 111, 98, 0.12);
}

.city-tag--small {
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  border-color: #e5e5e5;
  background: transparent;
}

.city-tag--small:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(251, 111, 98, 0.04);
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 320px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  padding: 1.25rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner-inner p {
  margin: 0 0 1rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 100%;
}

.cookie-banner-btns {
  display: flex;
  gap: 0.6rem;
}

.cookie-btn-accept {
  flex: 1;
  padding: 0.55rem 1rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-btn-accept:hover { opacity: 0.88; }

.cookie-btn-reject {
  flex: 1;
  padding: 0.55rem 1rem;
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.cookie-btn-reject:hover {
  border-color: var(--text-muted);
  color: var(--text-main);
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
  }
}

/* ===== MOBILNÍ OPRAVY ===== */

/* Horizontal scroll – html level */
html {
  overflow-x: clip;
}

/* Mobilní šipky slajderu – na desktopu skryté */
.slider-arrows-mobile {
  display: none;
}

@media (max-width: 768px) {

  /* 1. Slider nadpis – max 3 řádky, skrýt <br> */
  .slider-header h2 {
    font-size: 1.7rem !important;
    line-height: 1.25 !important;
  }
  .slider-header h2 br {
    display: none !important;
  }

  /* 2. Slider šipky – skrýt v headeru, zobrazit centrovaně pod projekty */
  .slider-header .slider-arrows {
    display: none !important;
  }
  .slider-arrows-mobile {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    margin-top: var(--space-4);
  }

  /* 3. Google recenze header – kompletní responzivní přeskládání */
  .google-reviews-header {
    margin: 0 0 20px 0 !important;
    padding: 14px 16px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .google-info {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    width: 100%;
  }
  .google-rating-summary {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center;
    gap: 6px !important;
    font-size: 0.9rem;
    width: 100%;
  }
  /* Skrýt "Důvěřují nám klienti z celé ČR" – příliš široké na mobil */
  .trust-signal-text {
    display: none !important;
  }
  .write-review-btn {
    width: 100% !important;
    text-align: center !important;
    display: block !important;
  }

  /* 4. Sekce padding – zmenšit na mobilu */
  .section {
    padding-top: var(--space-8) !important;
    padding-bottom: var(--space-8) !important;
  }
  .pricing-section {
    padding-top: var(--space-8) !important;
    padding-bottom: var(--space-8) !important;
  }

  /* 5. Ceník karta – boční padding -30% */
  .price-card {
    padding-left: 1.4rem !important;
    padding-right: 1.4rem !important;
  }

  /* 6. Pricing reassurance – zmenšit horní mezeru o 30% */
  .pricing-reassurance {
    margin-top: 1.4rem !important;
  }

  /* 7. Proč si vybrat nás – pravý sloupec: odebrat padding-left, zmenšit mezery */
  #proc-my .grid > div:last-child {
    padding-left: 0 !important;
  }
  .split-list-item {
    margin-bottom: 1.4rem !important;
  }

  /* 8. Split-box – menší boční padding na mobilu */
  .split-box {
    padding: 1.5rem 1.25rem !important;
  }

  /* 9. Statistiky v split-boxu – 2×2 i na mobilu */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* 10. Formulář – menší boční padding na mobilu */
  .form-box {
    padding: var(--space-6) 1rem !important;
  }

  /* 11. Patička – copyright text vycentrovat */
  .footer-copyright {
    text-align: center !important;
  }
  .footer-copyright p {
    font-size: 0.82rem !important;
    line-height: 1.8 !important;
    text-align: center !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer-copyright .footer-sep {
    display: none !important;
  }
  .footer-copyright a {
    display: block !important;
    text-align: center !important;
  }
}

