/* ============================================================
   BLPlast — style.css
   Zajednički stilovi za sve stranice
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 16px;
  color: #1a2332;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Pozadinska tekstura (stranice sa body::before pristupom) */
body.textured::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('../media/USLUGE.webp');
  background-size: repeat;
  background-attachment: fixed;
  opacity: 0.34;
  z-index: 0;
  pointer-events: none;
}
body.textured .nav,
body.textured .page-hero,
body.textured section,
body.textured .trust-strip,
body.textured .kalk-section,
body.textured .rezultat-section,
body.textured footer,
body.textured .mob-fixed-cta { position: relative; z-index: 1; }

/* Index stranica ima drugačiji background */
body.bg-pattern {
  background-image: url('../media/USLUGE.webp');
  background-size: repeat;
  background-attachment: fixed;
  background-position: center;
}

/* ── CSS VARIABLES ── */
:root {
  --blue:       #185FA5;
  --blue-dark:  #0d3f72;
  --blue-light: #e8f1fb;
  --blue-mid:   #2e7fd4;
  --white:      #ffffff;
  --off-white:  #f5f8fc;
  --navy:       #0d1f35;
  --text:       #1a2332;
  --muted:      #5a6a7e;
  --light:      #8fa0b4;
  --border:     #dce6f0;
  --r:          10px;
  --r-lg:       18px;
  --r-xl:       26px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── EYEBROW ── */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.white { color: rgba(255,255,255,0.55); }
.eyebrow.white::before { background: rgba(255,255,255,0.4); }

/* ── NAV — osnovna varijanta (scrolled from start, za unutrašnje stranice) ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(13,31,53,0.07);
  animation: fadeIn 0.5s ease both;
}

/* NAV — transparent varijanta (za index.html, postaje bijela na scroll) */
.nav.nav-transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
}
.nav.nav-transparent.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(13,31,53,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--blue);
  border-radius: 9px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 8px;
  transition: background 0.4s ease;
}
.logo-mark span { background: white; border-radius: 2px; display: block; transition: background 0.4s ease; }

/* Transparent nav logo (index) */
.nav.nav-transparent .logo-mark { background: white; }
.nav.nav-transparent .logo-mark span { background: var(--blue); }
.nav.nav-transparent.scrolled .logo-mark { background: var(--blue); }
.nav.nav-transparent.scrolled .logo-mark span { background: white; }

.logo-text {
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  transition: color 0.4s ease;
}
.logo-text em { color: var(--blue); font-style: normal; transition: color 0.4s ease; }

.nav.nav-transparent .logo-text { color: white; }
.nav.nav-transparent .logo-text em { color: rgba(255,255,255,0.7); }
.nav.nav-transparent.scrolled .logo-text { color: var(--navy); }
.nav.nav-transparent.scrolled .logo-text em { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }

.nav.nav-transparent .nav-links a { color: rgba(255,255,255,0.75); }
.nav.nav-transparent .nav-links a:hover { color: white; }
.nav.nav-transparent.scrolled .nav-links a { color: var(--muted); }
.nav.nav-transparent.scrolled .nav-links a:hover { color: var(--blue); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  border: 1.5px solid var(--blue);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--r);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}
.nav-cta:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }
.nav-cta svg { width: 16px; height: 16px; stroke: white; stroke-width: 2.5; fill: none; flex-shrink: 0; }

.nav.nav-transparent .nav-cta {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.nav.nav-transparent .nav-cta:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.6); }
.nav.nav-transparent.scrolled .nav-cta { background: var(--blue); border-color: var(--blue); backdrop-filter: none; }
.nav.nav-transparent.scrolled .nav-cta:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: background 0.4s; }
.nav.nav-transparent .hamburger span { background: white; }
.nav.nav-transparent.scrolled .hamburger span { background: var(--navy); }

