/*
Theme Name: PP Group
Theme URI: https://ppgroup.rs
Author: PP Group
Author URI: https://ppgroup.rs
Description: Custom WordPress tema za PP Group - distribuciju robe siroke potrosnje. Jednostranicni (one-page) dizajn sa dvojezicnim (SR/EN) prikazom.
Version: 1.3.3
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ppgroup
*/

:root {
  --blue-900: #0a1628;
  --blue-800: #0d2147;
  --blue-700: #112d66;
  --blue-600: #1a3f8f;
  --blue-500: #1e50b3;
  --blue-400: #2563d4;
  --blue-300: #4a7de8;
  --blue-200: #93b4f4;
  --blue-100: #dce8fd;
  --blue-50:  #f0f5ff;
  --white: #ffffff;
  --gray-50:  #f8f9fc;
  --gray-100: #eef0f5;
  --gray-200: #d8dce8;
  --gray-400: #8a91a8;
  --gray-600: #4a5168;
  --gray-800: #1e2336;
  --accent: #e8a020;
  --accent-light: #fef3db;
  --accent-rgb: 37, 99, 212;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 72px;
  --section-pad: 96px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(10,22,40,0.08), 0 1px 2px rgba(10,22,40,0.04);
  --shadow-md: 0 4px 16px rgba(10,22,40,0.10), 0 2px 6px rgba(10,22,40,0.06);
  --shadow-lg: 0 12px 40px rgba(10,22,40,0.14), 0 4px 12px rgba(10,22,40,0.08);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITY ──────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.screen-reader-text { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link.screen-reader-text:focus {
  position: fixed; top: 8px; left: 8px; width: auto; height: auto;
  padding: 12px 20px; z-index: 100000; clip: auto; overflow: visible;
  background: var(--blue-600); color: var(--white); border-radius: 6px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600; text-decoration: none;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  padding: 12px 24px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-500); color: var(--white);
}
.btn-primary:hover { background: var(--blue-400); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.85); }
.btn-white {
  background: var(--white); color: var(--blue-700);
}
.btn-white:hover { background: var(--blue-50); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-500);
  margin-bottom: 12px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--blue-400); border-radius: 2px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; line-height: 1.15; color: var(--blue-900);
}
.section-title span { color: var(--blue-500); }
.section-lead {
  font-size: 17px; line-height: 1.7; color: var(--gray-600);
  max-width: 520px; margin-top: 16px;
}

/* ── LANGUAGE TOGGLE ──────────────────────────────────────────── */
#lang-sr, #lang-en { display: none; }
body.lang-sr #lang-sr,
body.lang-en #lang-en { display: contents; }
body.lang-sr .en, body.lang-en .sr { display: none !important; }
body.lang-sr .sr, body.lang-en .en { display: block; }
body.lang-sr span.sr, body.lang-en span.en { display: inline; }
body.lang-sr span.en, body.lang-en span.sr { display: none; }

