/* ============================================================
   AGENCY — Shared Design System
   Orange + Amber color palette
   ============================================================ */

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

:root {
  --bg:        #080500;
  --bg2:       #0f0900;
  --surface:   rgba(20,11,3,0.92);
  --surface-h: rgba(28,16,5,0.95);
  --card:      rgba(18,10,3,0.95);
  --border:    rgba(255,150,40,0.1);
  --border-h:  rgba(255,150,40,0.3);
  --text:      #fff9f0;
  --muted:     rgba(255,249,240,0.5);
  --dim:       rgba(255,249,240,0.28);
  --accent:    #f97316;
  --accent2:   #fb923c;
  --accent3:   #fbbf24;
  --red:       #ea580c;
  --glow:      rgba(249,115,22,0.14);
  --r:         16px;
  --r-sm:      10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a, button, input, select, textarea, label, [role="button"] { cursor: none; }


/* ── Cursor ── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
}
.cursor-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1.5px solid rgba(249,115,22,.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .12s ease-out, width .2s, height .2s, opacity .2s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 16px; height: 16px; }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 48px; height: 48px; opacity: .5; }
@media (pointer:coarse) { body { cursor: auto; } .cursor,.cursor-ring { display: none; } }

/* ── Animated background ── */
#bg-root {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--bg);
}

/* ── Nav ── */
nav {
  position: fixed !important; top: 0 !important; left: 0; right: 0; z-index: 200;
  padding: 0.15rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,5,0,.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: border-color .3s;
}
.nav-logo {
  font-size: 1.1rem; font-weight: 700; letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .8; }
.nav-logo-img {
  height: 100px; width: auto; display: block;
  background: none; mix-blend-mode: lighten;
}
.nav-right { display: flex; align-items: center; gap: .75rem; }
.nav-links  { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: .85rem; font-weight: 500;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1.5px; background: var(--accent);
  transition: width .25s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:not(.nav-cta):hover::after, .nav-links a:not(.nav-cta).active::after { width: 100%; }
.nav-links a.active { color: var(--text); }

.nav-cta {
  padding: .45rem 1.1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; color: var(--text); font-size: .82rem; font-weight: 600;
  text-decoration: none; transition: border-color .2s, background .2s;
}
.nav-cta:hover { border-color: var(--accent); background: var(--glow); }

.lang-btn {
  display: flex; align-items: center; gap: .45rem;
  padding: .38rem .85rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; color: var(--muted);
  font-size: .75rem; font-weight: 700; letter-spacing: .05em;
  cursor: pointer; transition: border-color .2s, color .2s;
}
.lang-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Flag icons via CSS — no HTML changes needed */
.lang-btn::before {
  content: '';
  display: block;
  width: 20px;
  height: 14px;
  border-radius: 2px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12);
}
/* English mode → show Serbian flag (to switch to SR) */
html[lang="en"] .lang-btn::before {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'><rect width='3' height='.667' fill='%23C6363C'/><rect width='3' height='.667' y='.667' fill='%230033A0'/><rect width='3' height='.667' y='1.333' fill='%23fff'/></svg>");
}
/* Serbian mode → show UK flag (to switch to EN) */
html[lang="sr"] .lang-btn::before {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'><rect width='60' height='30' fill='%23012169'/><path d='M0,0L60,30M60,0L0,30' stroke='%23fff' stroke-width='6'/><path d='M30,0V30M0,15H60' stroke='%23fff' stroke-width='10'/><path d='M30,0V30M0,15H60' stroke='%23C8102E' stroke-width='6'/><path d='M0,0L60,30M60,0L0,30' stroke='%23C8102E' stroke-width='4'/></svg>");
}

