    html { scroll-behavior: smooth; }
    .navbar { backdrop-filter: blur(8px); }
    .section { padding: 4.5rem 0; }
    .shadow-soft { box-shadow: 0 10px 30px rgba(0,0,0,.08); }
    .card-hover { transition: transform .15s ease, box-shadow .15s ease; }
    .card-hover:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,.12); }
    .anchor { scroll-margin-top: 90px; }
    .small-muted { font-size: .95rem; color: rgba(255,255,255,.75); }

    /* HERO */
    .hero{
      min-height: 78vh;
      position: relative;
      background-size: cover;
      background-position: center;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.56) 45%, rgba(0,0,0,.56) 100%),
        linear-gradient(rgba(0,0,0,.40), rgba(0,0,0,.55));
    }
    .hero .container{ position: relative; z-index: 1; }
    .hero h1, .hero p, .hero .badge { text-shadow: 0 6px 18px rgba(0,0,0,.55); }

    /* HERO pravý card – bílé písmo */
    .hero-card { color: #fff; }
    .hero-card .small-muted { color: rgba(255,255,255,.78); }
    .hero-card .bi { color: #fff; }
    .hero-card h2, .hero-card p, .hero-card div { color: #fff; }

    .bg-soft { background: rgba(13,110,253,.06); }

    .icon-bullet {
      width: .65rem; height: .65rem; border-radius: 999px; display: inline-block;
      background: var(--bs-warning); margin-right: .6rem; transform: translateY(-1px);
    }

    /* Footer menu */
    .footer-link{
      color: rgba(255,255,255,.75);
      text-decoration: none;
    }
    .footer-link:hover{
      color: #fff;
      text-decoration: underline;
    }

    /* Services: ikonový badge */
    .feature-icon{
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .bg-gradient-warning{
      background: linear-gradient(135deg, rgba(255,193,7,1) 0%, rgba(255,193,7,.55) 100%);
    }

    /* FAQ – jemné zvýraznění otevřené položky */
    .accordion-button:not(.collapsed){
      background: rgba(255,193,7,.18);
      color: #1f2328;
      box-shadow: none;
    }
    .accordion-button:focus{
      box-shadow: 0 0 0 .25rem rgba(255,193,7,.25);
      border-color: rgba(255,193,7,.35);
    }

    /* ===== Floating WhatsApp / Call (PŘIDÁNO) ===== */
    .action-float{
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 9999;
    }
    .action-float .btn{
      width: 56px;
      height: 56px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }
    .action-float i{ font-size: 1.5rem; }

    @media (max-width: 576px){
      .action-float{ right: 14px; bottom: 14px; }
      .action-float .btn{ width: 54px; height: 54px; }
    }