:root {
  --navy: #0f1c2e;
  --navy-mid: #162338;
  --navy-light: #1e3050;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --purple: #6d28d9;
  --purple-mid: #7c3aed;
  --purple-card: #4f3aa7;
  --accent: #a78bfa;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --text: #0f172a;
  --gradient-hero: linear-gradient(135deg, #0f1c2e 0%, #1a2d4a 50%, #162338 100%);
  --gradient-purple: linear-gradient(135deg, #4f3aa7 0%, #2563eb 100%);
  --gradient-blue: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; }

/* ── NAV ── */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px;
  height: 38px;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  flex: 1;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-links a.active {
  border-bottom: 2px solid var(--blue-light);
  border-radius: 6px 6px 0 0;
}
.nav-cta {
  background: var(--gradient-purple);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  border: none;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.9; background: var(--gradient-purple) !important; }

/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; }

/* ══════════════════════════════════════
   POČETNA
══════════════════════════════════════ */

/* Hero slider */
.hero {
  background: var(--gradient-hero);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(37,99,235,0.15) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(109,40,217,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero h1 span {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}
.btn-primary {
  background: var(--gradient-blue);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,99,235,0.4);
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,99,235,0.5); }
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.35); }

/* Slider */
.slider-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.slider {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.slide {
  display: none;
  background: var(--navy-light);
  padding: 2.5rem;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.slide.active { display: block; }
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 20%, rgba(37,99,235,0.12) 0%, transparent 70%);
}
.slide-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.slide-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.slide-mockup {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.mock-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  flex: 1;
  min-width: 180px;
}
.mock-card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.purple { background: var(--accent); }
.mock-dot.blue { background: var(--blue-light); }
.mock-dot.green { background: #34d399; }
.mock-card-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.mock-val { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--white); }
.mock-sub { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.25rem; }
.mock-list { list-style: none; }
.mock-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}
.mock-list li:last-child { border-bottom: none; }
.mock-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gradient-purple);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: white; font-weight: 700; flex-shrink: 0;
}
.mock-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
}
.tag-green { background: rgba(52,211,153,0.15); color: #34d399; }
.tag-yellow { background: rgba(251,191,36,0.15); color: #fbbf24; }
.tag-red { background: rgba(239,68,68,0.15); color: #f87171; }

.slider-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.slider-dot.active { background: var(--blue-light); width: 24px; border-radius: 4px; }

/* Section shared */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.section-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.section-lead {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
}

/* Features row */
.features-section { background: var(--gray-50); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 5rem;
  margin-top: 3.5rem;
}
.feature-item { display: flex; gap: 1.5rem; }
.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.fi-purple { background: rgba(109,40,217,0.1); }
.fi-blue { background: rgba(37,99,235,0.1); }
.fi-teal { background: rgba(20,184,166,0.1); }
.fi-indigo { background: rgba(99,102,241,0.1); }
.feature-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--navy); }
.feature-item p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.65; }

/* CTA section */
.cta-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(37,99,235,0.15) 0%, transparent 70%);
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Mini FAQ on home */
.faq-home { background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  gap: 1rem;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-chevron { transition: transform 0.3s; flex-shrink: 0; color: var(--gray-500); font-size: 0.8rem; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 1.5rem;
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.25rem; }

/* Contact mini */
.contact-home { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--gray-700); }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea { min-height: 130px; }
.contact-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info p { color: var(--gray-500); line-height: 1.7; margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(37,99,235,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.2rem; }
.contact-detail-text span { color: var(--gray-500); font-size: 0.9rem; }

/* ══════════════════════════════════════
   O PROGRAMU
══════════════════════════════════════ */
.about-hero {
  background: var(--gradient-hero);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(37,99,235,0.15) 0%, transparent 70%);
}
.about-hero-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.about-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.about-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; line-height: 1.7; }

