/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #1A1A1A;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
a { text-decoration: none; color: inherit; }

/* ── Tokens ── */
:root {
  --blue:    #0A6EBD;
  --blue-dk: #0859a0;
  --navy:    #0A2540;
  --sky:     #E8F4FB;
  --mint:    #2BB8A3;
  --white:   #FFFFFF;
  --ink:     #1A1A1A;
  --graphite:#4A5568;
  --mist:    #F5F7FA;
  --line:    #E2E8F0;
  --sage:    #7C9E8A;
  --ff-d:    'Fraunces', Georgia, serif;
  --ff-b:    'DM Sans', system-ui, sans-serif;
  --sh-sm:   0 1px 3px rgba(10,37,64,.08), 0 1px 2px rgba(10,37,64,.06);
  --sh-md:   0 4px 12px rgba(10,37,64,.10), 0 2px 4px rgba(10,37,64,.06);
  --sh-lg:   0 12px 32px rgba(10,37,64,.12), 0 4px 8px rgba(10,37,64,.06);
  --max:     1120px;
  --px:      clamp(20px, 4vw, 48px);
}

/* ── Layout helpers ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }
.eyebrow {
  font-family: var(--ff-b); font-weight: 600; font-size: 11px;
  letter-spacing: .10em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 12px; display: block;
}
.eyebrow--inv { color: var(--mint); }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ────────────────────────────────────────
   NAV
──────────────────────────────────────── */
#nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
#nav.scrolled { box-shadow: var(--sh-md); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo { height: auto; width: 200px; }
.nav-links {
  display: flex; align-items: center; gap: 20px; list-style: none;
}
.nav-links a {
  font-family: var(--ff-b); font-weight: 600; font-size: 13px;
  color: var(--graphite); transition: color .15s; white-space: nowrap;
}
.nav-links a:hover { color: var(--blue); }
.btn-nav {
  background: var(--blue); color: #fff;
  font-weight: 600; font-size: 14px;
  padding: 9px 22px; border-radius: 6px; border: none;
  transition: background .15s, transform .12s;
}
.btn-nav:hover { background: var(--blue-dk); }
.btn-nav:active { transform: scale(.98); }
.nav-hamburger { display: none; background: none; border: none; padding: 4px; }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); margin: 5px 0; border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: #fff; border-top: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button {
  display: block; padding: 15px 24px;
  font-weight: 600; font-size: 15px; color: var(--graphite);
  border-bottom: 1px solid var(--line);
  background: none; border-left: none; border-right: none; text-align: left;
  cursor: pointer; width: 100%;
}
.mobile-menu .btn-nav-m {
  background: var(--blue); color: #fff; border: none; margin: 16px 20px 20px;
  border-radius: 6px; text-align: center;
}

/* ────────────────────────────────────────
   HERO
──────────────────────────────────────── */
#hero {
  background: var(--navy);
  padding: 96px var(--px) 104px;
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,110,189,.18) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute; bottom: -60px; left: 20%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,184,163,.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  font-family: var(--ff-b); font-weight: 600; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 20px; display: block;
}
.hero-h1 {
  font-family: var(--ff-d); font-weight: 700;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.08; letter-spacing: -.025em;
  color: #fff; font-optical-sizing: auto;
  margin-bottom: 22px;
}
.hero-h1 em { font-style: italic; color: rgba(255,255,255,.65); }
.hero-body {
  font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,.62); margin-bottom: 40px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue); color: #fff;
  font-weight: 600; font-size: 15px;
  padding: 14px 30px; border-radius: 6px; border: none;
  transition: background .15s, transform .12s; display: inline-block;
}
.btn-primary:hover { background: var(--blue-dk); }
.btn-primary:active { transform: scale(.98); }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,.8);
  font-family: var(--ff-b); font-weight: 600; font-size: 15px;
  padding: 13px 28px; border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,.22);
  transition: border-color .15s, color .15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.45); color: #fff; }

/* Hero right */
.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 28px;
}
.hero-small-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-sc {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px; padding: 18px 16px;
}
.hero-sc-num {
  font-family: var(--ff-d); font-weight: 700; font-size: 28px;
  color: #fff; font-optical-sizing: auto; line-height: 1;
}
.hero-sc-label { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 6px; font-weight: 500; }