/* ── TOP BAR ──────────────────────────────────────────────────── */
.topbar {
  background: var(--blue-900); color: rgba(255,255,255,0.7);
  font-size: 12.5px; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar-contacts { display: flex; align-items: center; gap: 20px; }
.topbar-contact { display: flex; align-items: center; gap: 6px; transition: color var(--transition); }
.topbar-contact:hover { color: var(--white); }
.topbar-icon { width: 14px; height: 14px; opacity: 0.6; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.lang-btn {
  background: none; border: 1px solid rgba(255,255,255,0.2); border-radius: 4px;
  color: rgba(255,255,255,0.7); font-family: var(--font-body); font-size: 12px;
  font-weight: 500; padding: 3px 10px; cursor: pointer; transition: var(--transition);
}
.lang-btn:hover, .lang-btn.active { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.45); }

/* ── NAVBAR ───────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar .container { height: var(--nav-h); 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-mark {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 22px; height: 22px; fill: var(--white); }
.nav-logo-mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.nav-logo-img, .custom-logo { max-height: 52px; width: auto; display: block; }
.nav-logo-text { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--blue-900); }
.nav-logo-text span { color: var(--blue-500); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 14px; font-weight: 400; color: var(--gray-600);
  padding: 8px 14px; border-radius: 6px;
  transition: var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--blue-600); background: var(--blue-50); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--blue-500); border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-partner-btn {
  background: var(--blue-500); color: var(--white); font-family: var(--font-body);
  font-size: 13.5px; font-weight: 500; padding: 9px 20px;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.nav-partner-btn:hover { background: var(--blue-400); box-shadow: var(--shadow-md); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: var(--transition); }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--blue-900); z-index: 200; padding: 24px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-menu-close { background: none; border: none; cursor: pointer; color: var(--white); font-size: 28px; line-height: 1; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.mobile-link {
  font-family: var(--font-display); font-size: 24px; font-weight: 600; color: rgba(255,255,255,0.7);
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--white); }
.mobile-menu-footer { margin-top: 32px; }
.mobile-menu-footer .btn { width: 100%; justify-content: center; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--blue-900);
  padding: 90px 0 80px;
  min-height: 88vh; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(var(--accent-rgb),0.28) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(17,45,102,0.8) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 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% 80% at 50% 50%, black 0%, transparent 75%);
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-content { display: flex; flex-direction: column; gap: 24px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 6px 14px;
  font-size: 12.5px; color: rgba(255,255,255,0.75); width: fit-content;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }

.hero-title {
  font-family: var(--font-display); font-size: clamp(34px, 5vw, 58px);
  font-weight: 800; line-height: 1.08; color: var(--white);
  letter-spacing: -0.02em;
}
.hero-title .accent { color: var(--blue-300); }
.hero-title .line2 { display: block; }

.hero-sub {
  font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.65);
  max-width: 460px;
}
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat-item {}
.hero-stat-num {
  font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--white);
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }

.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-card-stack { position: relative; width: 100%; max-width: 420px; margin: 0 auto; }

.hero-main-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px); border-radius: 16px; padding: 28px;
  position: relative; z-index: 2;
}
.hero-card-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.hero-card-logo-mark {
  width: 40px; height: 40px; background: var(--blue-500); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.hero-card-logo-mark svg { width: 24px; height: 24px; fill: white; }
.hero-card-logo-img { max-height: 42px; max-width: 140px; width: auto; object-fit: contain; }
.hero-card-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white); }
.hero-card-tagline { font-size: 12px; color: rgba(255,255,255,0.45); }
.hero-card-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 18px 0; }
.hero-card-brands { display: flex; flex-direction: column; gap: 10px; }
.hero-card-brand-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; background: rgba(255,255,255,0.04); border-radius: 8px;
}
.hero-card-brand-name { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; }
.hero-card-brand-tag {
  font-size: 11px; padding: 2px 8px; border-radius: 4px;
  background: rgba(var(--accent-rgb),0.35); color: var(--blue-200);
}

.hero-float-card {
  position: absolute; right: -20px; bottom: -24px;
  background: var(--white); border-radius: 12px; padding: 14px 18px;
  box-shadow: var(--shadow-lg); z-index: 3;
  display: flex; align-items: center; gap: 12px;
  animation: float-card 4s ease-in-out infinite;
}
@keyframes float-card { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hero-float-icon { width: 36px; height: 36px; background: var(--blue-50); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.hero-float-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--blue-500); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.hero-float-num { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--blue-900); }
.hero-float-label { font-size: 11.5px; color: var(--gray-400); }

.hero-float-card2 {
  position: absolute; left: -16px; top: 20px;
  background: var(--blue-800); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 12px 16px;
  box-shadow: var(--shadow-lg); z-index: 3;
  animation: float-card 4s ease-in-out infinite 2s;
}
.hero-float2-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.hero-float2-val { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--white); }
.hero-float2-sub { font-size: 11px; color: var(--blue-200); margin-top: 2px; }

/* ── TRUST BAND ───────────────────────────────────────────────── */
.trust-band {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 32px 0;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, black 64px, black calc(100% - 64px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 64px, black calc(100% - 64px), transparent 100%);
}
.trust-band-inner { display: flex; align-items: center; gap: 0; }
.marquee-track {
  display: flex; align-items: center; gap: 72px;
  animation: marquee 32s linear infinite;
  min-width: max-content;
  padding: 0 36px;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-logo {
  height: 48px; width: auto; max-width: 150px; opacity: 0.55;
  filter: grayscale(1); transition: var(--transition);
  flex-shrink: 0; object-fit: contain;
}
.marquee-logo:hover { opacity: 1; filter: grayscale(0); }
.marquee-divider { width: 1px; height: 28px; background: var(--gray-200); flex-shrink: 0; }
.brand-text-logo {
  font-family: var(--font-display); font-size: 19px; font-weight: 700;
  color: var(--gray-400); letter-spacing: 0.05em; white-space: nowrap;
  transition: color var(--transition);
}
.brand-text-logo:hover { color: var(--gray-600); }

/* ── ABOUT ────────────────────────────────────────────────────── */
.about { padding: var(--section-pad) 0; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: 16px; overflow: hidden; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 100%);
  position: relative;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.about-img-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
.about-img-placeholder svg { width: 64px; height: 64px; fill: rgba(255,255,255,0.2); }
.about-img-placeholder p { font-size: 13px; color: rgba(255,255,255,0.3); text-align: center; }

.about-float-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white); border-radius: 12px; padding: 18px 22px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100);
  text-align: center;
}
.about-float-badge-num { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--blue-600); }
.about-float-badge-label { font-size: 12px; color: var(--gray-400); }