.feature-row {
  padding: 5rem 2rem;
  position: relative;
}
.feature-row:nth-child(even) { background: var(--gray-50); }
.feature-row-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-row-inner.reverse { direction: rtl; }
.feature-row-inner.reverse > * { direction: ltr; }
.feature-row-content {}
.feature-row-content .section-tag { display: block; margin-bottom: 0.75rem; }
.feature-row-content h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 1rem; line-height: 1.2; }
.feature-row-content p { color: var(--gray-500); line-height: 1.7; margin-bottom: 1.5rem; }
.feature-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.feature-bullets li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gray-700);
  font-size: 0.92rem;
}
.feature-bullets li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(37,99,235,0.1);
  color: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-mock {
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.feature-mock-header {
  background: var(--navy);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.feature-mock-header span {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.feature-mock-body { padding: 1.5rem; }

.mock-table { width: 100%; border-collapse: collapse; }
.mock-table th {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.35);
  padding: 0 0 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mock-table td {
  padding: 0.75rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mock-table td:last-child { text-align: right; }

.about-cta { background: var(--navy); text-align: center; padding: 5rem 2rem; position: relative; overflow: hidden; }
.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(109,40,217,0.12) 0%, transparent 70%);
}
.about-cta-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.about-cta h2 { color: var(--white); margin-bottom: 1rem; }
.about-cta p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 1rem; }

/* ══════════════════════════════════════
   CIJENIK
══════════════════════════════════════ */
.pricing-hero {
  background: var(--gradient-hero);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(37,99,235,0.15) 0%, transparent 70%);
}
.pricing-hero-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.pricing-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.pricing-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; line-height: 1.7; }

.pricing-value { background: var(--gray-50); padding: 4rem 2rem; }
.pricing-value-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.value-pills {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.value-pill {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.value-pill span { font-size: 1rem; }

.pricing-plans { padding: 5rem 2rem; }
.pricing-plans-inner { max-width: 1100px; margin: 0 auto; }
.pricing-plans-inner .section-h2 { text-align: center; }
.pricing-plans-inner .section-lead { text-align: center; margin: 0 auto 3rem; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.plan-card {
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.standard {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.plan-card.popular {
  background: var(--navy);
  border: 1.5px solid rgba(59,130,246,0.3);
  box-shadow: 0 20px 60px rgba(37,99,235,0.2);
  transform: scale(1.03);
}
.plan-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gradient-blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.plan-card.standard .plan-name { color: var(--blue); }
.plan-card.popular .plan-name { color: var(--accent); }
.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.plan-card.standard .plan-price { color: var(--navy); }
.plan-card.popular .plan-price { color: var(--white); }
.plan-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.plan-price sub { font-size: 0.9rem; font-weight: 400; opacity: 0.6; }
.plan-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  line-height: 1.5;
}
.plan-card.popular .plan-desc { color: rgba(255,255,255,0.5); }
.plan-divider {
  border: none;
  border-top: 1px solid var(--gray-100);
  margin-bottom: 1.5rem;
}
.plan-card.popular .plan-divider { border-color: rgba(255,255,255,0.1); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.plan-features li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.9rem; }
.plan-card.standard .plan-features li { color: var(--gray-700); }
.plan-card.popular .plan-features li { color: rgba(255,255,255,0.8); }
.plan-features li .check { color: #34d399; font-weight: 700; }
.plan-features li .dash { color: var(--gray-300); }
.plan-card .plan-btn {
  width: 100%;
  padding: 0.85rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.plan-card.standard .plan-btn {
  background: var(--gray-50);
  color: var(--navy);
  border: 1.5px solid var(--gray-300);
}
.plan-card.standard .plan-btn:hover { background: var(--gray-100); }
.plan-card.popular .plan-btn {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,99,235,0.4);
}
.plan-card.popular .plan-btn:hover { box-shadow: 0 8px 30px rgba(37,99,235,0.5); }

.pricing-addons { background: var(--gray-50); padding: 5rem 2rem; }
.pricing-addons-inner { max-width: 1000px; margin: 0 auto; }
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.addon-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.addon-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.addon-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--navy); }
.addon-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.5; margin-bottom: 0.75rem; }
.addon-price { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--blue); }
.addon-price span { font-size: 0.75rem; font-weight: 400; color: var(--gray-500); }

.feature-compare { padding: 5rem 2rem; }
.feature-compare-inner { max-width: 900px; margin: 0 auto; }
.compare-table { width: 100%; border-collapse: collapse; margin-top: 2.5rem; }
.compare-table th {
  text-align: center;
  padding: 1rem 1.5rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--gray-50);
  border-bottom: 2px solid var(--gray-100);
}
.compare-table th:first-child { text-align: left; }
.compare-table th.highlight { background: var(--navy); color: var(--white); }
.compare-table td {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-100);
  text-align: center;
}
.compare-table td:first-child { text-align: left; color: var(--gray-700); font-weight: 500; }
.compare-table td.highlight { background: rgba(37,99,235,0.04); }
.compare-table tr:hover td { background: var(--gray-50); }
.compare-table tr:hover td.highlight { background: rgba(37,99,235,0.07); }
.c-yes { color: #34d399; font-size: 1.1rem; }
.c-no { color: var(--gray-300); font-size: 1.1rem; }
.c-text { color: var(--navy); font-weight: 600; }

/* ══════════════════════════════════════
   FAQ STRANICA
══════════════════════════════════════ */
.faq-page-hero {
  background: var(--gradient-hero);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.faq-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(109,40,217,0.12) 0%, transparent 70%);
}
.faq-page-hero-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.faq-page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.faq-page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; line-height: 1.7; }

