    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      background: var(--bg); color: var(--text);
      font-family: var(--font-b); font-size: 18px; line-height: 1.65;
      -webkit-font-smoothing: antialiased; overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button { font-family: inherit; cursor: pointer; }

    /* ── Utility ─────────────────────────────────────────────────── */
    /* Gold accent text — gradient matching logo lightning bolt */
    .g {
      background: var(--gold-grad);
      -webkit-background-clip: text; background-clip: text; color: transparent;
    }
    /* Glow bolt icon — replaces all emojis */
    .bi {
      display: inline-flex; align-items: center; justify-content: center;
      line-height: 1; user-select: none;
      filter: drop-shadow(0 0 5px var(--gold)) drop-shadow(0 0 10px var(--gold-glow));
    }
    /* Gold decorative bar under section headings */
    .h-bar::after {
      content: '';
      display: block;
      width: 48px; height: 2px;
      background: linear-gradient(90deg, #FFE566 0%, #F5B030 55%, #C87818 100%);
      margin-top: 18px;
      box-shadow: 0 0 10px rgba(245,176,48,0.65);
    }

    /* ── Canvas ───────────────────────────────────────────────────── */
    #bg-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
    .page { position: relative; z-index: 1; overflow-x: hidden; }

    /* ── Layout ───────────────────────────────────────────────────── */
    .wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
    section { padding: 120px 0; }

    /* ── Typography ───────────────────────────────────────────────── */
    .eyebrow {
      display: inline-flex; align-items: center; gap: 9px;
      font-family: var(--font-m); font-size: 10.5px;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--blue); font-weight: 500;
    }
    .eyebrow::before {
      content: ''; width: 5px; height: 5px; border-radius: 50%;
      background: radial-gradient(circle, #FFE566 0%, #F5B030 60%, #C87818 100%);
      box-shadow: 0 0 7px #F5B030, 0 0 14px rgba(245,176,48,0.45);
      flex-shrink: 0;
    }

    /* Section display heading — UPPERCASE throughout (except hero) */
    .h-display {
      font-family: var(--font-d); font-weight: 800;
      font-size: clamp(44px, 5.8vw, 78px);
      line-height: 0.94; letter-spacing: -0.015em;
      color: #fff;
      text-transform: uppercase;
    }

    /* Hero heading keeps mixed-case and own sizing */
    .hero-h1 {
      font-family: var(--font-d); font-weight: 800;
      font-size: clamp(56px, 7.5vw, 110px);
      line-height: 0.91; letter-spacing: -0.03em;
      color: #fff; margin-bottom: 28px; text-align: left;
    }
    .hero-h1 .grad {
      background: var(--gold-grad);
      -webkit-background-clip: text; background-clip: text; color: transparent;
    }

    .sub {
      font-size: clamp(17px, 2.1vw, 21px);
      line-height: 1.65; color: var(--text-2);
    }
    /* Emphasis in body copy */
    .em { font-weight: 600; color: #fff; }

    /* ── Era callout ──────────────────────────────────────────────── */
    .era-box { max-width: 760px; margin: 0 auto; text-align: center; }
    .era-line {
      font-size: clamp(17px, 2.2vw, 24px);
      line-height: 1.7; color: var(--text-2); font-weight: 500;
    }
    .era-line + .era-line { margin-top: 4px; }
    .era-final {
      margin-top: 34px;
      font-family: var(--font-d); font-weight: 800;
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.15; letter-spacing: -0.01em;
      color: #fff; text-transform: uppercase;
    }
    .era-final span.sub-line {
      display: block; margin-top: 10px;
      font-family: var(--font-b); font-weight: 500; text-transform: none;
      font-size: clamp(15px, 1.8vw, 19px); color: var(--text-2); letter-spacing: normal;
    }

    /* ── Buttons ──────────────────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 24px; border-radius: 999px;
      font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em;
      border: none; cursor: pointer;
      transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.2s;
      user-select: none; white-space: nowrap;
    }
    .btn-primary {
      background: var(--blue); color: #fff;
      box-shadow: 0 12px 38px -8px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.18);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 50px -6px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.22);
    }
    .btn-ghost {
      background: rgba(255,255,255,0.05); color: var(--text);
      border: 1px solid var(--border); backdrop-filter: blur(20px);
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--border-hi); }

    /* ── NAV ──────────────────────────────────────────────────────── */
    .nav-outer {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      padding: 12px var(--pad) 0;
      display: flex; justify-content: center;
    }
    .nav-inner {
      position: relative; display: inline-flex; align-items: center;
      gap: 4px; height: 50px;
      padding: 0 6px 0 14px; border-radius: 999px;
      background: rgba(10,11,18,0.82);
      border: 1px solid var(--border);
      backdrop-filter: blur(36px) saturate(1.5);
      -webkit-backdrop-filter: blur(36px) saturate(1.5);
    }
    .nav-inner::before {
      content: ''; position: absolute; left: 0; right: 0; top: 0;
      height: 1px; border-radius: 999px;
      background: linear-gradient(90deg, transparent 5%, rgba(255,255,255,0.10) 50%, transparent 95%);
      pointer-events: none;
    }
    .nav-logo {
      display: flex; align-items: center;
      height: 42px; padding: 0; margin-top: 0;
    }
    .nav-logo img { height: 100%; width: auto; object-fit: contain; object-position: center top; }
    .nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
    .nav-links a {
      padding: 7px 13px; border-radius: 999px;
      font-size: 13.5px; font-weight: 500; color: var(--text-2);
      transition: color 0.18s, background 0.18s;
    }
    .nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.055); }
    .nav-cta {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 9px 18px; border-radius: 999px;
      background: var(--blue); color: #fff;
      font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em;
      transition: transform 0.2s var(--ease), box-shadow 0.2s;
      box-shadow: 0 6px 20px -6px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.18);
    }
    .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 28px -4px var(--blue-glow); }

    /* ── HERO ─────────────────────────────────────────────────────── */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center;
      padding: 0 var(--pad);
    }
    .hero-video {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
      opacity: 0.45; pointer-events: none;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background:
        linear-gradient(105deg,
          rgba(10,11,18,0.96) 0%,
          rgba(10,11,18,0.92) 30%,
          rgba(10,11,18,0.70) 55%,
          rgba(10,11,18,0.35) 80%,
          rgba(10,11,18,0.10) 100%),
        linear-gradient(to top, rgba(10,11,18,0.9) 0%, transparent 20%);
      pointer-events: none;
    }
    .hero-video-placeholder {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 80% 40%, rgba(0,140,255,0.12) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 90% 70%, rgba(245,176,48,0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: var(--max-w); width: 100%; margin: 0 auto;
      padding: 120px 0 80px;
    }
    .hero-inner { max-width: 600px; }
    .hero-pill {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 5px 14px 5px 8px; border-radius: 999px;
      border: 1px solid rgba(0,170,255,0.28);
      background: rgba(0,170,255,0.07);
      font-size: 12.5px; font-weight: 500; color: var(--text-2); margin-bottom: 36px;
    }
    .hero-pill .blink {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--blue); box-shadow: 0 0 8px var(--blue);
      animation: blink 2s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
    .hero-sub {
      font-size: clamp(16px, 2vw, 20px); line-height: 1.65;
      color: var(--text-2); max-width: 480px; margin-bottom: 44px; text-align: left;
    }
    .hero-btns {
      display: flex; align-items: center; gap: 10px;
      flex-wrap: wrap; margin-bottom: 52px;
    }
    .hero-proof {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; color: var(--text-3); flex-wrap: wrap;
    }
    .hero-proof .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--text-3); }
    .scroll-cue {
      position: absolute; bottom: 28px; left: 50%;
      transform: translateX(-50%); z-index: 4;
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      font-family: var(--font-m); font-size: 9px;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--text-3);
      animation: floatDown 2.8s ease-in-out infinite;
    }
    .scroll-cue::after {
      content: ''; width: 1px; height: 36px;
      background: linear-gradient(180deg, var(--text-3), transparent);
    }
    @keyframes floatDown {
      0%,100%{ opacity:.4; transform:translateX(-50%) translateY(0); }
      55%{ opacity:.85; transform:translateX(-50%) translateY(7px); }
    }

    /* ── SECTION HEADER ───────────────────────────────────────────── */
    .sec-head { margin-bottom: 56px; }
    .sec-head .eyebrow { margin-bottom: 16px; }

    /* ── KAKO RADI ────────────────────────────────────────────────── */
    .steps-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px; border-radius: var(--r-xl); overflow: hidden;
    }
    .step {
      padding: 44px 36px; position: relative;
      background: var(--surf); border: 1px solid var(--border);
      transition: background 0.3s;
      border-top: 2px solid transparent;
    }
    .step:hover {
      background: var(--surf-hi);
      border-top-color: var(--gold-amber);
    }
    .step-num {
      font-family: var(--font-m); font-size: 10px;
      letter-spacing: 0.22em; text-transform: uppercase;
      background: var(--gold-grad);
      -webkit-background-clip: text; background-clip: text; color: transparent;
      margin-bottom: 18px;
      filter: drop-shadow(0 0 6px rgba(245,176,48,0.5));
    }
    .step-title {
      font-family: var(--font-d); font-weight: 700;
      font-size: 20px; letter-spacing: -0.01em;
      text-transform: uppercase; color: var(--text);
      margin-bottom: 12px;
    }
    .step-body { font-size: 17px; line-height: 1.7; color: var(--text-2); }

    .steps-strip {
      margin-top: 28px;
      display: flex; align-items: center; justify-content: center;
      gap: 10px; flex-wrap: wrap;
    }
    .steps-strip .trust-badge {
      display: inline-flex; align-items: center; gap: 9px;
      padding: 10px 20px; border-radius: 999px;
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.075);
      backdrop-filter: blur(12px);
      font-size: 13px; font-weight: 500; color: var(--text-2);
      letter-spacing: -0.01em;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .steps-strip .trust-badge:hover {
      background: rgba(255,255,255,0.055);
      border-color: rgba(212,144,14,0.25);
      color: var(--text);
    }
    .steps-strip .trust-badge svg {
      flex-shrink: 0;
      color: var(--gold-amber);
      filter: drop-shadow(0 0 4px var(--gold-dim));
    }

    /* ── VEŠTINE ──────────────────────────────────────────────────── */
    .skills-top {
      display: flex; align-items: flex-end;
      justify-content: space-between; gap: 40px; margin-bottom: 44px;
    }
    .skills-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .sk-wide { grid-column: span 2; }
    .sk {
      padding: 36px 32px 32px; border-radius: var(--r-lg);
      border: 1px solid var(--border); position: relative; overflow: hidden;
      transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
      cursor: default;
      background: linear-gradient(145deg, rgba(255,255,255,0.042) 0%, rgba(255,255,255,0.014) 100%);
    }
    .sk::before {
      content: attr(data-n);
      position: absolute; right: 20px; bottom: -10px;
      font-family: var(--font-d); font-weight: 800;
      font-size: 120px; line-height: 1; letter-spacing: -0.04em;
      color: rgba(212,144,14,0.05); pointer-events: none; user-select: none;
      transition: color 0.3s;
    }
    .sk::after {
      content: ''; position: absolute; inset: 0; border-radius: inherit;
      background: radial-gradient(circle at var(--cx,50%) var(--cy,50%), rgba(0,170,255,0.12), transparent 58%);
      opacity: 0; transition: opacity 0.35s; pointer-events: none;
    }
    .sk:hover {
      transform: translateY(-4px);
      border-color: rgba(212,144,14,0.22);
      box-shadow: 0 20px 54px -18px rgba(212,144,14,0.14);
    }
    .sk:hover::before { color: rgba(212,144,14,0.10); }
    .sk:hover::after  { opacity: 1; }
    .sk-wide { border-left: 2px solid rgba(212,144,14,0.3); }
    .sk-wide:hover { border-left-color: #F5B030; }
    .sk-n {
      font-family: var(--font-m); font-size: 9.5px; letter-spacing: 0.22em;
      background: var(--gold-grad);
      -webkit-background-clip: text; background-clip: text; color: transparent;
      margin-bottom: 14px; position: relative;
      filter: drop-shadow(0 0 5px rgba(245,176,48,0.45));
    }
    .sk-t {
      font-family: var(--font-d); font-weight: 700;
      text-transform: uppercase; letter-spacing: 0em;
      color: var(--text); margin-bottom: 10px; position: relative; line-height: 1.1;
    }
    .sk-wide .sk-t { font-size: clamp(20px, 2.5vw, 28px); }
    .sk:not(.sk-wide) .sk-t { font-size: 17px; }
    .sk-b { font-size: 16px; line-height: 1.65; color: var(--text-2); position: relative; }
    .sk-wide .sk-b { font-size: 17px; }

    .skills-foot {
      margin-top: 28px; padding: 18px 28px; border-radius: var(--r-lg);
      background: linear-gradient(135deg, rgba(212,144,14,0.08) 0%, rgba(212,144,14,0.03) 100%);
      border: 1px solid rgba(212,144,14,0.2);
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
    }
    .skills-foot p { font-size: 15.5px; color: var(--text-2); }
    .skills-foot a {
      font-size: 15.5px; font-weight: 600; color: var(--gold-amber);
      white-space: nowrap; display: inline-flex; align-items: center; gap: 5px;
      transition: gap 0.2s;
    }
    .skills-foot a:hover { gap: 9px; }

    /* ── MARQUEE ──────────────────────────────────────────────────── */
    .marquee-wrap {
      padding: 36px 0; overflow: hidden;
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      position: relative;
    }
    .marquee-wrap::before, .marquee-wrap::after {
      content: ''; position: absolute; top: 0; bottom: 0;
      width: 180px; z-index: 2; pointer-events: none;
    }
    .marquee-wrap::before { left: 0; background: linear-gradient(90deg, #0A0B12, transparent); }
    .marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, #0A0B12, transparent); }
    .marquee-track { display: flex; width: max-content; animation: mscroll 28s linear infinite; }
    .marquee-track:hover { animation-play-state: paused; }
    @keyframes mscroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    .mq-group { display: flex; }
    .m-item {
      display: inline-flex; align-items: center; gap: 14px;
      padding: 0 36px; font-family: var(--font-d); font-weight: 700;
      font-size: clamp(17px, 2.3vw, 26px); letter-spacing: 0.02em;
      text-transform: uppercase; color: var(--text-2); white-space: nowrap;
    }
    .m-item .dot { width: 4px; height: 4px; border-radius: 50%; flex-shrink: 0; }
    .m-item:nth-child(odd) { color: var(--text); }
    .m-item:nth-child(3n+1) .dot { background: var(--gold-amber); box-shadow: 0 0 7px var(--gold-dim); }
    .m-item:nth-child(3n+2) .dot { background: var(--blue); box-shadow: 0 0 7px var(--blue-glow); }
    .m-item:nth-child(3n+3) .dot { background: var(--gold-amber); box-shadow: 0 0 7px var(--gold-dim); }

    /* ── NAŠI RADOVI ──────────────────────────────────────────────── */
    .gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
    .g-item {
      border-radius: var(--r-lg); overflow: hidden;
      border: 1px solid var(--border); aspect-ratio: 4/3;
      transition: transform 0.3s var(--ease), box-shadow 0.3s;
    }
    .g-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
    .g-item:nth-child(5) { grid-column: span 2; aspect-ratio: 16/9; }
    .g-item:hover { transform: scale(1.012); box-shadow: 0 20px 50px -16px rgba(0,0,0,.55); }

    /* ── DEMO ─────────────────────────────────────────────────────── */
    .demo-box {
      width: 100%; aspect-ratio: 16/9; border-radius: var(--r-xl);
      border: 1px solid var(--border); background: rgba(255,255,255,0.018);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 18px; position: relative; overflow: hidden;
    }
    .demo-box::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(212,144,14,0.05), transparent);
    }
    .play-ring {
      width: 68px; height: 68px; border-radius: 50%;
      border: 1px solid rgba(212,144,14,0.25); background: rgba(212,144,14,0.06);
      backdrop-filter: blur(12px); display: flex; align-items: center;
      justify-content: center; cursor: pointer; z-index: 1;
      transition: transform .22s, background .22s, border-color .22s;
    }
    .play-ring:hover { transform: scale(1.1); background: rgba(212,144,14,0.15); border-color: var(--gold-amber); }
    .play-ring svg { margin-left: 4px; }
    .demo-label {
      font-family: var(--font-m); font-size: 10px; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--text-3); z-index: 1;
    }

    /* ── CENA ─────────────────────────────────────────────────────── */
    .pricing-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .benefits { display: flex; flex-direction: column; gap: 22px; margin-top: 40px; }
    .benefit  { display: flex; align-items: flex-start; gap: 15px; }
    .benefit-icon {
      width: 38px; height: 38px; border-radius: var(--r-sm);
      background: rgba(212,144,14,0.08); border: 1px solid rgba(212,144,14,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; flex-shrink: 0;
    }
    .benefit-t { font-weight: 700; font-size: 16px; text-transform: uppercase; color: var(--text); margin-bottom: 4px; letter-spacing: 0.02em; }
    .benefit-d { font-size: 15px; color: var(--text-2); line-height: 1.55; }
    .price-card {
      border-radius: var(--r-xl); padding: 44px;
      background: linear-gradient(145deg, rgba(212,144,14,0.08) 0%, rgba(212,144,14,0.02) 100%);
      border: 1px solid rgba(212,144,14,0.25); position: relative; overflow: hidden;
    }
    .price-card::before {
      content: ''; position: absolute; top: -30%; left: -5%;
      width: 55%; height: 55%;
      background: radial-gradient(circle, rgba(212,144,14,0.15) 0%, transparent 65%);
      filter: blur(36px); pointer-events: none;
    }
    /* top edge gold accent */
    .price-card::after {
      content: ''; position: absolute; top: 0; left: 10%; right: 10%;
      height: 1px; background: linear-gradient(90deg, transparent, #FFE566, #F5B030, transparent);
    }
    .price-tag {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 3px 11px; border-radius: 999px;
      background: rgba(212,144,14,0.12); border: 1px solid rgba(212,144,14,0.28);
      font-family: var(--font-m); font-size: 9.5px; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--gold-amber); margin-bottom: 22px;
    }
    .price-num {
      font-family: var(--font-d); font-weight: 800;
      font-size: 76px; line-height: 1; letter-spacing: -0.035em;
      color: #fff; margin-bottom: 6px;
    }
    .price-num sup { font-size: 34px; vertical-align: super; font-weight: 600; color: var(--text-2); }
    .price-per { font-size: 13.5px; color: var(--text-3); margin-bottom: 30px; }
    .price-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 36px; }
    .price-list li {
      display: flex; align-items: center; gap: 11px;
      font-size: 16.5px; color: var(--text);
    }
    .price-list li::before {
      content: '';
      width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
      background: rgba(212,144,14,0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23D4900E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
      border: 1px solid rgba(212,144,14,0.3);
    }
    .btn-price {
      width: 100%; justify-content: center; padding: 17px 30px;
      border-radius: var(--r-lg); font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em;
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
      color: #fff; border: none; cursor: pointer;
      box-shadow: 0 14px 44px -10px rgba(0,100,200,.65), inset 0 1px 0 rgba(255,255,255,.18);
      transition: transform .25s var(--ease), box-shadow .25s;
      display: flex; align-items: center; gap: 8px;
    }
    .btn-price:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 56px -8px rgba(0,100,200,.75), inset 0 1px 0 rgba(255,255,255,.22);
    }
    .price-note { text-align: center; font-size: 11.5px; color: var(--text-3); margin-top: 14px; }

    /* ── FAQ ──────────────────────────────────────────────────────── */
    .faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 88px; align-items: start; }
    .faq-contact-link {
      display: inline-flex; align-items: center; gap: 5px;
      margin-top: 20px; font-size: 13.5px; font-weight: 600;
      color: var(--gold-amber); transition: gap .2s;
    }
    .faq-contact-link:hover { gap: 9px; }
    .faq-list { display: flex; flex-direction: column; gap: 2px; }
    .faq-item {
      border-radius: var(--r-md); overflow: hidden;
      border: 1px solid var(--border); background: rgba(255,255,255,.018);
      transition: background .2s, border-color .2s;
    }
    .faq-item.open { background: rgba(255,255,255,.038); border-color: rgba(212,144,14,0.2); }
    .faq-q {
      width: 100%; display: flex; align-items: center;
      justify-content: space-between; padding: 20px 24px;
      background: none; border: none; color: var(--text);
      font-size: 17px; font-weight: 500; text-align: left; gap: 14px;
      transition: color .2s;
    }
    .faq-q:hover { color: #fff; }
    .faq-chevron {
      width: 22px; height: 22px; border-radius: 50%;
      border: 1px solid var(--border); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      color: var(--text-2); font-size: 11px;
      transition: transform .32s var(--ease), border-color .22s, color .22s;
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); border-color: rgba(212,144,14,0.4); color: var(--gold-amber); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
    .faq-a-in { padding: 0 24px 20px; font-size: 16px; line-height: 1.72; color: var(--text-2); }
    .faq-item.open .faq-a { max-height: 220px; }

    /* ── FOOTER ───────────────────────────────────────────────────── */
    .footer { padding: 72px 0 36px; border-top: 1px solid var(--border); }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }
    .footer-logo { display: flex; align-items: center; height: 48px; margin-bottom: 14px; }
    .footer-logo img { height: 100%; width: auto; object-fit: contain; }
    .footer-about { font-size: 13.5px; color: var(--text-3); line-height: 1.65; max-width: 300px; }
    .footer-col-h {
      font-family: var(--font-m); font-size: 9.5px; letter-spacing: 0.17em;
      text-transform: uppercase; color: var(--text-3); margin-bottom: 14px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-links a { font-size: 13.5px; color: var(--text-2); transition: color .18s; }
    .footer-links a:hover { color: var(--text); }
    .footer-links .hl { color: var(--gold-amber); display: inline-flex; align-items: center; gap: 4px; }
    .footer-links .kontakt-link { display: inline-flex; align-items: center; gap: 9px; }
    .footer-links .kontakt-link svg { flex-shrink: 0; opacity: .85; }
    .footer-hr { height: 1px; background: var(--border); margin-bottom: 28px; }
    .footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; }
    .footer-legal { font-size: 10.5px; color: var(--text-3); line-height: 1.75; max-width: 680px; }
    .footer-legal a { text-decoration: underline; text-decoration-color: rgba(255,255,255,.15); }
    .footer-copy { font-size: 11px; color: var(--text-3); white-space: nowrap; }

    /* ── Scroll Reveal ────────────────────────────────────────────── */
    .rv { opacity:0; transform:translateY(22px); transition:opacity .72s var(--ease),transform .72s var(--ease); }
    .rv.in { opacity:1; transform:translateY(0); }
    .rv.d1{transition-delay:.08s} .rv.d2{transition-delay:.16s} .rv.d3{transition-delay:.24s}
    .rv.d4{transition-delay:.32s} .rv.d5{transition-delay:.40s} .rv.d6{transition-delay:.48s}
    .rv.d7{transition-delay:.56s} .rv.d8{transition-delay:.64s} .rv.d9{transition-delay:.72s}

    /* ── Hamburger button ─────────────────────────────────────────── */
    .nav-ham {
      display: none;
      flex-direction: column; justify-content: center; align-items: center;
      width: 36px; height: 36px; gap: 5px; flex-shrink: 0;
      background: transparent; border: 1px solid var(--border);
      border-radius: var(--r-sm); cursor: pointer; padding: 0;
      transition: background .2s, border-color .2s;
    }
    .nav-ham:hover { background: rgba(255,255,255,0.07); border-color: var(--border-hi); }
    .nav-ham span {
      display: block; width: 16px; height: 1.5px;
      background: var(--text-2); border-radius: 2px;
      transition: transform .3s var(--ease), opacity .2s, width .2s;
    }
    .nav-ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-ham.open span:nth-child(2) { opacity: 0; width: 0; }
    .nav-ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ── Mobile menu overlay ──────────────────────────────────────── */
    .nav-mobile {
      display: none;
      position: fixed; inset: 0; z-index: 190;
      flex-direction: column; align-items: center; justify-content: center; gap: 2px;
      background: rgba(10,11,18,0.97);
      backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
      opacity: 0; pointer-events: none;
      transition: opacity .3s var(--ease);
    }
    .nav-mobile.open { opacity: 1; pointer-events: all; }
    .nav-mobile a {
      font-family: var(--font-d); font-weight: 700; text-transform: uppercase;
      font-size: clamp(30px, 8.5vw, 46px); letter-spacing: -0.02em;
      color: rgba(255,255,255,0.3); padding: 7px 0;
      transition: color .18s;
    }
    .nav-mobile a:hover, .nav-mobile a:active { color: #fff; }
    .nav-mobile .mob-cta {
      margin-top: 28px; display: inline-flex; align-items: center; gap: 6px;
      font-family: var(--font-b); font-size: 16px; font-weight: 600;
      padding: 15px 40px; border-radius: 999px;
      background: var(--blue); color: #fff;
      box-shadow: 0 8px 28px -6px var(--blue-glow);
      text-transform: none; letter-spacing: -0.01em;
    }
    .nav-mobile .mob-cta:hover, .nav-mobile .mob-cta:active { color: #fff; }

    /* ── Responsive ───────────────────────────────────────────────── */

    /* Intermediate — 3 col → 2 col before going 1 col at 900 */
    @media(max-width:1100px){
      .hero-video { object-position: 75% center; }
      .skills-bento { grid-template-columns: repeat(2, 1fr); }
      .sk-wide { grid-column: span 2; }
      .sk[data-n="09"] { grid-column: span 2 !important; }
    }

    @media(max-width:900px){
      :root { --pad: 20px; }
      section { padding: 80px 0; }
      .h-display { font-size: clamp(34px, 7.5vw, 58px); }
      .nav-outer { padding: 10px var(--pad) 0; }
      .nav-inner { width: 100%; justify-content: space-between; }
      .nav-ham { display: flex; }
      .nav-mobile { display: flex; }
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .hero-inner { max-width: 100%; }
      .hero-video { object-position: 75% center; }
      .steps-grid { grid-template-columns: 1fr; }
      .skills-bento { grid-template-columns: 1fr; }
      .sk-wide { grid-column: span 1; }
      .sk[data-n="09"] { grid-column: span 1 !important; }
      .skills-top { flex-direction: column; align-items: flex-start; }
      .gallery { grid-template-columns: 1fr 1fr; }
      .g-item:nth-child(1) { grid-column: span 2; }
      .g-item:nth-child(5) { grid-column: span 1; aspect-ratio: 4/3; }
      .pricing-layout { grid-template-columns: 1fr; gap: 48px; }
      .faq-layout { grid-template-columns: 1fr; gap: 36px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-grid > :first-child { grid-column: span 2; }
      .footer-bottom { flex-direction: column; gap: 12px; }
    }
    @media(max-width:520px){
      :root { --pad: 16px; }
      section { padding: 48px 0; }
      .h-display { font-size: clamp(24px, 8.5vw, 36px); line-height: 1.0; }
      .hero-h1 { font-size: clamp(32px, 9.5vw, 48px); margin-bottom: 18px; }
      .hero-content { padding: 88px 0 56px; }
      .hero-pill { margin-bottom: 22px; font-size: 11.5px; }
      .hero-sub { font-size: 15px; max-width: 100%; margin-bottom: 28px; }
      .hero-btns { margin-bottom: 28px; }
      .hero-proof { font-size: 11px; }
      .sub { font-size: 15px; }
      .sec-head { margin-bottom: 28px; }
      /* Steps */
      .step { padding: 28px 22px; }
      .step-title { font-size: 17px; }
      .step-body { font-size: 15px; }
      /* Skills */
      .sk { padding: 24px 18px 20px; }
      .sk-b { font-size: 14.5px; }
      .sk-wide .sk-b { font-size: 15px; }
      .sk::before { font-size: 80px; }
      .skills-foot { flex-direction: column; gap: 12px; }
      /* Skill 09 special wide card */
      .sk[data-n="09"] { flex-direction: column !important; align-items: flex-start !important; }
      /* Pricing */
      .price-card { padding: 28px 20px; }
      .price-num { font-size: 56px; }
      .price-list li { font-size: 14.5px; }
      .benefit-t { font-size: 14px; }
      .benefit-d { font-size: 13.5px; }
      .benefits { gap: 16px; margin-top: 28px; }
      /* Hero buttons — stack full width */
      .hero-btns { flex-direction: column; align-items: stretch; gap: 8px; }
      .hero-btns .btn { justify-content: center; }
      /* FAQ */
      .faq-q { font-size: 15px; padding: 16px 18px; }
      .faq-a-in { font-size: 14px; padding: 0 18px 16px; }
      /* Gallery images scale down */
      #gallery-row1 img, #gallery-row2 img {
        width: 192px !important; height: 123px !important;
        border-radius: 10px !important;
      }
      #gallery-row1, #gallery-row2 { gap: 8px; }
      #radovi-gallery { gap: 8px; margin-top: 24px; }
      /* Footer */
      .gallery { grid-template-columns: 1fr; }
      .g-item { grid-column: span 1 !important; aspect-ratio: 4/3 !important; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-grid > :first-child { grid-column: span 1; }
      .footer { padding: 52px 0 28px; }
    }
