/* Základní proměnné */
:root {
  --primary-blue: #013479;
  --secondary-orange: #ffb000;
  --navbar-icon-color: #00aabf;
  --tertiary-purple: #898eba;
  --tertiary-cyan: #00cfe0;
  --white: #FFFFFF;
  --light-gray: #f8f9fa;
  --soft-bg: #fafbfd;
  --text-dark: #013479;
  --text-muted: #013479;
}

/* Reset a základní styly */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'PT Serif', serif;
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--white);
  font-weight: 400;
}

/* Navigace */
.navbar {
  padding: 1rem 3rem;
}

.navbar .container-fluid {
  max-width: 100%;
  padding: 0;
}

.logo-circle {
  width: 50px;
  height: 50px;
  border: 3px solid var(--primary-blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-blue);
  position: relative;
}

.logo-text {
  position: absolute;
  left: 55px;
  font-size: 1.5rem;
  color: var(--primary-blue);
  white-space: nowrap;
}

.navbar-nav {
  display: flex;
  gap: 3rem;
  width: 100%;
  justify-content: center;
}

.nav-link {
  color: var(--primary-blue) !important;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: all 0.3s;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-item.has-megamenu:hover .nav-link {
  color: var(--primary-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-item.has-megamenu:hover .nav-link::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--primary-blue);
}

.phone-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Tlačítka */
.btn-primary {
  background: var(--secondary-orange);
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 3px;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(255, 176, 0, 0.3);
}

.btn-primary:hover {
  background: var(--secondary-orange);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 176, 0, 0.3);
}

.btn-blue {
  background: #013479;
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 3px;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(1, 52, 121, 0.2);
}

.btn-blue:hover {
  background: #013479;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(1, 52, 121, 0.45);
}

.btn-secondary {
  background: var(--secondary-orange);
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 3px;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(255, 176, 0, 0.3);
}

.btn-secondary:hover {
  background: var(--secondary-orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 176, 0, 0.45);
}

/* Hero sekce - Full-width image */
.hero-diagonal {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-bg-image {
  width: 100%;
  z-index: 0;
  line-height: 0;
}

.hero-bg-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-blur-overlay {
  display: none;
}

.hero-content-section {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  padding: 4rem 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-content-wrapper {
  max-width: 690px;
  padding-right: 5%;
  padding-left: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  display: block;
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-top: 0.5rem;
}

.hero-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
}

/* Sekce */
section {
  padding: 5rem 0;
}

section.bg-light {
  background: linear-gradient(135deg, #fafbfd 0%, #f0f4ff 100%) !important;
}

h2 {
  color: var(--primary-blue);
  font-weight: 700;
}

.section-title {
  position: relative;
  display: inline-block;
}


/* Service karty */
.service-card {
  background: linear-gradient(135deg, #ffffff, #fafbfd);
  border: none;
  border-radius: 3px;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(1, 52, 121, 0.15);
  background: linear-gradient(135deg, #ffffff, #f0f4ff);
}

.service-card h4 {
  color: var(--primary-blue);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.card-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  opacity: 0.85;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.service-card:hover .card-icon {
  opacity: 1;
  color: var(--primary-blue);
}

/* Featured Service Cards */
.featured-service {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 251, 253, 0.95));
  border-radius: 3px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  border: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.featured-service:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 45px rgba(1, 52, 121, 0.2);
}

.featured-service .service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}

.featured-service h3 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1rem;
}

.featured-service p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* Reference karty */
.reference-card {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.reference-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--tertiary-cyan);
}

.reference-logo {
  border-bottom: none;
  position: relative;
}

.reference-logo::after {
  display: none;
}

/* Reference Slider */
.reference-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reference-slider {
  overflow: hidden;
  flex: 1;
}

.reference-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.reference-slide {
  min-width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  flex-shrink: 0;
}

.ref-slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
  background: white;
  color: var(--primary-blue);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ref-slider-arrow:hover {
  background: var(--primary-blue);
  color: white;
}

@media (max-width: 767px) {
  .reference-slide {
    min-width: 100%;
    max-width: 100%;
  }

  .ref-slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}

