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

:root {
  --bg:       #0a0d0f;
  --bg2:      #111518;
  --bg3:      #181d22;
  --accent:   #16a34a;
  --accent2:  #4ade80;
  --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(22,163,74,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: #16a34a !important; padding: 8px 18px; border-radius: 6px; font-weight: 700 !important; }
.nav-cta:hover { background: #1a2025 !important; color: #4ade80 !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(22,163,74,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: #f0fdf4; }
.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; }

/* Ozadje heroja: samo gradienti, brez fotografije */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(22,163,74,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 85% 80%, rgba(74,222,128,0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 30% 50%, rgba(22,163,74,0.07) 0%, transparent 65%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(22,163,74,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(22,163,74,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(22,163,74,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(22,163,74,0.1); border: 1px solid rgba(22,163,74,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: #f0fdf4; border-top: 1px solid #bbf7d0; border-bottom: 1px solid #bbf7d0; 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: #14361f; }
.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: #15803d; }

/* 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: #16a34a; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(22,163,74,0.1); }
.service-icon { width: 48px; height: 48px; background: #f0fdf4; border: 1px solid #bbf7d0; 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: #bbf7d0; 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: #16a34a; background: #f0fdf4; box-shadow: 0 4px 24px rgba(22,163,74,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: #16a34a; 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: #16a34a; box-shadow: 0 4px 16px rgba(22,163,74,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: #f0fdf4; border-color: #86efac; }

/* 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: #16a34a; }
.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: #16a34a; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(22,163,74,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: #16a34a; 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: #16a34a; }
.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: #16a34a; 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: #16a34a; 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: #f0fdf4; border: 1px solid #bbf7d0; 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; }

/* =====================
   SINGLE ARTICLE PAGE
   ===================== */

/* Hero */
.article-hero { background: #111827; padding: 100px 0 48px; }
.article-hero-inner { max-width: 780px; }
.article-back { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: #9ca3af; margin-bottom: 24px; transition: color 0.2s; }
.article-back:hover { color: #16a34a; }
.article-tags { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.article-tag { background: rgba(22,163,74,0.15); color: #16a34a; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; border: 1px solid rgba(22,163,74,0.3); }
.article-read-time, .article-date { font-size: 0.8rem; color: #6b7280; }
.article-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: #f9fafb; line-height: 1.25; letter-spacing: -0.5px; margin-bottom: 16px; }
.article-intro { font-size: 1rem; color: #9ca3af; line-height: 1.7; max-width: 680px; }

/* Layout */
.article-section { background: #f3f4f6; padding: 48px 0 80px; }
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }

/* Article content */
.article-content { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; overflow: hidden; }
.article-body { padding: 40px 48px; }

/* Tipografija v članku */
.article-body h2 { font-size: 1.4rem; font-weight: 800; color: #111827; margin: 36px 0 14px; padding-top: 8px; border-top: 2px solid #f3f4f6; letter-spacing: -0.3px; }
.article-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.article-body h3 { font-size: 1.1rem; font-weight: 700; color: #1f2937; margin: 24px 0 10px; }
.article-body h4 { font-size: 0.95rem; font-weight: 700; color: #374151; margin: 20px 0 8px; }
.article-body p { font-size: 0.97rem; color: #374151; line-height: 1.8; margin-bottom: 16px; }
.article-body strong { color: #111827; font-weight: 700; }
.article-body a { color: #16a34a; font-weight: 600; text-decoration: underline; text-decoration-color: rgba(22,163,74,0.3); }
.article-body a:hover { color: #15803d; }

/* Liste */
.article-body ul, .article-body ol { margin: 0 0 20px 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.article-body ul li { font-size: 0.95rem; color: #374151; line-height: 1.6; padding-left: 22px; position: relative; }
.article-body ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: #16a34a; border-radius: 50%; }
.article-body ol { counter-reset: ol-counter; }
.article-body ol li { counter-increment: ol-counter; padding-left: 32px; }
.article-body ol li::before { content: counter(ol-counter); position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: #16a34a; color: #0a0d0f; font-size: 0.7rem; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Tabele */
.article-body table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: 10px; overflow: hidden; border: 1px solid #e5e7eb; font-size: 0.9rem; }
.article-body thead { background: #111827; }
.article-body thead th { padding: 12px 16px; color: #f9fafb; font-weight: 700; text-align: left; font-size: 0.82rem; letter-spacing: 0.5px; }
.article-body tbody tr { border-bottom: 1px solid #f3f4f6; transition: background 0.15s; }
.article-body tbody tr:hover { background: #f0fdf4; }
.article-body tbody td { padding: 12px 16px; color: #374151; }
.article-body tbody tr:last-child { border-bottom: none; }
.article-body figure { margin: 0; }

/* CTA box spodaj */
.article-cta-box { display: flex; align-items: center; gap: 20px; background: #f0fdf4; border: 1.5px solid #86efac; border-radius: 12px; padding: 24px 32px; margin: 0 48px 0; flex-wrap: wrap; }
.article-cta-icon { width: 52px; height: 52px; background: #fff; border: 1px solid #bbf7d0; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.article-cta-text { flex: 1; min-width: 200px; }
.article-cta-text strong { display: block; font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 4px; }
.article-cta-text span { font-size: 0.83rem; color: #6b7280; }

/* Nav med članki */
.article-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 32px 48px; border-top: 1px solid #f3f4f6; }
.article-nav-item { display: flex; flex-direction: column; gap: 4px; padding: 16px; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 10px; text-decoration: none; transition: all 0.2s; }
.article-nav-item:hover { border-color: #16a34a; background: #f0fdf4; }
.article-nav-label { font-size: 0.72rem; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: 1px; }
.article-nav-title { font-size: 0.85rem; font-weight: 600; color: #111827; line-height: 1.4; }
.article-nav-next { text-align: right; }

/* SIDEBAR */
.article-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }

.sidebar-cta { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 28px; }
.sidebar-cta-icon { margin-bottom: 14px; }
.sidebar-cta h4 { font-size: 1rem; font-weight: 800; color: #111827; margin-bottom: 8px; }
.sidebar-cta p { font-size: 0.85rem; color: #6b7280; margin-bottom: 14px; line-height: 1.6; }
.sidebar-cta-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 6px; }
.sidebar-cta-list li { font-size: 0.82rem; color: #374151; font-weight: 500; }

.sidebar-posts-box { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 24px; }
.sidebar-posts-title { font-size: 0.88rem; font-weight: 800; color: #111827; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.sidebar-posts-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.sidebar-posts-list li { border-bottom: 1px solid #f3f4f6; }
.sidebar-posts-list li:last-child { border-bottom: none; }
.sidebar-posts-list a { display: flex; align-items: flex-start; gap: 8px; padding: 10px 0; font-size: 0.82rem; color: #374151; font-weight: 500; line-height: 1.4; transition: color 0.2s; text-decoration: none; }
.sidebar-posts-list a:hover { color: #16a34a; }
.sidebar-posts-list svg { flex-shrink: 0; margin-top: 2px; color: #16a34a; }

.sidebar-facts { background: #111827; border-radius: 14px; padding: 24px; }
.sidebar-facts h4 { font-size: 0.78rem; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.sidebar-fact { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sidebar-fact:last-child { border-bottom: none; }
.sidebar-fact-num { font-size: 1.3rem; font-weight: 800; color: #16a34a; }
.sidebar-fact-label { font-size: 0.75rem; color: #9ca3af; text-align: right; }

/* Responsive */
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .article-body { padding: 28px 24px; }
  .article-cta-box { margin: 0 24px; }
  .article-nav { padding: 24px; }
}
@media (max-width: 600px) {
  .article-nav { grid-template-columns: 1fr; }
  .article-cta-box { flex-direction: column; align-items: flex-start; }
}

/* === SINGLE ARTICLE — polaganje-umetne-trave.si === */
.article-hero { background: #0d1117; padding: 100px 0 48px; border-bottom: 1px solid rgba(22,163,74,0.25); }
.article-hero-inner { max-width: 800px; }
.article-back { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: #6b7280; margin-bottom: 24px; transition: color 0.2s; text-decoration: none; }
.article-back:hover { color: #16a34a; }
.article-back svg { transition: transform 0.2s; }
.article-back:hover svg { transform: translateX(-3px); }
.article-tags { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.article-tag { background: rgba(22,163,74,0.1); color: #16a34a; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; border: 1px solid rgba(22,163,74,0.25); }
.article-dot { color: #374151; }
.article-read-time, .article-date { font-size: 0.8rem; color: #6b7280; }
.article-title { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; color: #f9fafb; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 18px; }
.article-intro { font-size: 1.05rem; color: #9ca3af; line-height: 1.7; }
.article-section { background: #111827; padding: 48px 0 80px; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; }
.article-content { background: #1a2233; border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; overflow: hidden; }
.article-body { padding: 44px 52px; }
.article-body h2 { font-size: 1.35rem; font-weight: 800; color: #f9fafb; margin: 40px 0 14px; padding-bottom: 12px; border-bottom: 1px solid rgba(22,163,74,0.2); letter-spacing: -0.3px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.05rem; font-weight: 700; color: #e5e7eb; margin: 24px 0 10px; }
.article-body h4 { font-size: 0.95rem; font-weight: 700; color: #d1d5db; margin: 18px 0 8px; }
.article-body p { font-size: 0.97rem; color: #9ca3af; line-height: 1.85; margin-bottom: 18px; }
.article-body strong { color: #f9fafb; font-weight: 700; }
.article-body a { color: #16a34a; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.article-body ul li { font-size: 0.95rem; color: #9ca3af; line-height: 1.65; padding-left: 22px; position: relative; }
.article-body ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; background: #16a34a; border-radius: 50%; }
.article-body ol { counter-reset: ol-counter; }
.article-body ol li { counter-increment: ol-counter; padding-left: 36px; position: relative; font-size: 0.95rem; color: #9ca3af; line-height: 1.65; }
.article-body ol li::before { content: counter(ol-counter); position: absolute; left: 0; top: 1px; width: 24px; height: 24px; background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.25); color: #16a34a; font-size: 0.72rem; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.article-body figure { margin: 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 28px 0; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); font-size: 0.9rem; }
.article-body thead { background: rgba(22,163,74,0.1); }
.article-body thead th { padding: 13px 18px; color: #16a34a; font-weight: 700; text-align: left; font-size: 0.82rem; border-bottom: 1px solid rgba(22,163,74,0.2); }
.article-body tbody tr { border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.15s; }
.article-body tbody tr:hover { background: rgba(22,163,74,0.03); }
.article-body tbody td { padding: 12px 18px; color: #9ca3af; }
.article-body tbody tr:last-child { border-bottom: none; }
.article-cta-box { display: flex; align-items: center; gap: 20px; background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.2); border-radius: 12px; padding: 24px 32px; margin: 0 52px; flex-wrap: wrap; }
.article-cta-icon { flex-shrink: 0; }
.article-cta-text { flex: 1; min-width: 200px; }
.article-cta-text strong { display: block; font-size: 1rem; font-weight: 700; color: #f9fafb; margin-bottom: 4px; }
.article-cta-text span { font-size: 0.83rem; color: #6b7280; }
.article-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 32px 52px; border-top: 1px solid rgba(255,255,255,0.05); }
.article-nav-item { display: flex; flex-direction: column; gap: 5px; padding: 16px 18px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; text-decoration: none; transition: all 0.2s; }
.article-nav-item:hover { border-color: rgba(22,163,74,0.25); }
.article-nav-label { font-size: 0.7rem; font-weight: 700; color: #4b5563; text-transform: uppercase; letter-spacing: 1px; }
.article-nav-title { font-size: 0.85rem; font-weight: 600; color: #d1d5db; line-height: 1.4; }
.article-nav-next { text-align: right; }
.article-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }
.sidebar-cta { background: #1a2233; border: 1px solid rgba(22,163,74,0.2); border-radius: 14px; padding: 28px; }
.sidebar-cta svg { margin-bottom: 16px; display: block; }
.sidebar-cta h4 { font-size: 1rem; font-weight: 800; color: #f9fafb; margin-bottom: 8px; }
.sidebar-cta p { font-size: 0.85rem; color: #6b7280; margin-bottom: 16px; line-height: 1.6; }
.sidebar-cta-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.sidebar-cta-list li { font-size: 0.82rem; color: #9ca3af; }
.sidebar-posts-box { background: #1a2233; border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 24px; }
.sidebar-posts-title { font-size: 0.75rem; font-weight: 700; color: #4b5563; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.sidebar-posts-list { list-style: none; padding: 0; margin: 0; }
.sidebar-posts-list li { border-bottom: 1px solid rgba(255,255,255,0.04); }
.sidebar-posts-list li:last-child { border-bottom: none; }
.sidebar-posts-list a { display: flex; align-items: flex-start; gap: 8px; padding: 11px 0; font-size: 0.82rem; color: #6b7280; font-weight: 500; line-height: 1.4; text-decoration: none; transition: color 0.2s; }
.sidebar-posts-list a:hover { color: #16a34a; }
.sidebar-posts-list svg { flex-shrink: 0; margin-top: 2px; color: #16a34a; opacity: 0.6; }
.sidebar-facts { background: #0d1117; border: 1px solid rgba(22,163,74,0.25); border-radius: 14px; padding: 24px; }
.sidebar-facts h4 { font-size: 0.72rem; font-weight: 700; color: #4b5563; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.sidebar-fact { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.sidebar-fact:last-child { border-bottom: none; }
.sidebar-fact-num { font-size: 1.4rem; font-weight: 800; color: #16a34a; line-height: 1; }
.sidebar-fact-num span { font-size: 0.85rem; opacity: 0.6; }
.sidebar-fact-label { font-size: 0.75rem; color: #6b7280; text-align: right; max-width: 120px; }
@media (max-width: 960px) { .article-layout { grid-template-columns: 1fr; } .article-sidebar { position: static; } .article-body { padding: 28px 24px; } .article-cta-box { margin: 0 24px; } .article-nav { padding: 24px; } }
@media (max-width: 600px) { .article-nav { grid-template-columns: 1fr; } .article-cta-box { flex-direction: column; align-items: flex-start; } }

/* =====================
   MOBILE OPTIMIZACIJA — vse strani
   ===================== */

/* Splošno */
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; }

/* ---- TABLET 768px ---- */
@media (max-width: 768px) {

  /* Navigacija */
  .site-nav { display: none !important; }
  .hamburger { display: flex !important; }
  .header-inner { height: 60px; }
  .site-logo { font-size: 1rem; }
  .logo-icon svg { width: 24px; height: 24px; }

  /* Hero */
  .hero { padding: 90px 0 60px; min-height: auto; }
  .hero h1 { font-size: 1.8rem; letter-spacing: -0.5px; }
  .hero-desc { font-size: 0.95rem; }
  .hero-badge { font-size: 0.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .stat-num { font-size: 1.6rem; }
  .trust-badges { gap: 10px; }

  /* Sekcije */
  section { padding: 56px 0; }
  .section-title { font-size: 1.6rem; }
  .section-header { margin-bottom: 36px; }
  .container { padding: 0 16px; }

  /* Services grid — 2 stolpca */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .service-card { padding: 20px; }
  .service-card h3 { font-size: 0.9rem; }
  .service-card p { font-size: 0.82rem; }

  /* Steps grid — 1 stolpec */
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Pricing grid — 1 stolpec */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Stats grid — 2 stolpca */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Cities grid — 2 stolpca */
  .cities-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .city-card { padding: 18px; }
  .city-card h3 { font-size: 0.88rem; }
  .city-card p { font-size: 0.78rem; }

  /* FAQ */
  .faq-q { font-size: 0.88rem; padding: 16px 18px; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-wrap { padding: 24px; }

  /* Urgency bar */
  .urgency-inner { flex-direction: column; text-align: center; gap: 8px; }

  /* Cross banners */
  .cross-banners-grid { grid-template-columns: 1fr !important; max-width: 100% !important; }
  .cross-banner-card { padding: 14px 16px; }
  .cross-banner-card-desc { font-size: 0.72rem; }

  /* Blog hero */
  .blog-hero { padding: 90px 0 40px; }
  .blog-hero-inner { flex-direction: column; gap: 24px; }
  .blog-hero-title { font-size: 1.7rem; }
  .blog-hero-stats { gap: 20px; }

  /* Blog featured */
  .blog-featured { grid-template-columns: 1fr; }
  .bf-right { display: none; }
  .bf-left { padding: 24px; }
  .bf-title { font-size: 1.2rem; }

  /* Blog grid — 1 stolpec */
  .blog-grid { grid-template-columns: 1fr; }

  /* Blog CTA */
  .blog-cta { padding: 20px; }
  .blog-cta-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .blog-cta-left { flex-direction: column; gap: 10px; }

  /* Article */
  .article-hero { padding: 90px 0 36px; }
  .article-title { font-size: 1.5rem; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .article-body { padding: 24px 20px; }
  .article-cta-box { margin: 0 20px; padding: 20px; flex-direction: column; align-items: flex-start; }
  .article-nav { padding: 20px; grid-template-columns: 1fr; }

  /* Footer */
  .footer-trust { gap: 12px; }
}

/* ---- MOBILE 480px ---- */
@media (max-width: 480px) {

  .hero { padding: 80px 0 48px; }
  .hero h1 { font-size: 1.5rem; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.4rem; }

  /* Services — 1 stolpec na majhnih zasloni */
  .services-grid { grid-template-columns: 1fr; }

  /* Stats — 2 stolpca */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-big { font-size: 1.8rem; }

  /* Cities — 1 stolpec */
  .cities-grid { grid-template-columns: 1fr; }

  /* Pricing badge */
  .price-badge { font-size: 0.65rem; }

  /* Blog */
  .blog-hero-title { font-size: 1.4rem; }
  .bhs-num { font-size: 1.6rem; }

  /* Cross banners */
  .cross-banner-logo svg { width: 36px !important; height: 36px !important; }

  /* Buttons */
  .btn { padding: 11px 20px; font-size: 0.88rem; }

  /* Section */
  section { padding: 44px 0; }
  .section-title { font-size: 1.4rem; }
  .container { padding: 0 14px; }

  /* Header */
  .site-logo .logo-text { font-size: 0.9rem; }

  /* Footer */
  .footer-logo { font-size: 1.1rem; }
  .footer-trust { flex-direction: column; align-items: center; gap: 8px; }
}

/* ---- MOBILE 360px (mali zasloni) ---- */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.3rem; }
  .hero-badge { font-size: 0.7rem; padding: 6px 12px; }
  .btn { padding: 10px 16px; font-size: 0.85rem; }
  .section-title { font-size: 1.25rem; }
  .article-title { font-size: 1.2rem; }
}

/* === MOBILE NAV — svetlo ozadje === */
.mobile-nav {
  display: none;
  background: #ffffff;
  border-top: 3px solid #16a34a;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; padding: 8px 0 16px; margin: 0; }
.mobile-nav li { border-bottom: 1px solid #f3f4f6; }
.mobile-nav li:last-child { border-bottom: none; }
.mobile-nav a {
  display: block;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover { background: #f9fafb; color: #16a34a; }
.mobile-nav .mobile-nav-cta {
  background: #16a34a;
  color: #fff !important;
  margin: 12px 16px 4px;
  border-radius: 8px;
  text-align: center;
  padding: 13px 24px;
}
.mobile-nav .mobile-nav-cta:hover { background: #15803d !important; color: #fff !important; }

/* Hamburger animacija */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Header position:relative za mobile nav */
.site-header { position: fixed; }

/* === FOOTER mobile centriranje + tekst fix === */
@media (max-width: 768px) {
  .site-footer { padding: 40px 0 32px; }
  .footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .footer-logo { justify-content: center; }
  .footer-desc { text-align: center; max-width: 300px; }
  .footer-email a { justify-content: center; }
  .footer-trust { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .footer-trust-badge { font-size: 0.75rem; }
  .footer-copy { text-align: center; }

  /* Siv tekst na temnem ozadju — popravi vidljivost */
  .footer-desc { color: #9ca3af; }
  .footer-email a { color: #9ca3af; }
  .footer-copy { color: rgba(156,163,175,0.7); }
  
  /* Trust badges v footerju */
  .footer-trust-badge { color: #9ca3af; }

  /* Cross banners tekst */
  .cross-banner-card-desc { color: #9ca3af !important; }
}

/* === FIX: nav poravnava po dodanem O nas === */
.site-nav ul { gap: 20px !important; }
.site-nav a { font-size: 0.83rem !important; }


/* === PAGE TEMPLATE === */
.page-hero { background: #111827; padding: 100px 0 48px; }
.page-hero-inner { max-width: 800px; }
.page-back { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: #6b7280; margin-bottom: 24px; text-decoration: none; transition: color 0.2s; }
.page-back:hover { color: #16a34a; }
.page-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: #f9fafb; letter-spacing: -0.5px; }
.page-content-section { background: #f3f4f6; padding: 48px 0 80px; }
.page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; }
.page-body { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; overflow: hidden; }
.page-content { padding: 44px 48px; }
.page-content h1 { display: none; }
.page-content h2 { font-size: 1.3rem; font-weight: 800; color: #111827; margin: 36px 0 12px; padding-bottom: 10px; border-bottom: 2px solid #f3f4f6; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 1.05rem; font-weight: 700; color: #1f2937; margin: 20px 0 8px; }
.page-content p { font-size: 0.97rem; color: #374151; line-height: 1.8; margin-bottom: 14px; }
.page-content strong { color: #111827; font-weight: 700; }
.page-content a { color: #16a34a; font-weight: 600; text-decoration: underline; }
.page-content ul { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
.page-content ul li { font-size: 0.95rem; color: #374151; padding-left: 20px; position: relative; }
.page-content ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; background: #16a34a; border-radius: 50%; }
.page-cta-box { display: flex; align-items: center; gap: 20px; background: #f9fafb; border-left: 4px solid #16a34a; border-radius: 0 0 12px 12px; padding: 24px 48px; flex-wrap: wrap; }
.page-cta-box strong { display: block; font-size: 1rem; font-weight: 700; color: #111827; }
.page-cta-box span { font-size: 0.83rem; color: #6b7280; }
.page-sidebar { position: sticky; top: 88px; }
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
  .page-content { padding: 28px 24px; }
  .page-cta-box { padding: 20px 24px; flex-direction: column; align-items: flex-start; }
}
