.hero-box {
  text-align: center;
}

.hero-product-logo {
  margin: 0 auto 18px;
}

.hero p {
  margin: 0 auto;
}
  
  
    :root {
      --bg: #0a0b0d;
      --bg-soft: #111318;
      --card: #171a21;
      --card-soft: #1c2028;
      --text: #f3f4f6;
      --muted: #b6bcc8;
      --line: #2a313d;
      --accent: #b8bcc4;
      --accent-strong: #eceff3;
      --shadow: 0 14px 34px rgba(0,0,0,0.34);
      --radius: 18px;
      --maxw: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 28%),
        linear-gradient(180deg, #090909 0%, #101217 100%);
      color: var(--text);
      line-height: 1.65;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
      border-radius: 14px;
    }

    video,
    iframe {
      display: block;
      width: 100%;
    }

    .container {
      width: min(100% - 28px, var(--maxw));
      margin: 0 auto;
    }

    .hero {
      padding: 42px 0 20px;
    }

    .hero-box {
      padding: 34px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
      border: 1px solid rgba(255,255,255,0.06);
      box-shadow: var(--shadow);
    }

    .hero-product-logo {
      width: 180px;
      max-width: 100%;
      object-fit: contain;
      border-radius: 0;
      margin-bottom: 18px;
    }

    .hero h1 {
      font-size: clamp(1.9rem, 3.5vw, 3.1rem);
      line-height: 1.08;
      margin-bottom: 14px;
    }

    .hero p {
      max-width: 780px;
      color: var(--muted);
      font-size: 1.03rem;
    }

    .content {
      padding: 8px 0 60px;
    }

    .section {
      margin-top: 22px;
    }

    .section-card {
      background: linear-gradient(180deg, var(--card), var(--card-soft));
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .section-grid {
      display: grid;
      grid-template-columns: 1.08fr 1fr;
    }

    .section-media,
    .section-text {
      padding: 24px;
    }

    .section-media {
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.02);
      border-right: 1px solid rgba(255,255,255,0.05);
    }

    .section-text h2,
    .text-only h2,
    .contact-box h2,
    .mini-card h2 {
      font-size: 1.45rem;
      margin-bottom: 12px;
    }

    .section-text p,
    .section-text li,
    .text-only p,
    .text-only li,
    .contact-box p,
    .mini-card p,
    .mini-card li {
      color: var(--muted);
    }

    .section-text p + p,
    .text-only p + p,
    .mini-card p + p {
      margin-top: 12px;
    }

    .section-text ul,
    .text-only ul,
    .mini-card ul {
      padding-left: 18px;
      margin-top: 12px;
    }

    .section-text li + li,
    .text-only li + li,
    .mini-card li + li {
      margin-top: 6px;
    }

    .text-only {
      padding: 28px;
    }

    .mini-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .mini-card {
      padding: 24px;
      background: linear-gradient(180deg, var(--card), var(--card-soft));
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .status-badge {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      font-weight: 700;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      color: var(--text);
      margin-top: 12px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 18px;
    }

    .gallery-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      overflow: hidden;
    }

    .gallery-card img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      border-radius: 0;
    }

    .gallery-caption {
      padding: 14px;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .video-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.08);
      background: #000;
    }

    .video-wrap video {
      width: 100%;
      height: 100%;
    }

    .spec-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 18px;
    }

    .spec-item {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 14px;
      padding: 14px;
    }

    .spec-item strong {
      display: block;
      margin-bottom: 4px;
      color: var(--text);
    }

    .spec-item span {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .action-group,
    .contact-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    .doc-link,
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      font-weight: 700;
      transition: 0.2s ease;
    }

    .doc-link {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      color: var(--text);
    }

    .doc-link:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.16);
    }

    .btn-primary {
      background: linear-gradient(180deg, var(--accent-strong), #cfd4db);
      color: #0e1014;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      background: linear-gradient(180deg, #ffffff, #d8dde4);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--text);
    }

    .btn-secondary:hover {
      transform: translateY(-1px);
      background: rgba(255,255,255,0.07);
    }

    .map-preview-wrap {
      width: 100%;
    }

    .map-preview-link {
      display: block;
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      background: #0d1014;
      cursor: pointer;
    }

    .map-preview-link img {
      width: 100%;
      height: auto;
      border-radius: 0;
    }

    .map-preview-badge {
      position: absolute;
      right: 14px;
      bottom: 14px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(0,0,0,0.68);
      border: 1px solid rgba(255,255,255,0.14);
      color: #fff;
      font-size: 0.9rem;
      font-weight: 700;
    }

    .chat-box {
      margin-top: 16px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 14px;
      overflow: hidden;
    }

    .chat-head {
      padding: 12px 14px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      background: rgba(255,255,255,0.03);
      font-weight: 700;
    }

    .chat-body {
      padding: 0;
      min-height: 360px;
    }

    .contact-box {
      padding: 28px;
      border-radius: 20px;
      background:
        radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 30%),
        linear-gradient(180deg, #171a21, #111318);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: var(--shadow);
    }

    .footer {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 24px 0 34px;
      color: #8f97a8;
      font-size: 0.92rem;
    }

    .map-modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 18px;
      background: rgba(0,0,0,0.94);
      z-index: 9999;
    }

    .map-modal.is-open {
      display: flex;
    }

    .map-modal-inner {
      position: relative;
      width: min(100%, 1400px);
      height: min(92vh, 900px);
      border-radius: 18px;
      overflow: hidden;
      background: #0a0b0f;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    }

    .map-modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 10;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 999px;
      cursor: pointer;
      font-size: 1.4rem;
      line-height: 1;
      background: rgba(0,0,0,0.72);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.12);
    }

    .map-frame {
      width: 100%;
      height: 100%;
      border: 0;
      background: #0a0b0f;
    }

    @media (max-width: 900px) {
      .section-grid,
      .mini-grid {
        grid-template-columns: 1fr;
      }

      .section-media {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
      }

      .gallery-grid,
      .spec-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .hero-box,
      .section-media,
      .section-text,
      .text-only,
      .contact-box,
      .mini-card {
        padding: 20px;
      }

      .hero-product-logo {
        width: 150px;
      }

      .map-modal {
        padding: 10px;
      }

      .map-modal-inner {
        height: 94vh;
        border-radius: 14px;
      }
    }


/* ── Section navigation chips ── */
.section-nav {
  padding: 12px 0 4px;
}

.section-nav-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--muted);
  transition: 0.15s ease;
  text-decoration: none;
}

.chip:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  color: var(--text);
}

/* ── Hero kicker (mali tekst iznad naslova) ── */
.hero-kicker {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

/* ── CTA / kontakt blok (alias za contact-box) ── */
.cta {
  padding: 28px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 30%),
    linear-gradient(180deg, #171a21, #111318);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.cta h2 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.cta p {
  color: var(--muted);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
