/* ============================================================
   GROS HYDROSERVIS s.r.o. — Moderní redesign
   Bootstrap 5 + custom CSS, mobile-first
   ============================================================ */

/* Google Fonts: Barlow Condensed + Source Sans 3 */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;1,600&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy:        #142040;
  --navy-dark:   #0c1628;
  --navy-mid:    #1e2f56;
  --red:         #c0392b;
  --red-bright:  #e74c3c;
  --red-dark:    #962d22;
  --silver:      #f0f2f5;
  --silver-mid:  #d8dde6;
  --text-dark:   #1a1a2a;
  --text-muted:  #6c7a96;
  --white:       #ffffff;
  --border:      #dde2ec;
  --shadow-sm:   0 2px 12px rgba(20,32,64,.08);
  --shadow-md:   0 6px 30px rgba(20,32,64,.14);
  --shadow-lg:   0 16px 60px rgba(20,32,64,.18);
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  .25s ease;
  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'Source Sans 3', sans-serif;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: color var(--transition); }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { margin-bottom: 1rem; }

/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--navy-dark);
  padding: .4rem 0;
  font-size: .82rem;
  color: var(--silver-mid);
}
.topbar a { color: var(--silver-mid); }
.topbar a:hover { color: var(--white); }
.topbar .contact-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-right: 1.2rem;
}
.topbar .contact-item i { color: var(--red-bright); font-size: .9rem; }

/* ---------- NAVBAR ---------- */
.navbar-main {
  background: var(--navy) !important;
  padding: .9rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.brand-logo-mark {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.brand-text-main {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: .5px;
}
.brand-text-sub {
  font-family: var(--font-body);
  font-size: .7rem;
  color: var(--silver-mid);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,.82) !important;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .5rem 1rem !important;
  position: relative;
  transition: color var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--red-bright);
  transition: left var(--transition), right var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  left: 1rem; right: 1rem;
}
.navbar-toggler {
  border: 1px solid rgba(255,255,255,.3);
  padding: .4rem .6rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- PAGE HERO ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hasicaky-titul.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 1.0;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(135deg, var(--navy-dark) 45%, rgba(14,24,52,.6) 100%);*/
  background: linear-gradient(135deg, #142040 25%, rgba(14,24,52,.6) 58%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red);
  color: white;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
  margin-bottom: 1.2rem;
}
.hero h1 span { color: var(--red-bright); }
.hero .lead {
  color: rgba(255,255,255,.78);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--red-bright);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- SECTION STYLES ---------- */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-dark { background: var(--navy); color: white; }
.section-dark h2, .section-dark h3 { color: white; }
.section-silver { background: var(--silver); }

.section-tag {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.section-title { margin-bottom: .8rem; }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ---------- BUTTONS ---------- */
.btn-primary-custom {
  background: var(--red);
  color: white;
  border: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(192,57,43,.3);
}
.btn-primary-custom:hover {
  background: var(--red-bright);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,.4);
}
.btn-outline-custom {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,.5);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .8rem 2rem;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all var(--transition);
}
.btn-outline-custom:hover {
  background: white;
  color: var(--navy);
  border-color: white;
}
.btn-navy {
  background: var(--navy);
  color: white;
  border: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all var(--transition);
}
.btn-navy:hover {
  background: var(--navy-mid);
  color: white;
  transform: translateY(-2px);
}

/* ---------- SERVICE CARDS ---------- */
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px;
  height: 58px;
  background: rgba(192,57,43,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.7rem;
  color: var(--red);
  transition: background var(--transition);
}
.service-card:hover .service-icon {
  background: var(--red);
  color: white;
}
.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: .6rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 0;
}

/* ---------- OFFER / AKCE CARDS ---------- */
.akce-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.akce-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.akce-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--silver);
  display: flex;
  align-items: center;
  justify-content: center;
}
.akce-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.akce-card:hover .akce-card-img img { transform: scale(1.05); }
.akce-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 2px;
  margin-bottom: .8rem;
}
.akce-card-body { padding: 1.5rem; }
.akce-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.akce-price small {
  font-size: .9rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

/* ---------- REFERENCE CARDS ---------- */
.ref-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.ref-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--red);
}
.ref-icon {
  width: 40px;
  height: 40px;
  background: rgba(192,57,43,.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 1.1rem;
}
.ref-name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  line-height: 1.3;
}
.ref-type {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ---------- INFO STRIP ---------- */
.info-strip {
  background: var(--red);
  color: white;
  padding: 3rem 0;
}
.info-strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
.info-strip-icon {
  font-size: 2rem;
  opacity: .85;
  flex-shrink: 0;
}
.info-strip-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: .8;
  font-family: var(--font-head);
}
.info-strip-value {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .3px;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: var(--navy);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -5%;
  top: -20%;
  width: 55%;
  height: 160%;
  background: linear-gradient(135deg, transparent 40%, rgba(192,57,43,.12) 100%);
  transform: skewX(-8deg);
}
.page-hero .breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: .8rem;
}
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.6); font-size: .85rem; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.85); font-size: .85rem; }
.page-hero .breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  color: rgba(255,255,255,.4);
}
.page-hero h1 { color: white; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 600px; }

