/* ===================================================
   MARČINKOVIĆ & PARTNERI — DARK THEME
   =================================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-base:       #09090f;
  --bg-surface:    #111118;
  --bg-card:       #16161f;
  --bg-card-hover: #1e1e2a;
  --border:        rgba(255,255,255,0.07);
  --border-light:  rgba(255,255,255,0.12);

  --gold:          #5099af;
  --gold-light:    #70b8cf;
  --gold-dim:      rgba(80,153,175,0.15);
  --gold-glow:     rgba(80,153,175,0.08);

  --text-primary:  #eaeaf4;
  --text-secondary:#9898b4;
  --text-muted:    #54546a;

  --serif:      'Playfair Display', Georgia, serif;
  --serif-body: 'Lora', Georgia, serif;
  --sans:        'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-card: 0 4px 32px rgba(0,0,0,0.45);
  --shadow-gold: 0 0 40px rgba(80,153,175,0.12);

  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--serif-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* UI elementi ostaju sans-serif */
.nav, .nav__link, .nav__toggle,
.btn,
input, textarea, select, label,
.section__eyebrow,
.stat__number, .stat__label,
.service-card__arrow,
.breadcrumb,
.page-header__back,
.sidebar-services,
.faq-item summary,
.hero__eyebrow,
.hero__scroll,
.team-card__role,
.network__stat-label,
.footer__links a,
.footer__legal {
  font-family: var(--sans);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 99px; }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--primary {
  background: var(--gold);
  color: #0a0a0f;
  font-weight: 600;
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(80,153,175,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 11px 24px;
  font-size: 0.85rem;
}
.btn--outline:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ---------- SECTION SHARED ---------- */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-surface); }

.section__header { text-align: center; max-width: 640px; margin: 0 auto 64px; }

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section__title em { font-style: italic; color: var(--gold); }