.mobile-menu {
  display: none; flex-direction: column;
  padding: 16px 20px 24px; border-top: 1px solid var(--border); gap: 4px;
  background: white;
}
.mobile-menu a {
  font-size: 15px; font-weight: 600; color: var(--text);
  text-decoration: none; padding: 11px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu .mob-cta {
  margin-top: 12px; background: var(--blue); color: white;
  text-align: center; padding: 14px; border-radius: var(--r); border: none;
}
.mobile-menu.open { display: flex; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ── PAGE HERO (unutrašnje stranice) ── */
.page-hero {
  padding: 110px 0 110px;
  background: var(--navy) url('../media/CTAbg.webp') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,16,30,0.68);
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: white;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}
.page-hero-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease 0.1s both;
}
.page-hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 20px;
}
.page-hero-eyebrow::before, .page-hero-eyebrow::after {
  content: ''; display: inline-block;
  width: 28px; height: 1.5px;
  background: rgba(255,255,255,0.3);
}
.page-hero h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800; color: white;
  letter-spacing: -0.035em; line-height: 1.08;
}
.page-hero h1 em { color: #7db8e8; font-style: normal; }

/* ── HERO (index.html) ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  background-image: url("../media/heroimage1.webp");
  background-size: cover;
  background-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,16,30,0.82) 0%, rgba(8,16,30,0.45) 60%, rgba(8,16,30,0.18) 100%),
    linear-gradient(to top, rgba(8,16,30,0.55) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  padding-bottom: 40px;
  max-width: 760px;
  animation: fadeUp 0.9s ease 0.2s both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: #5bd4a0;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-h1 {
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: white;
  margin-bottom: 24px;
}
.hero-h1 em { color: #7db8e8; font-style: normal; }
.hero-sub {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 560px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}
.hero-trust-item svg { width: 15px; height: 15px; stroke: #5bd4a0; stroke-width: 2.5; fill: none; flex-shrink: 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: var(--r);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 24px rgba(24,95,165,0.35);
  border: none;
  cursor: pointer;
  font-family: 'Host Grotesk', sans-serif;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(24,95,165,0.45); }
.btn-primary svg { width: 18px; height: 18px; stroke: white; stroke-width: 2.5; fill: none; flex-shrink: 0; }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: white; color: var(--navy);
  font-size: 14px; font-weight: 600;
  padding: 13px 20px; border-radius: var(--r); text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  letter-spacing: -0.01em; cursor: pointer;
  font-family: 'Host Grotesk', sans-serif;
}
.btn-secondary:hover { border-color: var(--blue); background: var(--blue-light); transform: translateY(-1px); }
.btn-secondary svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.5; fill: none; }

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 26px;
  border-radius: var(--r);
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
  backdrop-filter: blur(6px);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
.btn-ghost-white svg { width: 18px; height: 18px; stroke: white; stroke-width: 2.5; fill: none; flex-shrink: 0; }

.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--navy);
  font-size: 15px; font-weight: 700; padding: 16px 30px;
  border-radius: var(--r); text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: -0.01em;
}
.btn-white:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.18); }
.btn-white svg { width: 18px; height: 18px; stroke: var(--navy); stroke-width: 2.5; fill: none; }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: white;
  font-size: 15px; font-weight: 600; padding: 15px 26px;
  border-radius: var(--r); text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.28);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.btn-outline-white svg { width: 18px; height: 18px; stroke: white; stroke-width: 2.5; fill: none; }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--navy); }
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-stat {
  padding: 36px 48px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.trust-stat:last-child { border-right: none; }
.trust-num {
  font-size: 38px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  line-height: 1;
}
.trust-num span { color: var(--blue-mid); }
.trust-label { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 300; }

/* ── SECTION COMMONS ── */
.section { padding: 120px 0; }
.section-alt { background: rgba(245, 248, 252, 0.93); }
.section-dark { background: var(--navy); }

.sec-title {
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 16px;
}
.sec-title em { color: var(--blue); font-style: normal; }
.sec-title.white { color: white; }
.sec-title.white em { color: #7db8e8; }
.sec-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
  font-weight: 300;
}
.sec-lead.center { text-align: center; margin: 0 auto; }
.sec-header { margin-bottom: 64px; }
.sec-header.center { text-align: center; }

/* ── SERVICES ── */
#usluge {
  position: relative;
  background-image: url('../media/USLUGE.webp');
  background-size: contain;
  background-position: center;
}
#usluge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.61);
  z-index: 0;
}
#usluge .container { position: relative; z-index: 1; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.svc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(13,31,53,0.12);
  border-color: var(--blue);
}
.svc-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--blue-light);
  overflow: hidden;
  position: relative;
}
.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-img img { transform: scale(1.04); }
.svc-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #dce9f5;
}
.svc-img-placeholder svg { width: 40px; height: 40px; stroke: #8aadcd; stroke-width: 1.5; fill: none; }
.svc-img-placeholder span { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #8aadcd; }
.svc-body { padding: 32px 36px 36px; }
.svc-name {
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.svc-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 20px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: gap 0.2s;
}
.svc-link:hover { gap: 10px; }
.svc-link svg { width: 15px; height: 15px; stroke: var(--blue); stroke-width: 2.5; fill: none; }

/* ── WHY CARDS ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(24,95,165,0.10);
}
.why-icon-wrap { display: flex; align-items: center; gap: 16px; }
.why-icon {
  width: 64px; height: 64px;
  background: var(--blue);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.why-card:hover .why-icon { background: var(--blue-dark); }
.why-icon svg { width: 28px; height: 28px; stroke: white; stroke-width: 1.8; fill: none; }
.why-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--blue-light);
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
  transition: color 0.3s;
}
.why-card:hover .why-num { color: #d0e5f7; }
.why-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.why-text { font-size: 15px; line-height: 1.75; color: var(--muted); font-weight: 300; }

/* ── PROCESS ── */
#proces {
  position: relative;
  background-image: url('../media/KORACI.webp');
  background-size: cover;
  background-position: center;
}
#proces::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 249, 253, 0.93);
  z-index: 0;
}
#proces .container { position: relative; z-index: 1; }

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
}
.process-row::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 1px;
  background: var(--border);
}
.proc-step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.proc-num {
  width: 68px; height: 68px;
  border: 1.5px solid var(--border);
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  color: var(--light);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
  position: relative; z-index: 2;
}
.proc-step:hover .proc-num { border-color: var(--blue); background: var(--blue); color: white; }
.proc-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.02em; }
.proc-desc { font-size: 13px; line-height: 1.7; color: var(--muted); font-weight: 300; }