.faq-full { padding: 5rem 2rem; }
.faq-full-inner { max-width: 800px; margin: 0 auto; }
.faq-category { margin-bottom: 3rem; }
.faq-category-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(37,99,235,0.1);
}
.faq-full .faq-item { border: 1px solid var(--gray-100); border-radius: 12px; margin-bottom: 0.75rem; }
.faq-full .faq-q { font-size: 0.95rem; font-weight: 500; padding: 1.25rem 1.5rem; }
.faq-full .faq-a { font-size: 0.9rem; }

/* ══════════════════════════════════════
   KONTAKT STRANICA
══════════════════════════════════════ */
.contact-page-hero {
  background: var(--gradient-hero);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(37,99,235,0.12) 0%, transparent 70%);
}
.contact-page-hero-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.contact-page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.contact-page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; line-height: 1.7; }

.contact-page-body { padding: 5rem 2rem; }
.contact-page-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
.contact-page-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-page-info {}
.contact-page-info h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.75rem; }
.contact-page-info p { color: var(--gray-500); line-height: 1.7; margin-bottom: 2rem; }
.contact-page-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-page-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-page-item-icon {
  width: 44px; height: 44px;
  background: rgba(37,99,235,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-page-item-text strong { display: block; font-weight: 600; margin-bottom: 0.25rem; }
.contact-page-item-text span { color: var(--gray-500); font-size: 0.92rem; }

.contact-map-placeholder {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-top: 2rem;
}
.contact-map-placeholder .map-icon { font-size: 2rem; opacity: 0.5; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 3rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.7; margin-top: 0.75rem; max-width: 280px; }
.footer-col h5 { font-family: 'Syne', sans-serif; font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; margin-bottom: 0.5rem; cursor: pointer; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 0.82rem; text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* notification */
.notif {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  border: 1px solid rgba(52,211,153,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.notif.show { opacity: 1; transform: translateY(0); }
/* ══════════════════════════════════════
   MOBILNA NAVIGACIJA
══════════════════════════════════════ */

/* Hamburger gumb — skriven na desktopu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Animacija u X kada je otvoren */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobilni dropdown meni */
.nav-mobile {
  display: none;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 1.5rem 1.5rem;
}
.nav-mobile.open { display: block; }

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile-links a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-mobile-links a:hover,
.nav-mobile-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Responsive breakpoint */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .nav-inner {
    padding: 0 1.25rem;
  }

  /* Hero na mobitelu */
  .hero { padding: 3rem 1.25rem 3rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns a, .hero-btns button { width: 100%; text-align: center; }

  /* Features na mobitelu */
  .features-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Cijenik na mobitelu */
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.popular { transform: none; }
  .plan-card.popular:hover { transform: translateY(-4px); }

  /* Footer na mobitelu */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* FAQ grid na mobitelu */
  .faq-grid { grid-template-columns: 1fr; }

  /* Contact grid na mobitelu */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-page-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .section-h2 { font-size: 1.6rem; }
  .slider-wrap { margin: 0 -0.5rem; }
  .addons-grid { grid-template-columns: 1fr; }
  .feature-row-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row-inner.reverse { direction: ltr; }
}




/* =============================================
   BREADCRUMB - Blistio Design
============================================= */

/* ======================
   BREADCRUMB - Blistio
====================== */

.breadcrumb {
    background: var(--white);
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.92rem;
}

.breadcrumb .section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    color: var(--gray-500);
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.breadcrumb-list a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list a:hover {
    color: var(--blue-light);
}

.breadcrumb-list .separator {
    color: var(--gray-300);
    font-size: 1.05rem;
    line-height: 1;
}

.breadcrumb-list li[aria-current="page"] {
    color: var(--navy);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 1rem 1.25rem;
        font-size: 0.88rem;
    }
}






/* === BLISTIO CONTACT FORM 7 - Improved Styling === */

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Form row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Input fields - točno po tvom dizajnu */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
    padding: 0.85rem 1.1rem !important;
    border: 1.5px solid var(--gray-300) !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    font-family: 'DM Sans', sans-serif !important;
    color: var(--text) !important;
    background: var(--white) !important;
    transition: all 0.2s !important;
    width: 100% !important;
    box-sizing: border-box;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: var(--blue) !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
    outline: none !important;
}

/* Textarea */
.wpcf7-textarea {
    min-height: 140px !important;
    resize: vertical;
}

/* Submit button - koristi tvoj gradient */
.wpcf7-submit {
    background: var(--gradient-blue) !important;
    color: white !important;
    padding: 0.9rem 2.2rem !important;
    border-radius: 10px !important;
    font-size: 0.97rem !important;
    font-weight: 500 !important;
    border: none !important;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37,99,235,0.4) !important;
    transition: all 0.25s ease !important;
    align-self: flex-start;
}

.wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,99,235,0.55) !important;
}