/* ────────────────────────────────────────
   STORITVE
──────────────────────────────────────── */
#storitve { background: #fff; padding: 96px var(--px); position: relative; }
.section-header { margin-bottom: 56px; }
.section-h2 {
  font-family: var(--ff-d); font-weight: 700;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.15; letter-spacing: -.01em;
  color: var(--ink); font-optical-sizing: auto;
  margin-bottom: 14px;
}
.section-body {
  font-size: 17px; line-height: 1.75; color: var(--graphite); max-width: 520px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff; border-radius: 12px;
  border: 1px solid var(--line);
  padding: 32px 28px;
  box-shadow: var(--sh-sm);
  transition: box-shadow .2s, transform .2s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); opacity: 0;
  transition: opacity .2s;
}
.service-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: var(--ff-d); font-weight: 700; font-size: 40px;
  color: var(--sky); line-height: 1; font-optical-sizing: auto;
  margin-bottom: 16px; user-select: none;
}
.service-title {
  font-family: var(--ff-d); font-weight: 700; font-size: 20px;
  color: var(--ink); font-optical-sizing: auto;
  margin-bottom: 10px; line-height: 1.25;
}
.service-desc { font-size: 14px; line-height: 1.72; color: var(--graphite); }
.service-link {
  display: inline-block; margin-top: 18px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  letter-spacing: .01em;
}
.service-link:hover { color: var(--blue-dk); }

/* ────────────────────────────────────────
   ZAKAJ DESTO
──────────────────────────────────────── */
#zakaj { background: var(--mist); padding: 96px var(--px); position: relative; }
.zakaj-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px 80px; align-items: start;
}
.zakaj-intro { grid-column: 1 / -1; }
.zakaj-item { display: flex; gap: 24px; align-items: flex-start; }
.zakaj-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--sky); border: 1px solid #c8dff0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.zakaj-icon svg { stroke: var(--blue); }
.zakaj-title {
  font-family: var(--ff-b); font-weight: 600; font-size: 17px;
  color: var(--ink); margin-bottom: 8px; line-height: 1.3;
}
.zakaj-text { font-size: 14px; line-height: 1.75; color: var(--graphite); }

/* ────────────────────────────────────────
   PROCES
──────────────────────────────────────── */
#proces { background: #fff; padding: 96px var(--px); }
.proces-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; position: relative; margin-top: 56px;
}
.proces-steps::before {
  content: '';
  position: absolute; top: 32px; left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  height: 1px; background: var(--line);
}
.proces-step { text-align: center; padding: 0 24px; position: relative; }
.step-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.step-num {
  font-family: var(--ff-d); font-weight: 700; font-size: 22px;
  color: #fff; font-optical-sizing: auto;
}
.step-title {
  font-family: var(--ff-d); font-weight: 700; font-size: 20px;
  color: var(--ink); margin-bottom: 10px; font-optical-sizing: auto;
}
.step-desc { font-size: 14px; line-height: 1.75; color: var(--graphite); }
.step-badge {
  display: inline-block; margin-top: 14px;
  background: var(--sky); color: var(--blue);
  font-size: 11px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
}

/* ────────────────────────────────────────
   ŠTEVILKE
──────────────────────────────────────── */
#stevilke { background: var(--navy); padding: 96px var(--px); position: relative; overflow: hidden; }
.stevilke-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stevilke-item {
  text-align: center; padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stevilke-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-d); font-weight: 700;
  font-size: clamp(42px, 5vw, 60px);
  color: #fff; line-height: 1; font-optical-sizing: auto;
  margin-bottom: 10px;
}
.stat-num span { color: var(--mint); }
.stat-label {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.5);
  letter-spacing: .02em; line-height: 1.5;
  max-width: 120px; margin: 0 auto;
}

