/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e2e8f0;
  background: #0f172a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; color: inherit; }
input, textarea { font: inherit; }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-alt { background: #1e293b; }

@media (max-width: 768px) {
  .section { padding: 56px 0; }
}

/* ===== Topbar ===== */
.topbar {
  background: linear-gradient(90deg, #facc15, #eab308);
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  z-index: 50;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-text { display: flex; align-items: center; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  background: #16a34a;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.topbar-phone {
  font-weight: 700;
  letter-spacing: 0.3px;
}
.topbar-phone:hover { text-decoration: underline; }

/* ===== Header ===== */
.header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}
.logo-mark {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(250, 204, 21, 0.35);
  flex-shrink: 0;
  padding: 4px;
}
.logo-mark svg { width: 100%; height: 100%; display: block; }
.logo-words {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.logo-name {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: #ffffff;
}
.logo-tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #facc15;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: 15px;
}
.nav a {
  color: #cbd5e1;
  transition: color 0.2s;
}
.nav a:hover { color: #facc15; }

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e2e8f0;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a:not(.btn) {
  padding: 8px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 900px) {
  .nav, .header-inner .btn { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav.open { display: flex; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, #facc15, #eab308);
  color: #0f172a;
  box-shadow: 0 6px 20px rgba(250, 204, 21, 0.35);
}
.btn-primary:hover { box-shadow: 0 10px 28px rgba(250, 204, 21, 0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-light {
  background: white;
  color: #0f172a;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5); }
.btn-whatsapp svg { flex-shrink: 0; }
.btn-large { padding: 16px 32px; font-size: 17px; }
.btn-small { padding: 9px 16px; font-size: 14px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 64px 0 80px;
  background:
    radial-gradient(ellipse at top right, rgba(250, 204, 21, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(59, 130, 246, 0.08), transparent 60%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-content { position: relative; z-index: 1; }
.badge {
  display: inline-block;
  background: rgba(250, 204, 21, 0.15);
  color: #facc15;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(250, 204, 21, 0.3);
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.accent {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: 19px;
  color: #94a3b8;
  margin-bottom: 32px;
  max-width: 540px;
}
.lead-small {
  font-size: 17px;
  color: #94a3b8;
  margin-bottom: 24px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-item strong {
  font-size: 28px;
  font-weight: 800;
  color: #facc15;
  letter-spacing: -0.5px;
}
.trust-item span {
  font-size: 13px;
  color: #94a3b8;
}

.hero-visual { position: relative; }
.hero-card {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.hero-card-glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.15), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero { padding: 40px 0 60px; }
}

/* ===== Sections ===== */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #facc15;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-head p { color: #94a3b8; font-size: 18px; }

/* ===== Grids ===== */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ===== Cards ===== */
.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 204, 21, 0.3);
  background: rgba(255,255,255,0.05);
}
.card-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: inline-block;
}
.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.card p { color: #94a3b8; font-size: 15px; }

/* ===== Split / Map ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}
.split h2 { margin-bottom: 20px; }
.check-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  color: #cbd5e1;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: rgba(250, 204, 21, 0.2);
  color: #facc15;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
}
.map-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}
.map-caption {
  margin-top: 16px;
  font-size: 14px;
  color: #94a3b8;
}

/* ===== Pricing (legacy cards, still used elsewhere) ===== */
.pricing { margin-bottom: 24px; }
.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 204, 21, 0.3);
}
.price-card.featured {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(234, 179, 8, 0.05));
  border-color: rgba(250, 204, 21, 0.4);
  transform: scale(1.03);
}
.popular {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #facc15, #eab308);
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 12px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.amount {
  font-size: 38px;
  font-weight: 800;
  color: #facc15;
  letter-spacing: -1px;
}
.unit { color: #94a3b8; font-size: 16px; }
.price-desc {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 24px;
}
.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-card li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: #cbd5e1;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}
.pricing-note {
  text-align: center;
  color: #94a3b8;
  font-size: 15px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  margin-top: 32px;
}
.pricing-note a { color: #facc15; font-weight: 600; }

/* ===== Pricing groups (detailed cjenik) ===== */
.price-groups {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.price-group {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.price-group:hover { border-color: rgba(250, 204, 21, 0.25); }
.price-group-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.12), rgba(234, 179, 8, 0.04));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.price-group-head h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.price-group-icon {
  font-size: 26px;
  width: 44px;
  height: 44px;
  background: rgba(250, 204, 21, 0.18);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.price-list {
  padding: 8px 0;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.price-list li:last-child { border-bottom: none; }
.price-label {
  color: #cbd5e1;
  font-size: 15px;
  flex: 1;
  line-height: 1.4;
}
.price-value {
  color: #facc15;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.2px;
}
@media (max-width: 560px) {
  .price-group-head { padding: 16px 20px; }
  .price-group-head h3 { font-size: 17px; }
  .price-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 20px;
  }
  .price-value { font-size: 18px; }
}

/* ===== Features ===== */
.feature {
  text-align: center;
  padding: 16px;
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.feature h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature p {
  color: #94a3b8;
  font-size: 14px;
}

/* ===== Testimonials ===== */
.testimonial {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
}
.stars {
  color: #facc15;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial p {
  color: #cbd5e1;
  font-style: italic;
  margin-bottom: 16px;
  font-size: 15px;
}
.testimonial footer {
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #0f172a;
  padding: 56px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #0f172a; margin-bottom: 4px; }
.cta-banner p { font-size: 17px; opacity: 0.85; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: rgba(250, 204, 21, 0.15);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-block strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-block a, .contact-block span {
  font-size: 17px;
  font-weight: 500;
  color: #e2e8f0;
}
.contact-block a:hover { color: #facc15; }

.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
}
.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-help {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form label span {
  display: block;
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 14px;
  color: #e2e8f0;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #facc15;
  background: rgba(15, 23, 42, 0.9);
}
.contact-form textarea { resize: vertical; }
.form-success {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(22, 163, 74, 0.4);
  border-radius: 8px;
  color: #86efac;
  font-size: 14px;
}

/* ===== Footer ===== */
.footer {
  background: #020617;
  padding: 56px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #e2e8f0;
}
.footer-col p { color: #94a3b8; font-size: 14px; margin-top: 12px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a {
  color: #94a3b8;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #facc15; }
.logo-footer .logo-mark { width: 38px; height: 38px; }
.logo-footer .logo-name { font-size: 16px; }
.logo-footer .logo-tag { font-size: 8.5px; letter-spacing: 2px; }
.social {
  display: flex;
  gap: 10px;
}
.social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.social a:hover { background: #facc15; color: #0f172a; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== Floating actions (WhatsApp + Call) ===== */
.floating-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  color: white;
  transition: transform 0.2s, box-shadow 0.2s;
}
.floating-btn:hover { transform: scale(1.05); }

.floating-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  width: 56px;
  height: 56px;
  padding: 0;
  justify-content: center;
  margin-left: auto;
}
.floating-whatsapp:hover { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55); }
.floating-whatsapp svg { width: 26px; height: 26px; }

.floating-call {
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.4);
  animation: float-pulse 2s ease-in-out infinite;
}
.floating-call:hover { box-shadow: 0 12px 32px rgba(22, 163, 74, 0.55); }
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(22, 163, 74, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(22, 163, 74, 0.4), 0 0 0 12px rgba(22, 163, 74, 0.15); }
}
.phone-icon { font-size: 18px; }
@media (max-width: 560px) {
  .floating-call { padding: 14px 16px; }
  .floating-text { display: none; }
  .phone-icon { font-size: 22px; }
}

/* Honeypot — sakriven od korisnika, ali vidljiv botovima */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 8px;
  color: #fca5a5;
  font-size: 14px;
}
