/* =============================================
   mojKonto.si — Marketing Website Styles
   ============================================= */

:root {
  --primary: #4F46E5;
  --primary-dark: #3730A3;
  --primary-light: #818CF8;
  --primary-50: #EEF2FF;
  --accent: #10B981;
  --accent-dark: #059669;
  --warning: #F59E0B;
  --danger: #EF4444;
  --dark: #0F172A;
  --gray-900: #1E293B;
  --gray-800: #334155;
  --gray-700: #475569;
  --gray-500: #64748B;
  --gray-400: #94A3B8;
  --gray-200: #E2E8F0;
  --gray-100: #F1F5F9;
  --gray-50: #F8FAFC;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --shadow-primary: 0 8px 32px rgba(79,70,229,.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ========== NAVBAR ========== */
#mainNav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.8);
  padding: 14px 0;
  transition: all 0.3s ease;
  z-index: 1050;
}

#mainNav.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  padding: 10px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: #4338CA;
  letter-spacing: -0.5px;
}

.logo-konto { color: #6366F1; font-weight: 400; }
.logo-dot { color: #818CF8; font-weight: 400; }

#mainNav .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--primary);
  background: var(--primary-50);
}

.btn-nav-cta {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 9px 20px;
  border-radius: 100px;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary);
}

/* ========== HERO ========== */
.hero-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 45%, #312E81 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.35);
  color: #A5B4FC;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse-dot 2s infinite;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #818CF8, #A5B4FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .highlight-green {
  background: linear-gradient(135deg, #34D399, #10B981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}

.btn-hero-primary {
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 100px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(79,70,229,0.4);
}

.btn-hero-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(79,70,229,0.5);
}

.btn-hero-secondary {
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}

.btn-hero-secondary:hover {
  color: white;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 500;
}

.trust-item i {
  color: var(--accent);
  font-size: 0.9rem;
}

/* Hero visual — dashboard mockup */
.hero-visual {
  position: relative;
  z-index: 2;
}

.dashboard-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(20px);
  animation: floatCard 6s ease-in-out infinite;
}

.dashboard-card .card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dashboard-card .card-title {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.kpi-item {
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px;
}

.kpi-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-bottom: 4px;
}

.kpi-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.kpi-change {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
}

.kpi-change.down { color: #F87171; }

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  margin-top: 16px;
}

.mini-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(99,102,241,0.4);
  transition: background 0.2s;
}

.mini-bar.active { background: rgba(99,102,241,0.9); }

.floating-badge {
  position: absolute;
  background: rgba(16,185,129,0.95);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(16,185,129,0.35);
  white-space: nowrap;
}

.fb-1 { top: -18px; right: 20px; animation: floatBadge1 4s ease-in-out infinite; }
.fb-2 { bottom: 20px; left: -30px; animation: floatBadge2 5s ease-in-out infinite; }
.fb-3 { top: 50%; right: -25px; transform: translateY(-50%); animation: floatBadge1 4.5s ease-in-out infinite 1s;
  background: rgba(79,70,229,0.95); box-shadow: 0 8px 24px rgba(79,70,229,0.4); }

/* ========== STATS STRIP ========== */
.stats-strip {
  background: var(--dark);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-strip .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stats-strip .stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  background: linear-gradient(135deg, #A5B4FC, #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-top: 4px;
}

/* ========== SECTIONS ========== */
.section {
  padding: 90px 0;
}

.section-alt { background: var(--gray-50); }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 580px;
}

/* ========== PAIN POINTS ========== */
.pain-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
  height: 100%;
}

.pain-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 12px 40px rgba(79,70,229,0.08);
  transform: translateY(-3px);
}

.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.pain-icon.red { background: #FEF2F2; color: #EF4444; }
.pain-icon.orange { background: #FFF7ED; color: #F97316; }
.pain-icon.yellow { background: #FFFBEB; color: #F59E0B; }
.pain-icon.blue { background: #EFF6FF; color: #3B82F6; }

.pain-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

.pain-arrow {
  text-align: center;
  font-size: 2rem;
  color: var(--gray-200);
  padding: 0 8px;
}

.solution-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
}

.solution-card h5 { font-weight: 700; color: white; margin-bottom: 10px; }
.solution-card p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.65; margin: 0; }
.solution-card .pain-icon { background: rgba(255,255,255,0.15); color: white; }

/* ========== FEATURE CARDS ========== */
.feature-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: var(--gray-100);
  box-shadow: 0 20px 60px rgba(79,70,229,0.1);
  transform: translateY(-5px);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: var(--primary-50);
  color: var(--primary);
}

.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-700);
  padding: 4px 0;
}