/* Footer */
footer.bg-primary {
  background-color: var(--primary-blue) !important;
}

footer .logo-circle {
  border-color: var(--white);
  color: var(--white);
}

footer .logo-text {
  color: var(--white);
}

/* Utility classes */
.text-muted {
  color: var(--primary-blue) !important;
}

.lead.text-muted {
  color: var(--primary-blue) !important;
}

.text-primary {
  color: var(--primary-blue) !important;
}

.bg-primary {
  background-color: var(--primary-blue) !important;
}

.border-primary {
  border-color: var(--primary-blue) !important;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-diagonal {
    min-height: auto;
    padding: 0;
  }

  .hero-blur-overlay {
    display: none;
  }

  .hero-bg-image {
    position: relative;
  }

  .hero-bg-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 70vh;
    object-position: top center;
  }

  .hero-content-section {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 2rem 1.5rem 2.5rem;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #fafbfd 100%);
  }

  .hero-content-wrapper {
    padding-right: 0;
    padding-left: 0;
    text-align: center;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.2rem;
    color: var(--primary-blue);
  }

  .hero-subtitle {
    font-size: 1.6rem;
    color: var(--primary-blue);
  }

  .hero-text {
    font-size: 1.05rem;
    color: var(--text-dark);
  }

  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .logo-text {
    position: static;
    margin-left: 0.5rem;
  }

  .navbar {
    padding: 0.75rem 1rem;
  }

  .navbar-nav {
    gap: 0;
  }

  section {
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-bg-image img {
    max-height: 60vh;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .display-5 {
    font-size: 1.5rem;
  }
}

/* Service Detail Card - Služby stránka */
.service-detail-card {
  border: none;
  border-radius: 3px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  background: white;
}

.service-detail-card:hover {
  box-shadow: 0 10px 30px rgba(1, 52, 121, 0.2);
  transform: translateY(-8px);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-blue);
}

.service-detail-card h4 {
  color: var(--primary-blue);
  font-size: 1.25rem;
  font-weight: 700;
}

.service-detail-card .btn-secondary {
  background: linear-gradient(135deg, var(--tertiary-cyan), var(--navbar-icon-color));
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 3px;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 207, 224, 0.3);
}

.service-detail-card .btn-secondary:hover {
  background: linear-gradient(135deg, var(--navbar-icon-color), var(--tertiary-cyan));
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 207, 224, 0.45);
}

.hero-with-bg .btn-secondary,
.cta-section .btn-secondary {
  background: var(--secondary-orange);
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 3px;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(255, 176, 0, 0.3);
}

.hero-with-bg .btn-secondary:hover,
.cta-section .btn-secondary:hover {
  background: var(--secondary-orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 176, 0, 0.45);
}

/* Service Category Headers */
.category-header {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.category-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 60%;
  border-radius: 3px;
}

.category-header.marketing::before {
  background: linear-gradient(180deg, var(--primary-blue), var(--tertiary-cyan));
}

.category-header.web::before {
  background: linear-gradient(180deg, var(--primary-blue), var(--tertiary-cyan));
}

.category-header.additional::before {
  background: linear-gradient(180deg, var(--primary-blue), var(--tertiary-cyan));
}

.category-header h2 {
  margin-bottom: 0;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border-top: 3px solid var(--navbar-icon-color);
}

.nav-item.has-megamenu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-content {
  padding: 2rem 0;
}

.mega-menu-column h6 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.mega-menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-column ul li {
  margin-bottom: 0.75rem;
}

.mega-menu-column ul li a {
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
}