/* ── TESTIMONIALS ── */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.25s, transform 0.25s;
}
.tcard:hover { border-color: var(--blue); transform: translateY(-4px); }
.stars { display: flex; gap: 3px; }
.stars svg { width: 16px; height: 16px; fill: #f59e0b; stroke: none; }
.tquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  flex: 1;
  font-style: italic;
  font-weight: 300;
}
.tquote::before { content: '\201C'; color: var(--blue); font-size: 20px; font-style: normal; font-weight: 800; }
.tauthor { font-size: 14px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.tplace { font-size: 12px; color: var(--light); margin-top: 3px; }

/* ── CTA SECTION ── */
.cta-wrap {
  background-image: url('../media/CTAbg.webp');
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-wrap::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: rgba(0,23,72,0.80);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-title {
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  line-height: 1.08;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.48);
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.65;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #07172a; padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ft-logo { font-size: 22px; font-weight: 800; color: white; letter-spacing: -0.03em; margin-bottom: 14px; }
.ft-logo em { color: var(--blue-mid); font-style: normal; }
.ft-tagline { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.7; margin-bottom: 28px; font-weight: 300; }
.ft-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.social-btn:hover { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.05); }
.social-btn svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.45); stroke-width: 2; fill: none; transition: stroke 0.2s; }
.social-btn:hover svg { stroke: white; }
.ft-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 22px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ft-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.ft-links a:hover { color: white; }
.ft-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; }
.ft-contact-item svg { width: 15px; height: 15px; stroke: var(--blue-mid); stroke-width: 2; fill: none; flex-shrink: 0; margin-top: 1px; }
.ft-contact-item span { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.55; font-weight: 300; }
.ft-phone-link { font-size: 13px; color: white; text-decoration: none; font-weight: 300; transition: color 0.2s; }
.ft-phone-link:hover { color: rgba(255,255,255,0.75); }
.ft-bottom { padding: 22px 0; display: flex; justify-content: space-between; align-items: center; }
.ft-copy { font-size: 12px; color: rgba(255,255,255,0.45); }
.ft-bottom-links { display: flex; gap: 22px; }
.ft-bottom-links { font-size: 12px; color: rgba(255,255,255,0.45); }
.ft-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.ft-bottom-links a:hover { color: rgba(255,255,255,0.75); }
.ft-bottom-links a[href*="vihormedia"] { color: var(--blue-mid); }
.ft-bottom-links a[href*="vihormedia"]:hover { color: #7db8e8; }

/* ── MOBILE FIXED CTA ── */
.mob-fixed-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  padding: 0 16px 20px;
  background: linear-gradient(to top, rgba(255,255,255,1) 60%, rgba(255,255,255,0));
  pointer-events: none;
  flex-direction: column;
  gap: 8px;
}
.mob-fixed-cta > * { pointer-events: all; }
.mob-btns-row { display: flex; gap: 10px; }
.mob-btn-call {
  flex: 1.6; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--blue); color: white; font-size: 14px; font-weight: 700;
  padding: 14px 0; border-radius: var(--r); text-decoration: none;
  box-shadow: 0 4px 20px rgba(24,95,165,.35); letter-spacing: -.01em;
}
.mob-btn-call svg { width: 17px; height: 17px; stroke: white; stroke-width: 2.5; fill: none; }
.mob-btn-kontakt {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  background: white; color: var(--navy); font-size: 14px; font-weight: 600;
  padding: 14px 0; border-radius: var(--r); text-decoration: none;
  border: 1.5px solid var(--border); letter-spacing: -.01em;
}
.mob-btn-kontakt svg { width: 17px; height: 17px; stroke: var(--navy); stroke-width: 2.5; fill: none; }
.mob-btn-kalk {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--blue-light); color: var(--blue); font-size: 13px; font-weight: 700;
  padding: 11px 0; border-radius: var(--r); text-decoration: none;
  border: 1.5px solid rgba(24,95,165,0.15); letter-spacing: -.01em;
}
.mob-btn-kalk svg { width: 15px; height: 15px; stroke: var(--blue); stroke-width: 2.5; fill: none; }