/* ── Apple-style nav — desktop only ── */
@media (min-width: 961px) {
  nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: rgba(8,5,0,.55);
    border-bottom-color: transparent;
    padding: 0 2.5rem;
    height: 60px;
  }

  .nav-logo { justify-self: start; }
  .nav-logo-img { height: 68px; }

  /* Pill — middle column, perfectly centered */
  .nav-links {
    grid-column: 2;
    align-self: center;
    display: flex;
    align-items: center;
    gap: .1rem;
    list-style: none;
    padding: .32rem .38rem;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 100px;
  }

  .nav-links li { display: flex; align-items: center; }

  /* Both language variants must render as flex so pill height never shifts */
  html[lang="sr"] .nav-links [data-sr] { display: flex !important; }

  .nav-links a {
    display: flex;
    align-items: center;
    padding: .38rem .95rem;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .01em;
    color: rgba(255,255,255,.6);
    transition: background .2s, color .2s;
    line-height: 1;
  }
  .nav-links a::after { display: none; }
  .nav-links a:hover {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.95);
  }
  .nav-links a.active {
    background: rgba(249,115,22,.16);
    color: var(--accent2);
    font-weight: 500;
  }

  /* Contact inside the pill — orange accent */
  .nav-cta {
    background: transparent;
    border: none;
    color: var(--accent2);
    font-size: .8rem;
    font-weight: 500;
    padding: .38rem .95rem;
  }
  .nav-cta:hover { background: rgba(249,115,22,.16); }

  /* Right side — lang button */
  .nav-right { justify-self: end; }
  .lang-btn {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.1);
    color: rgba(255,255,255,.6);
    font-size: .72rem;
  }
  .lang-btn:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(249,115,22,.4);
    color: var(--accent2);
  }
}

/* ── i18n ── */
[data-sr] { display: none !important; }
html[lang="sr"] [data-sr] { display: revert !important; }
html[lang="sr"] [data-en] { display: none !important; }

/* ── Container ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { position: relative; z-index: 2; }

/* ── Buttons ── */
.btn-primary {
  padding: .85rem 1.9rem;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  border: none; border-radius: 100px;
  color: #fff; font-size: .93rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 28px rgba(249,115,22,.32);
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(249,115,22,.52); }

.btn-secondary {
  padding: .85rem 1.9rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; color: var(--text);
  font-size: .93rem; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: border-color .2s, background .2s, transform .2s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-secondary:hover { border-color: var(--border-h); background: var(--surface-h); transform: translateY(-2px); }

/* ── Section headings ── */
.section-header { text-align: center; margin-bottom: 4rem; }
.s-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: .9rem;
}
.s-title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.1; }
.s-desc { color: var(--muted); font-size: 1rem; max-width: 520px; margin: 1rem auto 0; line-height: 1.75; }

/* ── Gradient text ── */
.g-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: gshift 4s linear infinite;
}
@keyframes gshift { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }

/* ── Reveal ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

/* ── Fade in ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* ── Tags / pills ── */
.pill {
  padding: .3rem .8rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; font-size: .78rem; color: var(--muted);
  transition: border-color .2s, color .2s;
}
.pill:hover { border-color: var(--accent); color: var(--accent); }

.pill-accent {
  padding: .2rem .65rem;
  background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.22);
  border-radius: 100px; font-size: .7rem; color: var(--accent2); font-weight: 500;
}

/* ── Glass card ── */
.glass {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px;
  transition: border-color .3s, background .3s, transform .3s;
}
.glass:hover { border-color: var(--border-h); background: var(--surface-h); transform: translateY(-4px); }

/* ══════════════════════════════════════
   PAGE LOADER
══════════════════════════════════════ */
#page-loader {
  position: fixed; inset: 0; z-index: 99999; overflow: hidden;
  pointer-events: all;
}
.pl-strip {
  position: absolute; left: -2px; right: -2px;
  background: #080500;
  transition: transform .9s cubic-bezier(.76, 0, .24, 1);
}
.pl-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0;
  transition: opacity .3s ease;
}
.pl-content.pl-content-out { opacity: 0; }

.pl-tag {
  font-size: .65rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(249,115,22,.45);
  margin-bottom: 1.25rem;
  animation: pl-up .6s .1s ease both;
}
.pl-name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(4rem, 15vw, 9rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(135deg, #ffffff, #ffd4a0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pl-up .6s .2s ease both;
  min-width: 4ch; text-align: center;
}
.pl-line-wrap {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1.5rem; animation: pl-up .6s .35s ease both;
}
.pl-line {
  height: 1px; background: linear-gradient(90deg, transparent, rgba(249,115,22,.6), transparent);
  animation: pl-line-grow 1s .5s ease both;
  width: 0;
}
@keyframes pl-line-grow { to { width: 120px; } }
.pl-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  box-shadow: 0 0 10px rgba(249,115,22,.8);
  animation: pl-dot-pulse 1.4s .8s ease-in-out infinite;
}
@keyframes pl-dot-pulse { 0%,100% { transform:scale(1); opacity:1; } 50% { transform:scale(1.8); opacity:.6; } }