.section__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }
.reveal--delay-4 { transition-delay: 0.48s; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.is-scrolled {
  background: rgba(9,9,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__link:hover, .nav__link.is-active {
  color: var(--text-primary);
  background: var(--border);
}
.nav__link--cta {
  color: var(--gold);
  border: 1px solid rgba(80,153,175,0.4);
  margin-left: 8px;
}
.nav__link--cta:hover {
  background: var(--gold-dim);
  color: var(--gold-light);
  border-color: var(--gold);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 99px;
  transition: var(--transition);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.18;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(80,153,175,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(100,100,255,0.06) 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation: orbFloat 16s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-40px) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 80px 24px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid rgba(80,153,175,0.3);
  border-radius: var(--radius-sm);
  background: var(--gold-glow);
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.6rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.hero__title em { font-style: italic; color: var(--gold); }

.hero__tagline {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ===================================================
   STATS STRIP
   =================================================== */
.stats {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.stat {
  background: var(--bg-card);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat__number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat__plus { font-size: 1.6rem; vertical-align: super; }
.stat__label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ===================================================
   ABOUT
   =================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual { position: relative; }
.about__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.about__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about__icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.6;
}
.about__quote {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.about__quote-author {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.about__badge {
  position: absolute;
  bottom: -20px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-gold);
}
.about__badge-logo {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(1.1);
}
.about__desc {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about__desc strong { color: var(--text-primary); }

/* ===================================================
   SERVICES
   =================================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg-surface);
  padding: 36px 32px;
  transition: background var(--transition);
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 32px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover { background: var(--bg-card-hover); }
.service-card:hover::after { width: calc(100% - 64px); }

.service-card__icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-card--linked { cursor: pointer; }
.service-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card--linked .service-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}
.service-card--linked:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===================================================
   GLOBAL NETWORK
   =================================================== */
.network__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.network__desc {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.network__desc strong { color: var(--text-primary); }
.network__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.network__stat { display: flex; flex-direction: column; align-items: center; flex: 1; }
.network__stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.network__stat-num sup { font-size: 1rem; vertical-align: super; }
.network__stat-label { font-size: 0.75rem; color: var(--text-secondary); margin-top: 4px; }
.network__divider { width: 1px; height: 40px; background: var(--border); }

/* Network visual with GCG logo */
.network__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.network__gcg-logo {
  max-width: 220px;
  height: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

/* Globe Visual */
.globe-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.globe {
  position: relative;
  width: 280px; height: 280px;
}
.globe__ring {
  position: absolute;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.globe__ring--1 { width: 100%; height: 100%; border-color: rgba(80,153,175,0.2); animation: spin 20s linear infinite; }
.globe__ring--2 { width: 72%; height: 72%; animation: spin 15s linear infinite reverse; }
.globe__ring--3 { width: 44%; height: 44%; border-color: rgba(80,153,175,0.15); animation: spin 10s linear infinite; }
@keyframes spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

.globe__core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: radial-gradient(circle, var(--gold-dim), transparent);
  border: 1px solid rgba(80,153,175,0.4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
}
.globe__core small { font-family: var(--sans); font-size: 0.55rem; color: var(--text-secondary); font-weight: 400; }

.globe__dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform-origin: 0 0;
  box-shadow: 0 0 8px var(--gold);
}

/* ===================================================
   TEAM
   =================================================== */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--gold-glow), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.team-card:hover { border-color: var(--border-light); transform: translateY(-4px); }
.team-card:hover::before { opacity: 1; }

.team-card__avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold-dim), var(--bg-card-hover));
  border: 2px solid rgba(80,153,175,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.team-card__avatar--photo {
  overflow: hidden;
  background: none;
}
.team-card__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
}
.team-card__initials {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.team-card__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.team-card__role {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.team-card__bio {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================================
   REFERENCES
   =================================================== */
.refs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ref-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.ref-card:hover { border-color: rgba(80,153,175,0.25); transform: translateY(-3px); }
.ref-card__inner { padding: 28px; }
.ref-card__sector {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.ref-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===================================================
   CONTACT
   =================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact__desc {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
}
.contact__details { display: flex; flex-direction: column; gap: 24px; }
.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__detail-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact__detail-icon svg { width: 18px; height: 18px; }
.contact__detail strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.contact__detail span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact__detail a { color: var(--text-secondary); transition: color var(--transition); }
.contact__detail a:hover { color: var(--gold); }

/* FORM */
.contact__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact__form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 7px; }
.form__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.form__input {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form__input::placeholder { color: var(--text-muted); }
.form__input:focus {
  border-color: rgba(80,153,175,0.5);
  box-shadow: 0 0 0 3px rgba(80,153,175,0.08);
}
.form__select { appearance: none; cursor: pointer; }
.form__textarea { resize: vertical; min-height: 120px; }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer__logo {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 36px; height: 36px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer__social-link svg { width: 18px; height: 18px; }
.footer__social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.87rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }

.footer__address {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer__contact-link {
  display: block;
  font-size: 0.87rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  transition: color var(--transition);
}
.footer__contact-link:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer__gcg strong { color: var(--text-secondary); }

/* ===================================================
   BREADCRUMB
   =================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 20px 0;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { opacity: 0.5; }
.breadcrumb__current { color: var(--text-secondary); }

/* ===================================================
   PAGE HEADER (inner pages)
   =================================================== */
.page-header {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-header__content { position: relative; z-index: 1; }
.page-header__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  transition: color var(--transition);
}
.page-header__back:hover { color: var(--gold); }
.page-header__back svg { width: 14px; height: 14px; }
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header__lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.75;
}

/* ===================================================
   SERVICE DETAIL PAGE
   =================================================== */
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.service-detail__body h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin: 40px 0 16px;
}
.service-detail__body h2:first-child { margin-top: 0; }
.service-detail__body p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-detail__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.service-detail__body ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.93rem;
  color: var(--text-secondary);
}
.service-detail__body ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.service-detail__sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.sidebar-card__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.sidebar-services { display: flex; flex-direction: column; gap: 4px; }
.sidebar-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.sidebar-services a:hover, .sidebar-services a.is-active {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}
.sidebar-services a.is-active { color: var(--gold); }
.sidebar-services a svg { width: 12px; height: 12px; opacity: 0.4; flex-shrink: 0; }

/* ===================================================
   USLUGE LISTING PAGE
   =================================================== */
.services-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.service-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  text-decoration: none;
}
.service-item:hover {
  border-color: rgba(80,153,175,0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.service-item__icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.service-item__icon svg { width: 24px; height: 24px; }
.service-item__content {}
.service-item__title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.service-item__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
  border: 1px solid rgba(80,153,175,0.2);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, var(--gold-dim), transparent 70%);
  pointer-events: none;
}
.cta-banner__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.cta-banner__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
}
.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ===================================================
   FAQ ACCORDION
   =================================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item[open] { border-color: rgba(80,153,175,0.25); }
.faq-item__q {
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .about__grid,
  .network__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }

  .service-detail__grid { grid-template-columns: 1fr; }
  .service-detail__sidebar { position: static; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .refs__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .cta-banner { flex-direction: column; padding: 40px 36px; text-align: center; }
  .cta-banner__desc { margin: 0 auto; }
  .cta-banner__actions { justify-content: center; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 0; }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(9,9,15,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 16px;
    gap: 4px;
  }
  .nav__links.is-open { display: flex; }
  .nav__link { padding: 12px 16px; font-size: 0.95rem; }
  .nav__link--cta { margin-left: 0; text-align: center; margin-top: 8px; }
  .nav__toggle { display: flex; }

  .hero__content { padding: 60px 0; }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .stats__grid { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .refs__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .services__grid { grid-template-columns: 1fr; border-radius: var(--radius-md); }
  .services-list__grid { grid-template-columns: 1fr; }
  .network__stats { flex-direction: column; gap: 16px; }
  .network__divider { width: 40px; height: 1px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .stats__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 24px; }
  .hero__eyebrow { font-size: 0.65rem; }
}