.about-content { display: flex; flex-direction: column; gap: 24px; }
.about-text { font-size: 16px; line-height: 1.75; color: var(--gray-600); }

.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pillar-card {
  padding: 18px; border: 1px solid var(--gray-100); border-radius: var(--radius);
  transition: var(--transition);
}
.pillar-card:hover { border-color: var(--blue-200); background: var(--blue-50); }
.pillar-icon {
  width: 36px; height: 36px; background: var(--blue-100); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 10px;
}
.pillar-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--blue-600); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pillar-title { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--blue-900); margin-bottom: 4px; }
.pillar-text { font-size: 13px; color: var(--gray-400); line-height: 1.5; }

.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-blue { background: var(--blue-500); color: white; font-family: var(--font-body); font-size: 14px; font-weight: 500; padding: 11px 22px; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-blue:hover { background: var(--blue-400); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--blue-600); font-family: var(--font-body); font-size: 14px; font-weight: 500; padding: 11px 22px; border-radius: var(--radius-sm); border: 1.5px solid var(--blue-200); cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-ghost:hover { background: var(--blue-50); border-color: var(--blue-300); }

/* ── STATS ────────────────────────────────────────────────────── */
.stats { padding: 72px 0; background: var(--blue-900); position: relative; overflow: hidden; }
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(var(--accent-rgb),0.25) 0%, transparent 65%);
}
.stats .container { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,0.06); border-radius: 16px; overflow: hidden; }
.stat-card {
  padding: 36px 24px; background: rgba(10,22,40,0.4);
  text-align: center; position: relative;
}
.stat-card::after {
  content: ''; position: absolute; top: 24px; right: 0;
  width: 1px; height: calc(100% - 48px);
  background: rgba(255,255,255,0.07);
}
.stat-card:last-child::after { display: none; }
.stat-num {
  font-family: var(--font-display); font-size: 44px; font-weight: 800;
  color: var(--white); line-height: 1; margin-bottom: 6px;
}
.stat-num .suffix { font-size: 28px; }
.stat-desc { font-size: 13.5px; color: rgba(255,255,255,0.5); }
.stat-icon { margin: 0 auto 14px; width: 40px; height: 40px; background: rgba(255,255,255,0.06); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.stat-icon svg { width: 20px; height: 20px; fill: var(--blue-300); }

/* ── BRANDS ───────────────────────────────────────────────────── */
.brands { padding: var(--section-pad) 0; background: var(--gray-50); }
.brands-head { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.brands-head .section-lead { margin: 12px auto 0; }
.brands-head .section-label { justify-content: center; }
.brands-head .section-label::before { display: none; }

.brands-tiers { display: flex; flex-direction: column; gap: 40px; }
.brands-tier {}
.brands-tier-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.brands-tier-label::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }

.brands-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.brand-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm); padding: 10px 18px;
  transition: var(--transition); cursor: default;
}
.brand-chip:hover { border-color: var(--blue-200); background: var(--blue-50); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.brand-chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-300); flex-shrink: 0; }
.brand-chip-name { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--gray-800); }

.brand-logo-chip {
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm); padding: 14px 22px; height: 64px;
  transition: var(--transition);
}
.brand-logo-chip:hover { border-color: var(--blue-200); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.brand-logo-img { max-height: 36px; max-width: 130px; width: auto; height: auto; object-fit: contain; filter: grayscale(1); opacity: 0.75; transition: var(--transition); }
.brand-logo-chip:hover .brand-logo-img { filter: grayscale(0); opacity: 1; }

/* ── REFERENCES ───────────────────────────────────────────────── */
.references { padding: var(--section-pad) 0; background: var(--white); }
.references-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }

.clients-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.client-card {
  background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; min-height: 100px; transition: var(--transition);
}
.client-card:hover { border-color: var(--blue-200); background: var(--blue-50); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.client-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.client-sub { font-size: 12px; color: var(--gray-400); }

.client-card-logo { padding: 20px; }
.client-logo-img { max-height: 44px; max-width: 100%; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.8; transition: var(--transition); }
.client-card-logo:hover .client-logo-img { filter: grayscale(0); opacity: 1; }

/* ── SERVICES ─────────────────────────────────────────────────── */
.services { padding: var(--section-pad) 0; background: var(--blue-900); position: relative; overflow: hidden; }
.services::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 50%, rgba(var(--accent-rgb),0.2) 0%, transparent 60%);
}
.services .container { position: relative; z-index: 1; }
.services-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.services-content .section-title { color: var(--white); }
.services-content .section-label { color: var(--blue-300); }
.services-content .section-label::before { background: var(--blue-400); }
.services-content .section-lead { color: rgba(255,255,255,0.55); }

.services-list { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.service-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  transition: var(--transition); cursor: default;
}
.service-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.service-icon-wrap { width: 40px; height: 40px; background: rgba(var(--accent-rgb),0.3); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-icon-wrap svg { width: 20px; height: 20px; fill: none; stroke: var(--blue-300); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.service-item-title { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.service-item-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; }

.services-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 24px; transition: var(--transition);
}
.service-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); }
.service-card-icon { width: 44px; height: 44px; background: rgba(var(--accent-rgb),0.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.service-card-icon svg { width: 22px; height: 22px; fill: var(--blue-300); }
.service-card-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.service-card-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.55; }
.service-card.featured { border-color: rgba(var(--accent-rgb),0.5); background: rgba(var(--accent-rgb),0.12); }
.service-card.featured .service-card-icon { background: rgba(var(--accent-rgb),0.4); }

/* ── COVERAGE ─────────────────────────────────────────────────── */
.coverage { padding: var(--section-pad) 0; background: var(--gray-50); }
.coverage-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.coverage-map {
  aspect-ratio: 1; background: var(--white); border-radius: 16px;
  border: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
}
.coverage-map-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 100%);
}
.coverage-map svg { position: relative; z-index: 1; width: 62%; max-height: 92%; }
.coverage-map-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.coverage-regions { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.coverage-region {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; background: var(--white);
  border: 1px solid var(--gray-100); border-radius: var(--radius);
  transition: var(--transition);
}
.coverage-region:hover { border-color: var(--blue-200); box-shadow: var(--shadow-sm); }
.coverage-region-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
}
.coverage-region-name { font-weight: 500; color: var(--blue-900); font-size: 14px; }
.coverage-region-detail { font-size: 12.5px; color: var(--gray-400); margin-top: 1px; }

/* ── CONTACT ──────────────────────────────────────────────────── */
.contact { padding: var(--section-pad) 0; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 10px; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius); transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--blue-200); background: var(--blue-50); }
.contact-info-icon { width: 38px; height: 38px; background: var(--blue-100); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 18px; height: 18px; fill: var(--blue-600); }
.contact-info-icon svg.icon-stroke { fill: none; stroke: var(--blue-600); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-label { font-size: 11.5px; color: var(--gray-400); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-info-val { font-size: 14.5px; font-weight: 500; color: var(--blue-900); }
.contact-info-val a { color: var(--blue-600); transition: color var(--transition); }
.contact-info-val a:hover { color: var(--blue-400); }

.catalog-cta {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 100%);
  border-radius: 14px; padding: 24px; display: flex; align-items: center; gap: 18px;
}
.catalog-cta-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.catalog-cta-icon svg { width: 24px; height: 24px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.catalog-cta-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: white; margin-bottom: 3px; }
.catalog-cta-sub { font-size: 13px; color: rgba(255,255,255,0.65); }
.catalog-cta-btn { margin-left: auto; flex-shrink: 0; background: white; color: var(--blue-700); font-family: var(--font-body); font-size: 13px; font-weight: 500; padding: 9px 18px; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.catalog-cta-btn:hover { background: var(--blue-50); transform: translateY(-1px); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 500; color: var(--gray-600); }
.form-input, .form-select, .form-textarea {
  font-family: var(--font-body); font-size: 14px; color: var(--gray-800);
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 11px 14px;
  transition: var(--transition); outline: none; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-400); background: var(--white);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }
.form-submit {
  background: var(--blue-500); color: white; font-family: var(--font-body);
  font-size: 15px; font-weight: 500; padding: 14px 28px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--blue-400); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.form-submit svg { width: 16px; height: 16px; fill: white; }
.form-submit:disabled { opacity: 0.7; cursor: default; transform: none; }
.form-msg { font-size: 13px; margin-top: -4px; }
.form-msg.error { color: #d33; }

/* ── MAPA (lazy-load, ucitava se tek na klik) ─────────────────── */
.map-facade {
  position: relative; margin-top: 40px; border-radius: 16px; overflow: hidden;
  aspect-ratio: 16/6; min-height: 220px; border: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: center;
}
.map-facade-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, var(--blue-50) 0%, var(--gray-50) 100%);
  background-image:
    linear-gradient(rgba(30,80,179,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,80,179,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-facade-btn {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 100px;
  padding: 12px 22px; font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--blue-700); cursor: pointer; box-shadow: var(--shadow-md); transition: var(--transition);
}
.map-facade-btn:hover { background: var(--blue-50); transform: translateY(-1px); }
.map-facade-btn svg { width: 18px; height: 18px; fill: var(--blue-500); }
.map-embed-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer { background: var(--blue-900); padding: 64px 0 0; }
.footer-main { display: grid; grid-template-columns: 1.5fr 1.1fr 1fr 1.1fr; gap: 32px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-mark { width: 36px; height: 36px; background: var(--blue-600); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.footer-logo-mark svg { width: 20px; height: 20px; fill: white; }
.footer-logo-img { max-height: 44px; width: auto; display: block; }
.footer-logo-text { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white); }
.footer-tagline { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 240px; }
.footer-socials { display: flex; gap: 8px; }
.social-btn { width: 34px; height: 34px; background: rgba(255,255,255,0.06); border-radius: 7px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-btn:hover { background: rgba(255,255,255,0.14); }
.social-btn svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.6); }
.social-btn:hover svg { fill: white; }

.footer-col-title { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 13.5px; color: rgba(255,255,255,0.55); transition: color var(--transition); white-space: nowrap; }
.footer-link:hover { color: var(--white); }
.footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-item svg { width: 14px; height: 14px; fill: var(--blue-400); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

.footer-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── ANIMATIONS ────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-1 { transition-delay: 0.05s; }
.fade-up-2 { transition-delay: 0.12s; }
.fade-up-3 { transition-delay: 0.20s; }
.fade-up-4 { transition-delay: 0.28s; }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .services-inner { grid-template-columns: 1fr; }
  .coverage-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; --nav-h: 64px; }
  .topbar-contacts { gap: 12px; }
  .topbar-contact:nth-child(3) { display: none; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .brands-tiers { gap: 32px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .about-pillars { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 60px 0; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .brands-grid { gap: 8px; }
}
