*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --white: #ffffff;
  --off: #f5f5f7;
  --border: #e8e8e8;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --red: #e53935;
  --red-hover: #c62828;
  --radius: 12px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  cursor: auto;
}

.cursor {
  width: 60px; height: 60px;
  background: rgba(177,33,33,0.114);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  filter: blur(8px);
  transition: none;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 88px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img { width: 72px; height: 72px; object-fit: contain; }
.nav-logo-text { font-family: 'DM Serif Display', serif; font-size: 24px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { background: var(--red) !important; color: #fff !important; padding: 11px 28px; border-radius: 980px; font-weight: 600 !important; font-size: 15px !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--red-hover) !important; }

/* HERO */
#hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 64px 40px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  scroll-margin-top: 60px;
}

.hero-eyebrow {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px; display: block;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(56px, 6.5vw, 84px);
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--red); }

.hero-sub {
  font-size: 17px; font-weight: 300;
  color: var(--muted); line-height: 1.7;
  margin-bottom: 36px; max-width: 460px;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 980px;
  font-size: 16px; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  cursor: auto; border: none;
  font-family: 'DM Sans', sans-serif;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-hover); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid #ccc; }
.btn-outline:hover { border-color: var(--text); }

.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-image img { width: 100%; max-width: 100%; object-fit: contain; }

/* HERO ICONS BAR */
.hero-icons-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 64px 48px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
}

.hero-icon-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  padding: 0 40px;
  border-right: 1px solid var(--border);
  flex: 1;
}
.hero-icon-item:first-child { padding-left: 0; }
.hero-icon-item:last-child { border-right: none; padding-right: 0; }
.hero-icon-item img { width: 72px; height: 72px; object-fit: contain; flex-shrink: 0; }

/* STATS BAR */
.stats-bar { background: var(--off); padding: 56px 64px; }
.stats-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 64px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.stat-item { display: flex; align-items: center; gap: 20px; padding: 0 48px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-icon { width: 80px; height: 80px; object-fit: contain; flex-shrink: 0; }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 52px; color: var(--text); letter-spacing: -0.02em; display: block; line-height: 1; }
.stat-label { font-size: 15px; color: var(--muted); display: block; margin-top: 4px; }

/* SEKCIJE SKUPNO */
.section-wrap { max-width: 1280px; margin: 0 auto; padding: 0 64px; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block; }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.02em; color: var(--text); line-height: 1.1; }
.section-desc { font-size: 17px; color: var(--muted); font-weight: 300; line-height: 1.7; max-width: 540px; margin: 14px auto 0; }

/* STORITVE */
#storitve { padding: 88px 64px; background: var(--white); scroll-margin-top: 108px; }
.storitve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.storitev-card { background: var(--off); border-radius: var(--radius); padding: 32px 28px; display: flex; gap: 20px; align-items: flex-start; transition: transform 0.25s, box-shadow 0.25s; }
.storitev-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.08); }
.storitev-icon { width: 90px; height: 90px; object-fit: contain; flex-shrink: 0; }
.storitev-title { font-weight: 700; font-size: 17px; color: var(--text); margin-bottom: 8px; }
.storitev-text { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ZAKAJ */
#zakaj { padding: 88px 64px; background: var(--off); scroll-margin-top: 108px; }
.zakaj-grid { display: flex; justify-content: center; background: var(--white); border-radius: var(--radius); box-shadow: 0 2px 16px rgba(0,0,0,0.05); overflow: hidden; }
.zakaj-item { flex: 1; text-align: center; padding: 40px 24px; border-right: 1px solid var(--border); }
.zakaj-item:last-child { border-right: none; }
.zakaj-icon { width: 90px; height: 90px; object-fit: contain; margin: 0 auto 16px; display: block; }
.zakaj-title { font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 8px; }
.zakaj-text { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* MNENJA */
#mnenja { padding: 88px 64px; background: var(--white); }
.mnenja-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mnenje-card { background: var(--off); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.mnenje-zvezde { color: #f4b400; font-size: 28px; letter-spacing: 4px; }
.mnenje-text { font-size: 20px; color: var(--text); line-height: 1.7; font-weight: 300; font-style: italic; flex: 1; }
.mnenje-avtor { font-size: 15px; font-weight: 700; color: var(--red); }

/* KONTAKT */
#kontakt { padding: 88px 64px; background: var(--off); scroll-margin-top: 108px; }
.kontakt-row { display: grid; grid-template-columns: 1fr 1fr 1.5fr; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 40px rgba(0,0,0,0.12); }
.kontakt-left { background: var(--red); padding: 52px 44px; color: #fff; }
.kontakt-left-title { font-family: 'DM Serif Display', serif; font-size: 28px; color: #fff; margin-bottom: 36px; }
.kontakt-left-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 40px; }
.kontakt-left-item { display: flex; align-items: center; gap: 16px; font-size: 15px; color: rgba(255,255,255,0.92); }
.kontakt-left-item svg { flex-shrink: 0; }
.kontakt-left-item a { color: rgba(255,255,255,0.92); text-decoration: none; }
.kontakt-left-item a:hover { color: #fff; text-decoration: underline; }
.btn-white { background: #fff; color: var(--red); padding: 14px 28px; border-radius: 980px; font-weight: 700; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: background 0.2s; }
.btn-white:hover { background: #ffe0e0; }
.kontakt-middle { background: var(--white); padding: 52px 44px; border-right: 1px solid var(--border); }
.kontakt-middle-title { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--text); margin-bottom: 10px; }
.kontakt-divider { width: 40px; height: 3px; background: var(--red); margin: 16px 0; }
.delovni-cas-text { font-size: 16px; color: var(--text); font-weight: 600; margin-bottom: 6px; }
.delovni-cas-ure { font-size: 26px; font-family: 'DM Serif Display', serif; color: var(--text); margin-bottom: 8px; }
.delovni-cas-note { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }
.kontakt-map { min-height: 400px; }
.kontakt-map iframe { width: 100%; height: 100%; min-height: 400px; border: none; display: block; }

/* FOOTER */
footer { background: var(--text); padding: 54px 64px; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: 'DM Serif Display', serif; font-size: 18px; color: rgba(255,255,255,0.85); }
.footer-brand img { width: 72px; height: 72px; object-fit: contain; }
.footer-links { display: flex; gap: 32px; list-style: none; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }

/* FLOAT BTNS */
.float-btns { position: fixed; bottom: 32px; right: 32px; display: flex; flex-direction: column; gap: 12px; z-index: 500; }
.float-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--text); color: #fff; padding: 14px 22px; border-radius: 980px; font-size: 15px; font-weight: 600; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.2); transition: background 0.2s, transform 0.2s; border: 2px solid rgba(255,255,255,0.15); }
.float-btn:hover { background: var(--red); transform: translateY(-2px); border-color: transparent; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 0 24px;