/* ---------- CONTACT FORM ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr; }
}
.contact-info-panel {
  background: var(--navy);
  color: white;
  padding: 3rem 2.5rem;
}
.contact-info-panel h3 { color: white; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red-bright);
  font-size: 1.1rem;
}
.contact-detail-label { font-size: .78rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }
.contact-detail-value { font-size: 1rem; font-weight: 600; color: white; }
.contact-detail-value a { color: white; }
.contact-detail-value a:hover { color: var(--red-bright); }

.contact-form-panel {
  background: white;
  padding: 3rem 2.5rem;
}
.contact-form-panel h3 { margin-bottom: 1.8rem; }

.form-group { margin-bottom: 1.3rem; }
.form-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--navy);
  margin-bottom: .4rem;
  display: block;
}
.form-control {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .98rem;
  color: var(--text-dark);
  background: var(--silver);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  background: white;
  box-shadow: 0 0 0 3px rgba(20,32,64,.08);
}
textarea.form-control { resize: vertical; min-height: 130px; }

/* ---------- WHY US ---------- */
.why-item {
  text-align: center;
  padding: 1.5rem 1rem;
}
.why-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: .3rem;
}
.why-label {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}

/* ---------- DIVIDER ---------- */
.divider-red {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 2.5rem;
}
.divider-red::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-brand { margin-bottom: 1.2rem; }
.footer-about {
  font-size: .92rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 280px;
}
.footer-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.2rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color var(--transition), gap var(--transition);
}
.footer-links a::before {
  content: '›';
  color: var(--red-bright);
  font-size: 1rem;
}
.footer-links a:hover { color: white; gap: .7rem; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .8rem;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
}
.footer-contact-item i { color: var(--red-bright); width: 18px; text-align: center; }
.footer-contact-item a { color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 3rem;
  padding: 1.2rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); }

/* ---------- CERTIFICATIONS STRIP ---------- */
.cert-strip {
  background: var(--silver);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cert-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 1rem;
  color: var(--text-muted);
  font-size: .85rem;
}
.cert-item i { color: var(--red); font-size: 1.2rem; }

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- UTILITY ---------- */
.text-red { color: var(--red) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-red { background: var(--red) !important; }
.fw-700 { font-weight: 700; }
.font-head { font-family: var(--font-head) !important; }

/* ---------- RESPONSIVE TWEAKS ---------- */
@media (max-width: 991px) {
  .hero { min-height: 70vh; }
  .navbar-collapse { background: var(--navy-dark); padding: 1rem; margin-top: .5rem; border-radius: var(--radius); }
  .hero-stats { gap: 1.5rem; }
}
@media (max-width: 575px) {
  .section { padding: 3.5rem 0; }
  .page-hero { padding: 2.5rem 0 2rem; }
  .info-strip-item { flex-direction: column; text-align: center; gap: .5rem; }
  .contact-info-panel, .contact-form-panel { padding: 2rem 1.5rem; }
}

/* ---------- SMOOTH ENTRANCE ---------- */
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: heroEntrance .8s ease both;
}
.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .25s; }
.hero-content > *:nth-child(3) { animation-delay: .4s; }
.hero-content > *:nth-child(4) { animation-delay: .55s; }
.hero-content > *:nth-child(5) { animation-delay: .7s; }

/* Breadcrumb separator fix */
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ------------ REFERENCE -------------- */
    .client-category {
      margin-bottom: 3rem;
    }
    .category-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding-bottom: .8rem;
      border-bottom: 2px solid var(--border);
    }
    .category-icon {
      width: 44px; height: 44px;
      background: var(--red);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 1.1rem; flex-shrink: 0;
    }
    .category-title {
      font-family: var(--font-head);
      font-size: 1.3rem; font-weight: 700;
      color: var(--navy); margin: 0;
    }
    .client-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1rem;
    }
    .client-item {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1rem 1.2rem;
      display: flex; align-items: center; gap: .8rem;
      transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
    }
    .client-item:hover {
      box-shadow: var(--shadow-sm);
      border-color: var(--red);
      transform: translateX(3px);
    }
    .client-dot {
      width: 8px; height: 8px;
      background: var(--red);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .client-name {
      font-size: .95rem;
      font-weight: 600;
      color: var(--navy);
    }
    .testimonial-card {
      background: var(--navy);
      color: white;
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      position: relative;
    }
    .testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: 1rem; left: 1.5rem;
      font-size: 6rem;
      font-family: Georgia, serif;
      line-height: 1;
      color: var(--red-bright);
      opacity: .4;
    }
    .testimonial-text {
      font-size: 1.05rem;
      color: rgba(255,255,255,.85);
      line-height: 1.7;
      margin-bottom: 1.5rem;
      position: relative;
    }
    .testimonial-author {
      font-weight: 700;
      color: white;
    }
    .testimonial-company {
      font-size: .85rem;
      color: rgba(255,255,255,.5);
    }
    .stat-box {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2rem;
      text-align: center;
    }
    .stat-box-num {
      font-family: var(--font-head);
      font-size: 3.5rem;
      font-weight: 800;
      color: var(--red);
      line-height: 1;
    }
    .stat-box-label {
      font-size: .85rem;
      color: var(--text-muted);
      margin-top: .4rem;
    }

/*------------ KONTAKT -------------*/
    .map-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .map-wrap iframe {
      width: 100%; height: 380px; border: 0; display: block;
    }
    .success-msg {
      display: none;
      background: #d4edda;
      border: 1px solid #c3e6cb;
      color: #155724;
      border-radius: var(--radius);
      padding: 1rem 1.4rem;
      margin-top: 1rem;
      font-weight: 600;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    @media (max-width: 576px) { .form-row { grid-template-columns: 1fr; } }
    .required-star { color: var(--red); margin-left: 2px; }
    .gdpr-check { display: flex; align-items: flex-start; gap: .8rem; margin-top: 1rem; }
    .gdpr-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--red); }
    .gdpr-check label { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }
