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

:root {
  --bg:       #0a0d0f;
  --bg2:      #111518;
  --bg3:      #181d22;
  --accent:   #f59e0b;
  --accent2:  #fbbf24;
  --text:     #c8d0d8;
  --text-dim: #6a7a88;
  --white:    #f0f4f8;
  --radius:   8px;
  --trans:    0.3s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter','Segoe UI',system-ui,sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
a { color: var(--accent); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--white); }
img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 24px; background: rgba(245,158,11,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.12); }
.header-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.site-logo { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.5px; color: #0a0d0f; }
.site-logo span { color: rgba(10,13,15,0.6); }
.site-nav ul { display: flex; gap: 32px; list-style: none; }
.site-nav a { color: rgba(10,13,15,0.85); font-size: 0.88rem; font-weight: 500; transition: color var(--trans); }
.site-nav a:hover { color: #0a0d0f; }
.nav-cta { background: #0a0d0f !important; color: #f59e0b !important; padding: 8px 18px; border-radius: 6px; font-weight: 700 !important; }
.nav-cta:hover { background: #1a2025 !important; color: #fbbf24 !important; }
.nav-phone { display: flex; align-items: center; gap: 6px; color: rgba(10,13,15,0.85) !important; font-weight: 600 !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: #0a0d0f; border-radius: 2px; transition: var(--trans); display: block; }
.mobile-nav { display: none; background: #0a0d0f; border-top: 1px solid rgba(245,158,11,0.2); }
.mobile-nav ul { list-style: none; padding: 16px 24px; display: flex; flex-direction: column; gap: 0; }
.mobile-nav a { display: block; padding: 12px 0; color: var(--text); font-size: 1rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-nav.open { display: block; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--radius); font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all var(--trans); border: none; text-decoration: none; }
.btn-primary { background: var(--accent); color: #0a0d0f; }
.btn-primary:hover { background: var(--accent2); color: #0a0d0f; transform: translateY(-1px); }
.btn-outline { background: transparent; color: #374151; border: 1.5px solid #d1d5db; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: #fff7ed; }
.btn-full { width: 100%; justify-content: center; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; position: relative; overflow: hidden; }

/* Hero slika z efekti */
.hero-img {
  position: absolute; inset: 0;
  background: url('https://rusenje-objektov.si/wp-content/uploads/2026/06/rusenje-hise.jpg') center center / cover no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;
  filter: brightness(0.38) saturate(0.7);
  transform-origin: center center;
}
@keyframes heroZoom {
  0%   { transform: scale(1)    translateX(0);     filter: brightness(0.38) saturate(0.7); }
  50%  { transform: scale(1.06) translateX(-1%);   filter: brightness(0.42) saturate(0.8); }
  100% { transform: scale(1.1)  translateX(1%);    filter: brightness(0.36) saturate(0.65); }
}

/* Overlay: temni gradient + amber leva stran */
.hero-img-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg,
      rgba(10,13,15,0.92) 0%,
      rgba(10,13,15,0.75) 45%,
      rgba(10,13,15,0.35) 75%,
      rgba(10,13,15,0.15) 100%),
    linear-gradient(to bottom,
      rgba(10,13,15,0.5) 0%,
      transparent 40%,
      rgba(10,13,15,0.7) 100%);
}

/* Amber vignette levo spodaj */
.hero-img-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 100%, rgba(245,158,11,0.08) 0%, transparent 60%);
}

.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 30% 50%, rgba(245,158,11,0.07) 0%, transparent 65%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(245,158,11,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(245,158,11,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.hero-sweep { position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(245,158,11,0.025), transparent); animation: sweep 10s infinite; }
@keyframes sweep { 0% { left: -60%; } 100% { left: 160%; } }
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-particles span { position: absolute; width: 3px; height: 3px; background: var(--accent); border-radius: 50%; opacity: 0.4; animation: float 6s infinite; }
.hero-particles span:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.hero-particles span:nth-child(3) { top: 40%; left: 60%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { top: 80%; left: 30%; animation-delay: 3s; }
.hero-particles span:nth-child(5) { top: 30%; left: 90%; animation-delay: 4s; }
.hero-particles span:nth-child(6) { top: 70%; left: 50%; animation-delay: 5s; }
@keyframes float { 0%,100% { transform: translateY(0); opacity: 0.4; } 50% { transform: translateY(-20px); opacity: 0.8; } }
.hero-content { position: relative; max-width: 780px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); border-radius: 20px; font-size: 0.82rem; font-weight: 600; color: var(--accent); margin-bottom: 24px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; color: var(--white); letter-spacing: -1px; margin-bottom: 20px; }
.accent { color: var(--accent); }
.hero-desc { font-size: 1.1rem; color: var(--text); max-width: 600px; margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-badges { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-dim); }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--white); }
.stat-num span { font-size: 1.1rem; color: var(--accent); }
.stat-label { font-size: 0.78rem; color: var(--text-dim); margin-top: 2px; }

/* URGENCY BAR */
.urgency-bar { background: #fff8ed; border-top: 1px solid #fde68a; border-bottom: 1px solid #fde68a; padding: 14px 0; }
.urgency-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.urgency-left { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #3d2e00; }
.urgency-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.urgency-btn { font-size: 0.85rem; font-weight: 700; color: var(--accent); white-space: nowrap; }
.urgency-btn:hover { color: #b45309; }

/* SECTIONS */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: #111827; letter-spacing: -0.5px; margin-bottom: 16px; }
.section-desc { font-size: 1rem; color: #6b7280; max-width: 560px; margin: 0 auto; }

/* SERVICES — belo ozadje */
.services { background: #ffffff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px; padding: 28px; transition: all var(--trans); }
.service-card:hover { border-color: #f59e0b; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(245,158,11,0.1); }
.service-icon { width: 48px; height: 48px; background: #fff7ed; border: 1px solid #fed7aa; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: #6b7280; line-height: 1.6; }

/* HOW IT WORKS — svetlo sivo */
.how-it-works { background: #f3f4f6; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step-card { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 28px; position: relative; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.step-num { font-size: 2.8rem; font-weight: 800; color: #fde68a; line-height: 1; margin-bottom: 16px; }
.step-card h3 { font-size: 0.98rem; font-weight: 700; color: #111827; margin-bottom: 10px; }
.step-card p { font-size: 0.87rem; color: #6b7280; line-height: 1.6; }

/* PRICING — belo */
.pricing-section { background: #ffffff; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-bottom: 24px; }
.price-card { background: #f9fafb; border: 1.5px solid #e5e7eb; border-radius: 14px; padding: 32px; position: relative; }
.price-card--featured { border-color: #f59e0b; background: #fffbeb; box-shadow: 0 4px 24px rgba(245,158,11,0.12); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.price-type { font-size: 0.8rem; font-weight: 700; color: #9ca3af; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1.5px; }
.price-range { font-size: 1.7rem; font-weight: 800; color: #111827; margin-bottom: 20px; }
.price-range span { color: var(--accent); }
.price-list { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.price-list li { font-size: 0.87rem; color: #4b5563; padding-left: 20px; position: relative; }
.price-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pricing-note { text-align: center; font-size: 0.82rem; color: #9ca3af; }

/* STATS — amber pas */
.stats-section { background: #f59e0b; border: none; padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; text-align: center; }
.stat-card { padding: 16px; }
.stat-big { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-big span { font-size: 1.2rem; color: rgba(255,255,255,0.75); }
.stat-desc { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin-top: 6px; font-weight: 500; }

/* CITIES — svetlo sivo */
.cities-section { background: #f3f4f6; }
.cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.city-card { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 24px; transition: all var(--trans); }
.city-card:hover { border-color: #f59e0b; box-shadow: 0 4px 16px rgba(245,158,11,0.08); }
.city-card h3 { font-size: 0.95rem; font-weight: 700; color: #111827; margin-bottom: 8px; }
.city-card p { font-size: 0.83rem; color: #6b7280; line-height: 1.55; }
.city-card--cta { background: #fffbeb; border-color: #fcd34d; }

/* FAQ — belo */
.faq-section { background: #ffffff; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; transition: border-color var(--trans); }
.faq-item.open { border-color: #f59e0b; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; color: #111827; font-size: 0.95rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q:hover { color: var(--accent); }
.faq-arrow { transition: transform var(--trans); flex-shrink: 0; color: #9ca3af; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-a { display: none; padding: 0 24px 20px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 0.9rem; color: #4b5563; line-height: 1.7; }

/* CONTACT — svetlo sivo */
.contact-section { background: #f3f4f6; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { font-size: 0.95rem; color: #4b5563; margin-bottom: 24px; line-height: 1.7; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.contact-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #374151; }
.contact-form-wrap { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: #374151; }
.form-group input, .form-group select, .form-group textarea { background: #f9fafb; border: 1.5px solid #d1d5db; border-radius: var(--radius); padding: 11px 14px; color: #111827; font-size: 0.9rem; font-family: inherit; transition: border-color var(--trans); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); background: #fff; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-success { display: none; margin-top: 12px; padding: 12px 16px; background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius); color: #16a34a; font-size: 0.9rem; text-align: center; }
.form-error { display: none; margin-top: 12px; padding: 12px 16px; background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--radius); color: #dc2626; font-size: 0.9rem; text-align: center; }

/* CROSS BANNERS — belo */
.cross-banners { background: #ffffff; border-top: 1px solid #e5e7eb; padding: 48px 0; }
.cross-banners-label { text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #9ca3af; margin-bottom: 20px; }
.cross-banners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; max-width: 1100px; margin: 0 auto; }
.cross-banner-card { display: flex; align-items: center; gap: 14px; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 10px; padding: 16px 20px; color: #374151; transition: all var(--trans); }
.cross-banner-card:hover { border-color: #f59e0b; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,158,11,0.1); color: #111827; }

.cross-banner-card-body { flex: 1; }
.cross-banner-card-name { font-size: 0.82rem; font-weight: 700; margin-bottom: 3px; }
.cross-banner-card-desc { font-size: 0.76rem; color: #6b7280; }

/* FOOTER */
.site-footer { background: var(--bg); border-top: 1px solid rgba(255,255,255,0.05); padding: 48px 0; }
.footer-inner { text-align: center; }
.footer-logo { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--text-dim); }
.footer-desc { font-size: 0.87rem; color: var(--text-dim); max-width: 480px; margin: 0 auto 16px; }
.footer-email { margin-bottom: 20px; }
.footer-email a { display: inline-flex; align-items: center; gap: 7px; font-size: 0.88rem; color: var(--text-dim); transition: color var(--trans); }
.footer-email a:hover { color: var(--accent); }
.footer-trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-bottom: 24px; }
.footer-trust-badge { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-dim); }
.footer-copy { font-size: 0.78rem; color: rgba(106,122,136,0.6); }

/* =====================
   BLOG PAGE
   ===================== */

/* Hero */
.blog-hero { background: #111827; padding: 110px 0 56px; }
.blog-hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.blog-hero-text { flex: 1; min-width: 280px; }
.blog-hero-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #f9fafb; letter-spacing: -0.5px; line-height: 1.2; margin: 10px 0 14px; }
.blog-hero-desc { font-size: 1rem; color: #9ca3af; max-width: 500px; line-height: 1.7; }
.blog-hero-stats { display: flex; gap: 32px; flex-shrink: 0; }
.bhs-item { text-align: center; }
.bhs-num { font-size: 2rem; font-weight: 800; color: #f59e0b; line-height: 1; }
.bhs-label { font-size: 0.75rem; color: #6b7280; margin-top: 4px; }

/* Main section */
.blog-main { background: #f3f4f6; padding: 56px 0 80px; }

/* FEATURED artikel */
.blog-featured { display: grid; grid-template-columns: 1.4fr 1fr; background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; overflow: hidden; margin-bottom: 32px; text-decoration: none; color: inherit; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.blog-featured:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-2px); border-color: #f59e0b; }
.bf-left { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.bf-label { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; border: 1px solid; width: fit-content; }
.bf-title { font-size: 1.5rem; font-weight: 800; color: #111827; line-height: 1.25; letter-spacing: -0.3px; }
.bf-excerpt { font-size: 0.93rem; color: #4b5563; line-height: 1.7; }
.bf-meta { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: #9ca3af; }
.bf-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 700; color: #f59e0b; margin-top: 4px; transition: gap 0.2s; }
.blog-featured:hover .bf-cta { gap: 12px; }
.bf-right { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; padding: 40px; }
.bf-icon-wrap { width: 100px; height: 100px; border-radius: 50%; border: 2px solid; display: flex; align-items: center; justify-content: center; }
.bf-num { font-size: 3rem; font-weight: 800; color: #111827; line-height: 1; }
.bf-num span { font-size: 1rem; color: #9ca3af; font-weight: 500; }

/* KARTICA MREŽA */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.bcard { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 24px; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden; transition: all 0.3s ease; }
.bcard:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-3px); border-color: #d1d5db; }
.bcard-line { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; opacity: 0; transition: opacity 0.3s; }
.bcard:hover .bcard-line { opacity: 1; }
.bcard-top { display: flex; align-items: center; justify-content: space-between; }
.bcard-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }
.bcard-mins { font-size: 0.72rem; color: #9ca3af; font-weight: 500; }
.bcard-title { font-size: 1rem; font-weight: 700; color: #111827; line-height: 1.4; flex: 1; }
.bcard-excerpt { font-size: 0.83rem; color: #6b7280; line-height: 1.6; }
.bcard-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid #f3f4f6; }
.bcard-date { font-size: 0.75rem; color: #9ca3af; }
.bcard-arrow { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; font-weight: 600; color: #374151; transition: color 0.2s, gap 0.2s; }
.bcard:hover .bcard-arrow { color: #f59e0b; gap: 8px; }

/* CTA */
.blog-cta { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 28px 36px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.blog-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.blog-cta-left { display: flex; align-items: center; gap: 16px; }
.blog-cta-icon { width: 52px; height: 52px; background: #fff7ed; border: 1px solid #fed7aa; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.blog-cta-title { font-size: 1.05rem; font-weight: 700; color: #111827; margin-bottom: 4px; }
.blog-cta-sub { font-size: 0.85rem; color: #6b7280; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .bf-right { display: none; }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero-inner { flex-direction: column; }
  .blog-cta-inner { flex-direction: column; align-items: flex-start; }
  .bf-left { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: 1.8rem; }
  .trust-badges { gap: 12px; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.6rem; }
}

/* LOGO z ikono */
.site-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-text { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.5px; line-height: 1; }


/* FOOTER logo z ikono */
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-icon { flex-shrink: 0; }


/* Partner logo v cross-bannerju */
.cross-banner-logo { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.cross-banner-logo svg { border-radius: 10px; }


/* === PARTNER LOGOTIPI (posodobljeno) === */
.cross-banner-logo { flex-shrink: 0; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; }
.cross-banner-logo svg { width: 52px !important; height: 52px !important; border-radius: 12px; display: block; }
.cross-banner-card { gap: 16px; }
.cross-banners-grid { grid-template-columns: repeat(3, 1fr) !important; max-width: 1100px !important; }