/* Response messages */
.wpcf7-response-output {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 0.93rem;
    border: 1px solid;
}

.wpcf7-mail-sent-ok {
    background: rgba(52, 211, 153, 0.12);
    border-color: #34d399;
    color: #10b981;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors {
    background: rgba(239, 68, 68, 0.1);
    border-color: #f87171;
    color: #ef4444;
}





/* === BLISTIO PAGE H1 === */
.page-title-blistio {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: 1rem;
    text-align: center;
}

.page-title-blistio::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: var(--blue);
    margin-top: 0.5rem;
    border-radius: 2px;
}



/* =============================================
   FAQ ACCORDION - Blistio Design
============================================= */

.faq-full {
    padding: 5rem 2rem;
    background: var(--white);
}

.faq-full-inner {
    max-width: 820px;
    margin: 0 auto;
}

.faq-accordion {
    margin-top: 3rem;
}

.faq-item {
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    background: var(--white);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
    text-align: left;
    transition: background 0.25s;
}

.faq-q:hover {
    background: var(--gray-50);
}

.faq-chevron {
    font-size: 1.25rem;
    color: var(--gray-500);
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.75rem;
    color: var(--gray-500);
    font-size: 0.97rem;
    line-height: 1.75;
}

.faq-item.open .faq-a {
    max-height: 280px;   /* povećaj ako su odgovori duži */
    padding-bottom: 1.6rem;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-full {
        padding: 3.5rem 1.25rem;
    }
    
    .faq-q {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
}