/* ────────────────────────────────────────
   KONTAKT
──────────────────────────────────────── */
#kontakt { background: var(--sky); padding: 96px var(--px); }
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.form-wrap {
  background: #fff; border-radius: 16px;
  padding: 40px; box-shadow: var(--sh-lg);
  border: 1px solid var(--line);
}
.form-title {
  font-family: var(--ff-d); font-weight: 700; font-size: 26px;
  color: var(--ink); font-optical-sizing: auto; margin-bottom: 8px;
}
.form-subtitle { font-size: 14px; color: var(--graphite); margin-bottom: 28px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--graphite); letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--line); border-radius: 6px;
  font-family: var(--ff-b); font-size: 14px; color: var(--ink);
  background: #fff; outline: none;
  transition: border-color .15s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.service-picker { display: flex; flex-wrap: wrap; gap: 8px; }
.sp-btn {
  padding: 8px 16px; border-radius: 6px; font-family: var(--ff-b);
  font-size: 13px; font-weight: 500; color: var(--graphite);
  background: #fff; border: 1.5px solid var(--line);
  cursor: pointer; transition: border-color .15s, background .15s, color .15s;
}
.sp-btn:hover { border-color: var(--blue); color: var(--blue); }
.sp-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn-submit {
  width: 100%; background: var(--blue); color: #fff;
  font-family: var(--ff-b); font-weight: 600; font-size: 15px;
  padding: 14px; border-radius: 6px; border: none;
  margin-top: 6px; transition: background .15s, transform .12s;
}
.btn-submit:hover { background: var(--blue-dk); }
.btn-submit:active { transform: scale(.99); }
.form-note { font-size: 12px; color: var(--graphite); margin-top: 12px; text-align: center; }

/* Contact info side */
.kontakt-info { padding-top: 8px; }
.ki-title {
  font-family: var(--ff-d); font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15; letter-spacing: -.01em;
  color: var(--ink); font-optical-sizing: auto;
  margin-bottom: 16px;
}
.ki-body { font-size: 16px; line-height: 1.75; color: var(--graphite); margin-bottom: 40px; }
.ki-items { display: flex; flex-direction: column; gap: 24px; }
.ki-item { display: flex; gap: 16px; align-items: flex-start; }
.ki-dot {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(10,110,189,.1); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ki-dot svg { stroke: var(--blue); }
.ki-label { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--graphite); margin-bottom: 3px; }
.ki-value { font-size: 15px; color: var(--ink); font-weight: 500; line-height: 1.5; }

/* Success message */
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(43,184,163,.12); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 {
  font-family: var(--ff-d); font-size: 22px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px; font-optical-sizing: auto;
}
.form-success p { font-size: 14px; color: var(--graphite); line-height: 1.7; }

/* ────────────────────────────────────────
   FOOTER
──────────────────────────────────────── */
#footer { background: var(--navy); padding: 56px var(--px) 32px; }
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-logo { margin-bottom: 12px; width: 200px; height: auto; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; }
.footer-col-title {
  font-size: 11px; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a {
  font-size: 14px; color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer-col-links a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; background: none; border: none; text-align: left;
  font-family: var(--ff-b); font-size: 15px; font-weight: 600; color: var(--ink);
  cursor: pointer; gap: 12px;
}
.faq-q svg { flex-shrink: 0; transition: transform .2s; }
.faq-q.open svg { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 0 18px; font-size: 14px; line-height: 1.75; color: var(--graphite); }
.faq-a.open { display: block; }

/* ────────────────────────────────────────
   DECORATIVE CLEANING FIGURES
──────────────────────────────────────── */
.deco-lik {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  width: auto;
  display: block;
  /* black → navy #0A2540 */
  filter: brightness(0) invert(1) brightness(0.22) sepia(1) hue-rotate(170deg) saturate(8) brightness(0.48);
}
/* on dark navy sections → white silhouette */
.deco-lik--white {
  filter: brightness(0) invert(1);
}

/* ────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────── */
@media (max-width: 900px) {
  .deco-lik { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .zakaj-grid { grid-template-columns: 1fr; gap: 32px; }
  .zakaj-intro { grid-column: 1; }
  .proces-steps { grid-template-columns: 1fr; gap: 32px; }
  .proces-steps::before { display: none; }
  .stevilke-grid { grid-template-columns: repeat(2, 1fr); }
  .stevilke-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stevilke-item:last-child { border-bottom: none; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .stevilke-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 34px; }
}