.pl-sub {
  font-size: .6rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(249,115,22,.35);
  margin-top: 1.5rem; animation: pl-up .6s .45s ease both;
}
.pl-counter {
  position: absolute; bottom: 2rem; right: 2.5rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  color: rgba(255,249,240,.2); font-variant-numeric: tabular-nums;
  animation: pl-up .4s .6s ease both;
}
.pl-bar-wrap {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: rgba(249,115,22,.08);
}
.pl-bar {
  height: 100%; width: 0; background: linear-gradient(90deg, #f97316, #fbbf24);
  box-shadow: 0 0 12px rgba(249,115,22,.7);
  transition: width .2s ease;
}

@keyframes pl-up { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }

/* ══════════════════════════════════════
   BACK TO TOP BUTTON
══════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 52px; height: 52px;
  background: rgba(8,5,0,.85);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 150;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(16px) scale(.85);
  transition: opacity .35s ease, transform .35s cubic-bezier(.22,1,.36,1), box-shadow .25s;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.back-to-top:hover {
  box-shadow: 0 0 0 1px rgba(249,115,22,.5), 0 0 28px rgba(249,115,22,.3);
  transform: translateY(-3px) scale(1.05);
}
.back-to-top:active { transform: translateY(0) scale(.97); }

/* SVG progress ring */
.btt-ring {
  position: absolute; inset: -3px;
  width: calc(100% + 6px); height: calc(100% + 6px);
  transform: rotate(-90deg);
  pointer-events: none;
}
.btt-track {
  fill: none;
  stroke: rgba(249,115,22,.15);
  stroke-width: 2.5;
}
.btt-fill {
  fill: none;
  stroke: url(#bttGradient);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 175.93; /* 2π × 28 */
  stroke-dashoffset: 175.93;
  transition: stroke-dashoffset .15s linear;
}
.btt-icon {
  color: var(--accent);
  transition: transform .25s cubic-bezier(.22,1,.36,1), color .2s;
  position: relative; z-index: 1;
}
.back-to-top:hover .btt-icon {
  transform: translateY(-3px);
  color: var(--accent3);
}

@media (max-width: 600px) {
  .back-to-top { bottom: 1.25rem; right: 1.25rem; width: 46px; height: 46px; }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  position: relative; z-index: 2;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  overflow: hidden;
  background: rgba(8,5,0,.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}
.footer-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(249,115,22,.07), transparent 70%);
  pointer-events: none;
}
.footer-main {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-logo {
  height: 60px; width: auto; mix-blend-mode: lighten;
  transition: opacity .2s;
}
.footer-logo:hover { opacity: .75; }
.footer-tagline {
  font-size: .88rem; color: var(--muted); line-height: 1.75;
  max-width: 280px;
}
.footer-socials { display: flex; gap: .75rem; margin-top: .25rem; }
.footer-social {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.footer-social:hover {
  border-color: var(--accent); color: var(--accent);
  background: var(--glow);
}
.footer-nav-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-nav-title {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-nav-list a,
.footer-nav-list li > span:not([data-en]):not([data-sr]) {
  font-size: .85rem; color: var(--muted); text-decoration: none;
  transition: color .2s; display: inline-flex; align-items: center; gap: .4rem;
}
.footer-nav-list li { font-size: .85rem; color: var(--muted); }
.footer-nav-list a::before {
  content: ''; display: block; width: 0; height: 1px;
  background: var(--accent); transition: width .25s;
}
.footer-nav-list a:hover { color: var(--text); }
.footer-nav-list a:hover::before { width: 12px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0;
  font-size: .75rem; color: var(--dim);
}
.footer-bottom-left { display: flex; align-items: center; gap: 1.5rem; }
.footer-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.footer-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .25rem .75rem; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: .68rem; color: var(--dim);
  transition: border-color .2s, color .2s;
}
.footer-badge:hover { border-color: rgba(249,115,22,.3); color: var(--muted); }
.footer-avail {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; color: #22c55e;
}
.footer-avail-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 6px #22c55e; animation: pdot 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0 2rem; }
  .footer-nav-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom-left { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 480px) {
  .footer-nav-cols { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .footer-logo { height: 44px; }
}

/* ══════════════════════════════════════
   HAMBURGER BUTTON
══════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: rgba(249,115,22,.1);
  border: 1.5px solid rgba(249,115,22,.4);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px 11px;
  flex-shrink: 0;
  min-width: 44px; min-height: 44px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform .3s, opacity .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ══════════════════════════════════════
   FULL PAGE MENU
══════════════════════════════════════ */
.full-menu {
  position: fixed; inset: 0;
  background: #07040000;
  z-index: 500;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease, visibility .3s ease;
}
.full-menu.open {
  visibility: visible;
  opacity: 1;
  background: #070400;
}
.full-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.full-menu-logo {
  font-size: 1.1rem; font-weight: 700; letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; text-decoration: none;
}
.full-menu-close {
  width: 44px; height: 44px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; cursor: pointer;
  color: var(--text); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.full-menu-links {
  list-style: none;
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .25rem;
  padding: 2rem 1.5rem;
}
.full-menu-links li { width: 100%; text-align: center; }
.full-menu-links a {
  display: block;
  padding: .7rem 1rem;
  font-size: clamp(2rem, 9vw, 3.5rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.15;
  color: var(--text); text-decoration: none;
}
.full-menu-links a.active { color: var(--accent); }
.full-menu-links .fm-cta { margin-top: 1rem; }
.full-menu-links .fm-cta a {
  display: inline-block;
  font-size: 1rem; font-weight: 700; letter-spacing: 0;
  padding: .875rem 2.5rem; border-radius: 100px;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  color: #fff;
  box-shadow: 0 0 28px rgba(249,115,22,.35);
}
.full-menu-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: center;
  flex-shrink: 0;
}
.full-menu-footer .lang-btn { padding: .5rem 2rem; }

/* ══════════════════════════════════════
   RESPONSIVE — SHARED
══════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav { padding: 1rem 1.25rem; }
}

@media (max-width: 600px) {
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 0 1rem;
    background: rgba(8,5,0,.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  .nav-logo-img { height: 70px; }
}

/* ─ Tablet (600–960px) ─ */
@media (max-width: 960px) {
  .s-title { font-size: clamp(1.75rem, 4vw, 2.5rem); }
  .container { padding: 0 1.25rem; }
  .btn-primary, .btn-secondary { padding: .75rem 1.5rem; font-size: .88rem; }
}

/* ─ Mobile (< 600px) ─ */
@media (max-width: 600px) {
  .s-title { font-size: 1.75rem; }
  .s-desc  { font-size: .93rem; }
  .container { padding: 0 1rem; }
  .section-header { margin-bottom: 2.5rem; }
  .btn-primary, .btn-secondary { padding: .7rem 1.25rem; font-size: .85rem; }
  footer { padding: 1.5rem 1rem; }
  .lang-btn { padding: .35rem .7rem; font-size: .72rem; }
}

/* ── Instagram Picker Popup ── */
.ig-popup {
  position: fixed; z-index: 9999;
  background: linear-gradient(135deg, rgba(20,12,4,.97) 0%, rgba(30,16,4,.97) 100%);
  border: 1px solid rgba(249,115,22,.35);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: 16px; padding: .5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.7), 0 0 0 1px rgba(249,115,22,.08), 0 0 30px rgba(249,115,22,.08);
  min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(8px) scale(.97);
  transition: opacity .2s, visibility .2s, transform .2s;
}
.ig-popup.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.ig-popup-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem .85rem; border-radius: 10px;
  text-decoration: none; color: var(--text);
  transition: background .15s;
  cursor: pointer;
}
.ig-popup-item:hover { background: rgba(249,115,22,.1); }
.ig-popup-icon {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.2);
}
.ig-popup-icon svg { color: var(--accent); }
.ig-popup-label { font-size: .82rem; font-weight: 700; }
.ig-popup-handle { font-size: .72rem; color: var(--muted); margin-top: .1rem; }
.ig-popup-label { color: #fff; }
.ig-popup-divider { height: 1px; background: rgba(249,115,22,.18); margin: .3rem .5rem; }

/* ── Lanyard arrow ── */
.lanyard-arrow {
  display: none;
}
@media (min-width: 901px) {
  .lanyard-arrow {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.5rem;
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: arrowPulse 1.6s ease-in-out infinite;
  }
  .lanyard-arrow svg {
    animation: arrowBounce 1.6s ease-in-out infinite;
  }
}
@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); opacity: .6; }
  50%       { transform: translateX(14px); opacity: 1; }
}
@keyframes arrowPulse {
  0%, 100% { opacity: .7; }
  50%       { opacity: 1; }
}