/* ── MINI KALKULATOR (index.html modal) ── */
.calc-row { margin-bottom: 20px; }
.calc-label { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.calc-select, .calc-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'Host Grotesk', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: white;
  appearance: none;
  outline: none;
  transition: border-color 0.2s;
}
.calc-select:focus, .calc-input:focus { border-color: var(--blue); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.calc-result {
  background: var(--blue-light);
  border-radius: var(--r);
  padding: 20px 24px;
  margin: 24px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calc-result-label { font-size: 13px; color: var(--blue); font-weight: 600; }
.calc-result-price { font-size: 28px; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.calc-result-note { font-size: 11px; color: var(--blue); margin-top: 2px; }
.calc-cta {
  width: 100%;
  background: var(--blue);
  color: white;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 15px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 0.2s;
  letter-spacing: -0.01em;
}
.calc-cta:hover { background: var(--blue-dark); }
.calc-cta svg { width: 18px; height: 18px; stroke: white; stroke-width: 2.5; fill: none; }

/* ── KALKULATOR stranica — specifični stilovi ── */
.kalk-section { padding: 80px 0 100px; }

.step-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light); margin-bottom: 10px; }
.step-title { font-size: clamp(22px, 2.5vw, 32px); font-weight: 800; color: var(--navy); letter-spacing: -0.03em; margin-bottom: 32px; line-height: 1.15; }
.step-title em { color: var(--blue); font-style: normal; }

.tip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 600px; margin: 0 auto; }
.tip-card {
  background: white; border: 2px solid var(--border); border-radius: var(--r-xl);
  padding: 36px 28px; text-align: center; cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.tip-card:hover { border-color: var(--blue-mid); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(24,95,165,0.10); }
.tip-card.selected { border-color: var(--blue); box-shadow: 0 8px 32px rgba(24,95,165,0.15); background: var(--blue-light); }
.tip-card svg { width: 56px; height: 56px; stroke: var(--muted); stroke-width: 1.4; fill: none; transition: stroke 0.2s; }
.tip-card.selected svg { stroke: var(--blue); }
.tip-card-name { font-size: 17px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.tip-card-sub { font-size: 12px; color: var(--muted); font-weight: 300; line-height: 1.5; }

.pvc-model-section { display: none; margin-top: 40px; }
.pvc-model-section.visible { display: block; animation: fadeUp 0.35s ease both; }
.pvc-model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 700px; margin: 0 auto; }
.pvc-model-card {
  background: white; border: 2px solid var(--border); border-radius: var(--r-xl);
  padding: 28px 24px; cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-align: left; display: flex; flex-direction: column; gap: 10px;
}
.pvc-model-card:hover { border-color: var(--blue-mid); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(24,95,165,0.10); }
.pvc-model-card.selected { border-color: var(--blue); box-shadow: 0 8px 32px rgba(24,95,165,0.15); background: var(--blue-light); }
.pvc-model-name { font-size: 16px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.pvc-model-desc { font-size: 12px; color: var(--muted); font-weight: 300; line-height: 1.6; }
.pvc-model-price { font-size: 15px; font-weight: 700; color: var(--blue); letter-spacing: -0.01em; margin-top: 4px; }

.vrsta-section { display: none; margin-top: 60px; }
.vrsta-section.visible { display: block; }
.vrsta-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.vrsta-col-title {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.vrsta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vrsta-card {
  background: white; border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 18px 14px; text-align: center; cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.vrsta-card:hover { border-color: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24,95,165,0.09); }
.vrsta-card.selected { border-color: var(--blue); background: var(--blue-light); box-shadow: 0 4px 20px rgba(24,95,165,0.12); }
.vrsta-card svg { width: 44px; height: 44px; stroke: var(--muted); stroke-width: 1.6; fill: none; transition: stroke 0.2s; }
.vrsta-card.selected svg { stroke: var(--blue); }
.vrsta-card-name { font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; line-height: 1.3; }

.konfig-section { display: none; margin-top: 60px; }
.konfig-section.visible { display: block; animation: fadeUp 0.4s ease both; }
.konfig-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }

.sketch-wrap {
  background: white; border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 32px; text-align: center;
  box-shadow: 0 8px 32px rgba(13,31,53,0.05);
}
.sketch-wrap svg { max-width: 100%; height: auto; max-height: 280px; }
.sketch-label { font-size: 11px; color: var(--light); font-weight: 300; margin-top: 16px; letter-spacing: 0.04em; }

.konfig-form { display: flex; flex-direction: column; gap: 20px; }
.konfig-field label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.dim-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dim-input-wrap { display: flex; gap: 8px; align-items: stretch; }
.konfig-input {
  flex: 1; padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: var(--r); font-family: 'Host Grotesk', sans-serif;
  font-size: 14px; color: var(--text); background: white; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 0;
}
.konfig-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(24,95,165,0.08); }
.konfig-select {
  padding: 13px 14px; border: 1.5px solid var(--border);
  border-radius: var(--r); font-family: 'Host Grotesk', sans-serif;
  font-size: 13px; color: var(--text); background: white; outline: none;
  transition: border-color 0.2s; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238fa0b4' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 32px;
}
.konfig-select:focus { border-color: var(--blue); }

.kolicina-wrap { display: flex; align-items: center; gap: 12px; }
.qty-btn {
  width: 40px; height: 40px; border: 1.5px solid var(--border); border-radius: var(--r);
  background: white; font-size: 20px; color: var(--navy); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s; flex-shrink: 0; line-height: 1;
}
.qty-btn:hover { border-color: var(--blue); background: var(--blue-light); }
.qty-input {
  width: 64px; text-align: center; padding: 10px 8px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: 'Host Grotesk', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--navy); outline: none; transition: border-color 0.2s;
}
.qty-input:focus { border-color: var(--blue); }