.mega-menu-column ul li a i {
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.mega-menu-column ul li a:hover {
  color: var(--primary-blue);
  transform: translateX(5px);
}

.nav-item.has-megamenu {
  position: static;
}

/* Animace */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-diagonal, .service-card, .reference-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Dělidlo mezi kategoriemi */
.category-divider {
  text-align: center;
  padding: 2rem 0;
}

.category-divider img {
  max-width: 150px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.category-divider img:hover {
  opacity: 0.8;
}

/* Free Badge */
.free-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-orange), #ff8c00);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-left: 1rem;
  box-shadow: 0 4px 15px rgba(255, 176, 0, 0.4);
  animation: pulse 2s infinite;
  vertical-align: middle;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Service Icon Large */
.service-icon-large {
  font-size: 8rem;
  color: var(--primary-blue);
}

/* Benefit Cards */
.benefit-card {
  background: linear-gradient(135deg, #ffffff, #fafbfd);
  border-radius: 3px;
  padding: 2rem;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(1, 52, 121, 0.15);
  background: linear-gradient(135deg, #ffffff, #f0f4ff);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.benefit-card h4 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.benefit-card p {
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Process Steps */
.process-step {
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--tertiary-cyan));
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(1, 52, 121, 0.3);
}

.process-step h5 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Accordion FAQ */
.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background-color: white;
  color: var(--primary-blue);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #f0f4ff, #fafbfd);
  color: var(--primary-blue);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23013479'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text-dark);
  line-height: 1.8;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--tertiary-purple));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 207, 224, 0.2), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(255, 176, 0, 0.15), transparent 50%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section .btn-light {
  background: white;
  color: var(--primary-blue);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  background: white;
  color: var(--primary-blue);
}

/* Bullet List - Verze 2 */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #fafbfd);
  border-radius: 3px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--tertiary-cyan);
}

.bullet-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.bullet-list li i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--tertiary-cyan), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.bullet-list li h5 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.bullet-list li p {
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Numbered List - Verze 2 */
.numbered-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}

.numbered-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  position: relative;
}

.numbered-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(1, 52, 121, 0.12);
}

.number-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-orange), #ff8c00);
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 176, 0, 0.4);
}

.numbered-list li h5 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.numbered-list li p {
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Contact Cards */
.contact-card {
  background: white;
  border-radius: 3px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(1, 52, 121, 0.15);
  background: linear-gradient(135deg, #ffffff, #f0f4ff);
}

.contact-icon {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--tertiary-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.contact-card h4 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.contact-card a {
  color: var(--primary-blue);
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  color: var(--tertiary-cyan);
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  border-radius: 3px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.form-label {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 2px solid rgba(1, 52, 121, 0.15);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--tertiary-cyan);
  box-shadow: 0 0 0 0.25rem rgba(0, 207, 224, 0.15);
}

/* Audience Section */
.audience-section {
  background: var(--light-gray);
}

.audience-card {
  border: none;
  border-radius: 3px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border-top: 4px solid var(--tertiary-cyan);
}

.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(1, 52, 121, 0.15);
}

.audience-icon {
  font-size: 3rem;
  color: var(--navbar-icon-color);
}

.audience-card h4 {
  color: var(--primary-blue);
  font-size: 1.15rem;
  line-height: 1.5;
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.audience-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navbar-icon-color);
}

/* Help Stripe Section */
.help-stripe-section {
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.help-stripe-section .container {
  position: relative;
  z-index: 2;
}

.help-stripe-card {
  background: #ffffff;
  border: 1px solid rgba(0, 50, 100, 0.08);
  border-radius: 3px;
  padding: 0;
  transition: all 0.4s ease;
  box-shadow: 0 2px 12px rgba(0, 50, 100, 0.06);
  overflow: hidden;
}

.help-stripe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 50, 100, 0.12);
}

.help-stripe-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.help-stripe-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.help-stripe-card:hover .help-stripe-img img {
  transform: scale(1.05);
}

.help-stripe-card h5 {
  color: var(--primary-blue);
  font-size: 1rem;
  margin-bottom: 0;
  padding: 1.25rem 1rem;
}

/* Responsive Updates */
@media (max-width: 767px) {
  .free-badge {
    display: block;
    margin: 1rem 0 0 0;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    text-align: center;
  }

  .service-icon-large {
    font-size: 5rem;
    margin-top: 2rem;
  }

  .benefit-card,
  .bullet-list li,
  .numbered-list li {
    padding: 1.25rem;
  }

  .bullet-list li i {
    font-size: 2rem;
  }

  .number-badge {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

/* Placeholder (našeptávač) — modrá zesvětlená, ať jde poznat od vyplněného textu (Winea 22.9.) */
.form-control::placeholder {
  color: rgba(1, 52, 121, 0.55);
  opacity: 1;
}
