@charset "UTF-8";
:root {
  --primary-color: #71FFB2;
  --primary-dark: #37DE6A;
  --secondary-color: #007FD3;
  --light-bg: #f8fffe;
  --light-green: #f0f9f8;
}

/* Breadcrumb */
.breadcrumb-section {
  margin-top: 1rem;
  background: var(--light-green);
  padding: 1rem 0;
}

.breadcrumb {
  background: none;
  margin-bottom: 0;
  font-size: 15px;
}
.breadcrumb li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumb-item a {
  color: var(--secondary-color);
  text-decoration: none;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 4rem 0;
}

.hero-section h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  .hero-section .lead {
    font-size: 1.15rem;
  }
}

.client-info-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
}

.info-item {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .info-item {
    margin-bottom: 1rem;
  }
}

.info-item .info-label {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.info-item .info-value {
  font-size: 1.125rem;
  font-weight: bold;
}

/* Results Cards */
.results-section {
  padding: 4rem 0;
}

.result-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  height: 100%;
  border: none;
}

.result-card:hover {
  transform: translateY(-5px);
}

.result-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.result-text {
  color: #666;
  font-size: 1rem;
}

/* Content Sections */
.content-section {
  padding: 2rem 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
}

.content-card {
  background: white;
  border-radius: 15px;
  margin-bottom: 3rem;
}

/* Performance Table */
.table-container {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}
@media screen and (max-width: 768px) {
  .table-container {
    padding: 2rem 0;
  }
}

.table thead th {
  background: var(--light-green);
  border: none;
  font-weight: bold;
  color: #333;
  padding: 1rem;
}

.table tbody td {
  padding: 1rem;
  border-color: #eee;
}

.table tbody tr:hover {
  background: var(--light-bg);
}

.revenue-cell {
  font-weight: bold;
  color: var(--primary-dark);
}

/* Chart Section */
.chart-container {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin: 2rem 0 4rem;
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.chart-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.chart-legend .legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
.chart-legend .legend-color.revenue {
  background: linear-gradient(135deg, #37DE6A 0%, #71FFB2 100%);
}
.chart-legend .legend-color.costs {
  background: linear-gradient(135deg, #007FD3 0%, #71D4FF 100%);
}

.chart-placeholder {
  height: 400px;
  background: linear-gradient(135deg, #f8fffe 0%, #e0f7fa 100%);
  border-radius: 10px;
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem 1rem 3rem 1rem;
}

.chart-bars {
  display: flex;
  align-items: end;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  gap: 1rem;
}

.chart-month-group {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  gap: 0.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .chart-month-group {
    flex-direction: column;
    align-items: center;
  }
}
.chart-month-group::after {
  content: attr(data-month);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
}

.chart-bar {
  width: 45px;
  border-radius: 5px 5px 0 0;
  position: relative;
  animation: growBar 2s ease-out;
  animation-play-state: paused;
  animation-fill-mode: both;
  transition: all 0.3s ease;
}
.chart-bar.revenue {
  background: linear-gradient(135deg, #37DE6A 0%, #71FFB2 100%);
  box-shadow: 0 4px 8px rgba(55, 222, 106, 0.3);
}
.chart-bar.revenue:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(55, 222, 106, 0.4);
}
.chart-bar.costs {
  background: linear-gradient(135deg, #007FD3 0%, #71D4FF 100%);
  box-shadow: 0 4px 8px rgba(0, 127, 211, 0.3);
}
.chart-bar.costs:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 127, 211, 0.4);
}
.chart-bar::before {
  content: attr(data-value);
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes growBar {
  from {
    height: 0;
  }
}
/* Animation trigger when in viewport */
.chart-container.animate .chart-bar {
  animation-play-state: running;
}

/* Staggered animation delays for better visual effect */
.chart-container.animate .chart-month-group:nth-child(1) .chart-bar {
  animation-delay: 0s;
}

.chart-container.animate .chart-month-group:nth-child(2) .chart-bar {
  animation-delay: 0.2s;
}

.chart-container.animate .chart-month-group:nth-child(3) .chart-bar {
  animation-delay: 0.4s;
}

.chart-container.animate .chart-month-group:nth-child(4) .chart-bar {
  animation-delay: 0.6s;
}

.chart-container.animate .chart-month-group:nth-child(5) .chart-bar {
  animation-delay: 0.8s;
}

/* Sidebar */
.sidebar-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 4rem;
}

.sidebar-item {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.sidebar-item:last-child {
  border-bottom: none;
}

.sidebar-label {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.sidebar-value {
  font-weight: bold;
  color: #333;
}

/* Key Takeaway */
.key-takeaway-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 4rem 0;
  margin: 4rem 0;
}

.key-takeaway-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.key-takeaway-section p {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.btn-cta-large {
  background: var(--primary-color);
  color: white;
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-cta-large:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: white;
}

/* Performance Metrics */
.performance-metric {
  background: linear-gradient(135deg, var(--light-green) 0%, #f0f9f8 100%);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(55, 222, 106, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.performance-metric:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.metric-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .chart-bar {
    width: 35px;
  }

  .chart-legend {
    gap: 1rem;
  }
  .chart-legend .legend-item {
    font-size: 0.8rem;
  }

  .chart-bars {
    gap: 0.5rem;
  }

  .chart-month-group::after {
    font-size: 0.7rem;
  }
}
.article-image {
  border-radius: 15px;
}

.article-content {
  padding: 4rem 0;
}
.article-content .content-section {
  padding: 2rem 0;
}

/* Minimalistický styl pro sekci mýtů */
.myths-section dt {
  font-weight: bold;
  margin-top: 1.5rem;
}

.myths-section dd {
  margin-bottom: 1.5rem;
  margin-left: 0;
  padding-left: 1rem;
  border-left: 2px solid #eaeaea;
}

.myths-section .myth-quote {
  color: #555;
  font-style: italic;
}

.myths-section .myth-response {
  margin-top: 0.5rem;
}

/* Benefity */
.benefits-list {
  padding: 0;
  margin: 2rem 0;
  list-style-type: none;
}

.benefits-list li {
  position: relative;
  margin-bottom: 1.25rem;
  padding: 1rem 1rem 1rem 3rem;
  background-color: #fafafa;
  border-left: 3px solid #3498db;
  border-radius: 4px;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #3498db;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}

.benefits-list h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #333;
}

.benefits-list p {
  margin-bottom: 0;
  color: #555;
}

/* Partners Section */
.partners-section {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: center;
}