.extras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.extra-card {
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 16px 18px; cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.extra-card:hover { border-color: var(--blue-mid); }
.extra-card.checked { border-color: var(--blue); background: var(--blue-light); }
.extra-card input { display: none; }
.extra-check {
  width: 20px; height: 20px; border: 2px solid var(--border); border-radius: 5px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  background: white;
}
.extra-card.checked .extra-check { border-color: var(--blue); background: var(--blue); }
.extra-check svg { width: 11px; height: 11px; stroke: white; stroke-width: 3; fill: none; display: none; }
.extra-card.checked .extra-check svg { display: block; }
.extra-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.extra-price { font-size: 11px; color: var(--muted); font-weight: 300; margin-top: 1px; }

.konfig-btns { display: flex; gap: 12px; margin-top: 8px; }
.btn-reset {
  flex: 1; padding: 14px; border: 1.5px solid var(--border); border-radius: var(--r);
  background: white; font-family: 'Host Grotesk', sans-serif; font-size: 14px;
  font-weight: 600; color: var(--muted); cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-reset:hover { border-color: var(--muted); color: var(--text); }
.btn-reset svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 2; fill: none; }
.btn-calc {
  flex: 2; padding: 14px; border: none; border-radius: var(--r);
  background: var(--blue); font-family: 'Host Grotesk', sans-serif; font-size: 15px;
  font-weight: 700; color: white; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-calc:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-calc svg { width: 17px; height: 17px; stroke: white; stroke-width: 2.5; fill: none; }

.rezultat-section { display: none; padding: 0 0 100px; }
.rezultat-section.visible { display: block; animation: fadeUp 0.5s ease both; }

.rezultat-wrap {
  background: white; border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: 0 16px 56px rgba(13,31,53,0.08);
  max-width: 760px; margin: 0 auto;
}
.rezultat-header {
  background: var(--navy); padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between;
}
.rezultat-header-title { font-size: 18px; font-weight: 800; color: white; letter-spacing: -0.025em; }
.rezultat-header-sub { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 300; margin-top: 3px; }
.rezultat-badge {
  background: rgba(255,255,255,0.1); border-radius: var(--r);
  padding: 8px 16px; text-align: right;
}
.rezultat-badge-label { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; }
.rezultat-badge-val { font-size: 26px; font-weight: 800; color: white; letter-spacing: -0.03em; }
.rezultat-badge-val span { color: #7db8e8; }

.rezultat-table { width: 100%; border-collapse: collapse; }
.rezultat-table tr { border-bottom: 1px solid var(--border); }
.rezultat-table tr:last-child { border-bottom: none; }
.rezultat-table td { padding: 16px 36px; font-size: 14px; }
.rezultat-table td:first-child { color: var(--muted); font-weight: 300; width: 50%; }
.rezultat-table td:last-child { color: var(--navy); font-weight: 600; text-align: right; }
.rezultat-table .subtotal td { background: var(--blue-light); }
.rezultat-table .subtotal td:last-child { color: var(--blue); font-size: 15px; }
.rezultat-table .total-row td { background: var(--navy); color: white; font-weight: 700; }
.rezultat-table .total-row td:last-child { color: #7db8e8; font-size: 18px; }

.rezultat-footer { padding: 24px 36px; background: rgba(245,248,252,0.8); }
.besplatno-badge {
  display: flex; align-items: center; gap: 12px;
  background: white; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 16px 20px; margin-bottom: 14px;
}
.besplatno-badge svg { width: 20px; height: 20px; stroke: var(--blue); stroke-width: 2; fill: none; flex-shrink: 0; }
.besplatno-badge-text { font-size: 13px; color: var(--text); font-weight: 500; }
.besplatno-badge-text span { color: var(--muted); font-weight: 300; display: block; font-size: 12px; margin-top: 2px; }
.disclaimer { font-size: 12px; color: var(--light); line-height: 1.7; font-weight: 300; font-style: italic; margin-bottom: 20px; }

.rezultat-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── KONTAKT FORMA ── */
.form-row { margin-bottom: 16px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.req { color: var(--blue); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'Host Grotesk', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,95,165,0.08);
}
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute;
  right: 14px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238fa0b4' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  pointer-events: none;
}

.form-submit {
  width: 100%;
  background: var(--blue);
  color: white;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
  margin-top: 8px;
}
.form-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }
.form-submit svg { width: 17px; height: 17px; stroke: white; stroke-width: 2.5; fill: none; flex-shrink: 0; }
.form-submit.loading { opacity: 0.7; cursor: not-allowed; pointer-events: none; }

.form-note {
  font-size: 12px;
  color: var(--light);
  margin-top: 12px;
  line-height: 1.6;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 16px;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--blue);
}
.form-check-label { font-size: 13px; color: var(--muted); line-height: 1.55; font-weight: 300; }

.form-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 24px 0;
  color: var(--light); font-size: 12px; font-weight: 400;
}
.form-divider::before, .form-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