.feature-list li i {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ========== SPOTLIGHT ========== */
.spotlight-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.spotlight-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234F46E5' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: #34D399;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.spotlight-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.spotlight-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.spotlight-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.spotlight-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(99,102,241,0.2);
  border: 1px solid rgba(99,102,241,0.4);
  color: #A5B4FC;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.step-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}

/* Signature visual */
.signature-visual {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.sig-doc {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 14px;
}

.sig-lines { display: flex; flex-direction: column; gap: 8px; }

.sig-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
}

.sig-line.long { width: 100%; }
.sig-line.medium { width: 65%; }
.sig-line.short { width: 40%; }

.sig-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.sig-field {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 10px;
}

.sig-field-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.sig-field-canvas {
  height: 44px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sig-field-canvas.signed {
  border-style: solid;
  border-color: rgba(16,185,129,0.3);
  background: rgba(16,185,129,0.05);
}

.sig-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 8px;
  padding: 12px 16px;
}

.sig-status-label { font-size: 0.8rem; color: #34D399; font-weight: 600; }
.sig-status-icon { font-size: 1.2rem; color: #34D399; }

/* ========== MODULES GRID ========== */
.module-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.25s;
  height: 100%;
}

.module-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 8px 24px rgba(79,70,229,0.08);
  transform: translateY(-2px);
}

.module-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.mi-indigo { background: #EEF2FF; color: #4F46E5; }
.mi-green { background: #ECFDF5; color: #10B981; }
.mi-blue { background: #EFF6FF; color: #3B82F6; }
.mi-purple { background: #F5F3FF; color: #8B5CF6; }
.mi-orange { background: #FFF7ED; color: #F97316; }
.mi-pink { background: #FDF2F8; color: #EC4899; }
.mi-red { background: #FEF2F2; color: #EF4444; }
.mi-teal { background: #F0FDFA; color: #14B8A6; }
.mi-yellow { background: #FFFBEB; color: #D97706; }
.mi-gray { background: var(--gray-100); color: var(--gray-500); }

.module-info h6 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.module-info p {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}

/* ========== NEW BADGE ========== */
.badge-new {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  margin-left: 4px;
}

.badge-unique {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  margin-left: 4px;
}

/* ========== PRICING ========== */
.pricing-section { padding: 90px 0; background: var(--gray-50); }

.pricing-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 32px 80px rgba(79,70,229,0.18);
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-50);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.price-main {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 6px;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 8px;
}

.price-amount {
  font-size: 5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -3px;
}

.price-period {
  font-size: 0.95rem;
  color: var(--gray-500);
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 8px;
}

.price-note {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-bottom: 32px;
}

.price-note strong { color: var(--accent); }

.pricing-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 28px 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.price-features li:last-child { border-bottom: none; }

.price-features li i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.btn-pricing {
  display: block;
  text-align: center;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: var(--shadow-primary);
}

.btn-pricing:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(79,70,229,0.35);
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.8rem;
  text-align: center;
  justify-content: center;
  margin-top: 16px;
}

/* ========== COMPARISON TABLE ========== */
.compare-section { padding: 90px 0; }

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.compare-table th {
  padding: 20px 24px;
  text-align: center;
  font-weight: 700;
  border-bottom: 2px solid var(--gray-200);
  background: var(--gray-50);
  white-space: nowrap;
}

.compare-table th:first-child {
  text-align: left;
  min-width: 200px;
}

.compare-table th.our-col {
  background: var(--primary);
  color: white;
}

.compare-table td {
  padding: 14px 24px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--dark);
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tr:hover td { background: var(--gray-50); }

.compare-table td.our-col {
  background: rgba(79,70,229,0.04);
}

.compare-table tr:hover td.our-col {
  background: rgba(79,70,229,0.07);
}

.check-yes { color: var(--accent); font-size: 1.1rem; }
.check-no { color: var(--gray-300); font-size: 1.1rem; }
.check-partial { color: var(--warning); font-size: 0.8rem; font-weight: 600; }

.price-cell {
  font-weight: 800;
  color: var(--primary);
  font-size: 1rem;
}

.price-cell-small { font-size: 0.78rem; color: var(--gray-500); font-weight: 400; }

.cat-row td {
  background: var(--gray-50) !important;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  padding: 10px 24px;
}

/* ========== FAQ ========== */
.faq-section { padding: 90px 0; background: var(--gray-50); }

.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
  user-select: none;
  -webkit-user-select: none;
}

.faq-question i {
  transition: transform 0.3s;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.open .faq-question i { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ========== CTA STRIP ========== */
.cta-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-strip h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.cta-strip p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-white {
  background: white;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 15px 36px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.btn-cta-white:hover {
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

/* ========== PAGE HEADERS ========== */
.page-hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 100%);
  padding: 130px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234F46E5' fill-opacity='0.06'%3E%3Ccircle cx='40' cy='40' r='6'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== FEATURE DETAIL ========== */
.feature-group-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-50);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-group-title i { color: var(--primary); }

.feature-detail-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  height: 100%;
  transition: all 0.25s;
}

.feature-detail-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 8px 24px rgba(79,70,229,0.07);
}

.feature-detail-card h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-detail-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

/* ========== CONTACT ========== */
.contact-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-control, .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  padding: 10px 14px;
  color: var(--dark);
  transition: all 0.2s;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
  outline: none;
}

.form-control::placeholder { color: var(--gray-400); }

.btn-submit {
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--primary-50);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-text h6 { font-weight: 700; margin-bottom: 2px; color: var(--dark); font-size: 0.9rem; }
.contact-info-text p { font-size: 0.85rem; color: var(--gray-500); margin: 0; }

/* ========== FOOTER ========== */
.site-footer {
  background: #F1F0F5;
  padding: 64px 0 32px;
}

.footer-tagline {
  color: rgba(30,27,75,0.5);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand .logo-text { font-weight: 800; }
.footer-brand .logo-konto { font-weight: 400; }
.footer-brand .logo-dot { font-weight: 400; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(30,27,75,0.15);
  color: rgba(30,27,75,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: rgba(79,70,229,0.1);
}

.site-footer h6 {
  color: rgba(30,27,75,0.8);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li { margin-bottom: 10px; }

.site-footer ul a {
  color: rgba(30,27,75,0.55);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.2s;
}

.site-footer ul a:hover { color: #4338CA; }

.site-footer p {
  color: rgba(30,27,75,0.55);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.site-footer p i { margin-right: 8px; color: var(--primary-light); }

.footer-hr {
  border-color: rgba(30,27,75,0.1);
  margin: 40px 0 24px;
}

.footer-bottom p {
  color: rgba(30,27,75,0.35);
  font-size: 0.78rem;
  margin: 0;
}

.footer-bottom a {
  color: rgba(30,27,75,0.35);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: #4338CA; }

/* ========== ANIMATIONS ========== */
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(0deg); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ========== UTILITIES ========== */
.text-primary-custom { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pill {
  display: inline-block;
  background: var(--primary-50);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.pill-green {
  background: #ECFDF5;
  color: var(--accent);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .hero-section { padding: 100px 0 60px; min-height: auto; }
  .hero-visual { margin-top: 50px; }
  .floating-badge { display: none; }
  .stats-strip .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 14px 0; }
  .pain-arrow { display: none; }
}

@media (max-width: 767px) {
  .section { padding: 60px 0; }
  .section-title { font-size: 1.7rem; }
  .feature-card { padding: 24px 20px; }
  .pricing-card { padding: 36px 24px; }
  .price-amount { font-size: 4rem; }
  .compare-table th, .compare-table td { padding: 12px 14px; font-size: 0.78rem; }
  .contact-card { padding: 28px 20px; }
  .page-hero { padding: 110px 0 50px; }
  .spotlight-section { padding: 60px 0; }
}

@media (max-width: 575px) {
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-secondary { text-align: center; justify-content: center; }
  .kpi-grid { grid-template-columns: 1fr; }
}

/* ==================== Newsletter signup modal ==================== */
#nlSignupModal .nl-modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
#nlSignupModal .nl-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  background-color: rgba(255,255,255,.9);
  border-radius: 50%;
  padding: 10px;
  opacity: 1;
}
#nlSignupModal .nl-modal-side {
  background: linear-gradient(135deg, var(--primary, #4f46e5) 0%, var(--primary-light, #818cf8) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#nlSignupModal .nl-modal-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.15) 0, transparent 40%),
                    radial-gradient(circle at 80% 80%, rgba(255,255,255,.1) 0, transparent 40%);
  pointer-events: none;
}
#nlSignupModal .nl-modal-side-inner {
  position: relative;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#nlSignupModal .nl-modal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: .95;
}
#nlSignupModal .nl-modal-side h4 {
  font-weight: 800;
  margin-bottom: 1.25rem;
}
#nlSignupModal .nl-modal-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}
#nlSignupModal .nl-modal-benefits li {
  padding: .4rem 0;
  font-size: .95rem;
  opacity: .95;
}
#nlSignupModal .nl-modal-benefits li i {
  margin-right: .5rem;
  color: #bbf7d0;
}
#nlSignupModal .nl-submit-btn {
  font-weight: 600;
  padding: .85rem;
  border-radius: 12px;
}
#nlSignupModal .form-control {
  border-radius: 10px;
  padding: .65rem .9rem;
}
#nlSignupModal .form-control:focus {
  box-shadow: 0 0 0 .2rem rgba(79,70,229,.15);
  border-color: var(--primary, #4f46e5);
}
@media (max-width: 767px) {
  #nlSignupModal .nl-modal-side { display: none; }
}

/* ========== REFERENCE MODAL ========== */
.ref-modal-content {
  border-radius: var(--radius-lg);
  border: none;
  overflow: hidden;
  max-height: 88vh;
}
.ref-modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ref-modal-header .modal-title { color: #fff; font-weight: 700; font-size: 1.25rem; }
.ref-modal-header .btn-close { filter: invert(1) brightness(2); opacity: .8; }
.ref-modal-header .btn-close:hover { opacity: 1; }
.ref-modal-subtitle { color: rgba(255,255,255,.7); font-size: .875rem; margin-top: 2px; }

.ref-modal-search-wrap {
  padding: 1rem 1.75rem .75rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.ref-modal-search-wrap .input-group {
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s;
}
.ref-modal-search-wrap .input-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,.1);
}
.ref-modal-search-wrap .input-group-text { border: none; background: transparent; }
.ref-modal-search-wrap .form-control {
  border: none;
  font-size: .9rem;
  background: transparent;
  box-shadow: none !important;
  padding: .55rem .5rem;
}
#refCount { font-size: .8rem; color: var(--gray-400); min-width: 80px; text-align: right; }

.ref-modal-body { overflow-y: auto; max-height: calc(88vh - 160px); }

.ref-letter-group { margin-bottom: 1.5rem; }
.ref-letter-badge {
  display: inline-block;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--primary-50);
  color: var(--primary);
  font-size: .85rem;
  font-weight: 700;
  text-align: center;
  line-height: 32px;
  margin-bottom: .6rem;
}
/* Kartični grid za reference (Stripe/Notion stil) — 3 stolpci, polno vidno */
.ref-names-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 8px 4px;
}
.ref-name {
  position: relative;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-800, #1f2937);
  padding: 12px 14px 12px 36px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--gray-200, #e5e7eb);
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
  /* dovoli prelom dolgih imen — vsa referenca vidna brez "..." */
  white-space: normal;
  word-break: break-word;
  line-height: 1.35;
  transition: all .18s ease;
  cursor: default;
}
.ref-name::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--primary, #6366f1) 0%, var(--accent, #ec4899) 100%);
  opacity: .85;
}
.ref-name::after {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.ref-name:hover {
  border-color: var(--primary, #6366f1);
  box-shadow: 0 4px 12px rgba(99,102,241,.15);
  transform: translateY(-1px);
}
.ref-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray-400);
  font-size: 1rem;
}
.ref-empty i { font-size: 2rem; display: block; margin-bottom: .5rem; }

.ref-modal-footer {
  background: var(--gray-50, #f8fafc);
  border-top: 1px solid var(--gray-200, #e2e8f0);
  padding: .75rem 1.25rem;
  border-radius: 0 0 16px 16px;
}

/* PN365.net logo badge — replica originalnega na crnem */
.pn365-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  border-radius: 8px;
  text-decoration: none !important;
  border: 1px solid rgba(126, 211, 33, .25);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  transition: all .2s ease;
  line-height: 1;
}
.pn365-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(126, 211, 33, .3);
  border-color: rgba(126, 211, 33, .6);
}
.pn365-car {
  width: 30px;
  height: 30px;
  color: #7ed321;
  flex-shrink: 0;
}
.pn365-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.pn365-name {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -.5px;
  line-height: 1;
}
.pn365-pn { color: #7ed321; }
.pn365-365 { color: #7ed321; }
.pn365-net { color: #7ed321; font-weight: 700; }
.pn365-tag {
  color: #fff;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2px;
  opacity: .85;
}

/* navbar reference link accent */
.mk-reference-link { color: var(--accent) !important; font-weight: 500; }
.mk-reference-link:hover { color: var(--accent-dark) !important; }

@media (max-width: 991px) {
  .ref-names-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .ref-names-grid { grid-template-columns: 1fr; gap: 8px; }
  .ref-modal-content { max-height: 95vh; }
}

/* Login error alert animacija */
@keyframes mkErrSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