.direct-call {
  display: flex; align-items: center; gap: 14px;
  background: var(--blue-light); border: 1px solid rgba(24,95,165,0.15);
  border-radius: var(--r-lg); padding: 16px 20px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.direct-call:hover { background: #d9eaf8; border-color: rgba(24,95,165,0.25); }
.direct-call svg { width: 22px; height: 22px; stroke: var(--blue); stroke-width: 2; fill: none; flex-shrink: 0; }
.direct-call-label { font-size: 11px; color: var(--muted); font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; display: block; }
.direct-call-num { font-size: 17px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }

/* Form success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}
.form-success.show { display: flex; }
.success-icon {
  width: 72px; height: 72px;
  background: #e8f9f1;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.success-icon svg { width: 32px; height: 32px; stroke: #22c55e; stroke-width: 2.5; fill: none; }
.success-title { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.success-text { font-size: 15px; color: var(--muted); line-height: 1.65; font-weight: 300; max-width: 340px; }

/* Form error state */
.form-error-msg {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: 13px;
  color: #dc2626;
  margin-top: 12px;
}
.form-error-msg.show { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-row::before { display: none; }
  .tgrid { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-stat:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
.mob-fixed-cta { display: flex !important; }
  body { padding-bottom: 130px; }
  .konfig-grid { grid-template-columns: 1fr; }
  .vrsta-cols { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .hero-h1 { font-size: 36px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost-white { width: 100%; justify-content: center; }
  .hero-actions { display: none; }
  .process-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .calc-grid { grid-template-columns: 1fr; }
  .tip-grid { grid-template-columns: 1fr; max-width: 300px; }
  .vrsta-grid { grid-template-columns: 1fr 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
  .dim-row { grid-template-columns: 1fr; }
  .rezultat-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .rezultat-table td { padding: 14px 20px; }
  .rezultat-footer { padding: 20px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .pvc-model-grid { grid-template-columns: 1fr; }
}
