:root {
  --navy: #0a1428;
  --navy-2: #0f1d38;
  --blue: #2e6ff2;
  --blue-light: #5b93ff;
  --text-dark: #10192b;
  --text-muted: #5b6472;
  --bg-light: #f5f7fa;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(10, 20, 40, 0.08);
  --shadow-lg: 0 20px 45px rgba(10, 20, 40, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.2; }

p { margin: 0 0 1em; color: var(--text-muted); }

a { text-decoration: none; color: inherit; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(46, 111, 242, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(46, 111, 242, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 20, 40, 0.92);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-logo { width: 38px; height: 38px; }
.brand-logo-icon {
  height: 46px;
  width: auto;
  border-radius: 8px;
}
.footer-logo-icon { height: 32px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { color: var(--white); font-size: 1rem; letter-spacing: 0.5px; }
.brand-text small { color: var(--blue-light); font-size: 0.75rem; }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover { color: var(--white); border-color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--white); }

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #16264a 0%, var(--navy) 55%), var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 90px 0 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(91,147,255,0.5) 0, transparent 60%),
    radial-gradient(2px 2px at 70% 60%, rgba(91,147,255,0.4) 0, transparent 60%),
    radial-gradient(2px 2px at 40% 80%, rgba(91,147,255,0.35) 0, transparent 60%),
    radial-gradient(2px 2px at 90% 25%, rgba(91,147,255,0.4) 0, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  color: var(--blue-light);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--white);
}
.hero-content h1 span { display: block; color: var(--blue-light); }
.hero-lead { color: rgba(255, 255, 255, 0.75); font-size: 1.05rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 10px; }

.hero-badges {
  display: grid;
  gap: 16px;
}
.badge-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.badge-icon { flex: none; display: flex; }
.badge-icon svg { width: 26px; height: 26px; color: var(--blue-light); }
.badge-card strong { display: block; color: var(--white); font-size: 0.95rem; }
.badge-card small { color: rgba(255, 255, 255, 0.65); font-size: 0.82rem; }

/* Sections general */
.section-eyebrow {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 8px;
  text-align: center;
}
.section-eyebrow-light { color: var(--blue-light); text-align: left; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.1rem); text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; margin-bottom: 46px; }
.section-title-light { color: var(--white); text-align: left; margin-bottom: 20px; max-width: none; }

/* Storitve */
.storitve { padding: 90px 0; background: var(--bg-light); }
.storitve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.storitev-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.storitev-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.storitev-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(46, 111, 242, 0.08);
}
.storitev-icon svg { width: 28px; height: 28px; color: var(--blue); }
.storitev-card h3 { font-size: 1.05rem; }
.storitev-card p { font-size: 0.92rem; margin-bottom: 0; }

/* O meni */
.o-meni { background: var(--navy); color: var(--white); padding: 90px 0; }
.o-meni-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.o-meni-text p { color: rgba(255, 255, 255, 0.75); }
.o-meni-features { display: grid; gap: 24px; }
.feature { display: flex; gap: 16px; }
.feature-icon {
  flex: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
.feature-icon svg { width: 20px; height: 20px; color: var(--blue-light); }
.feature h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.feature p { font-size: 0.9rem; margin-bottom: 0; color: rgba(255, 255, 255, 0.65); }

/* Kontakt */
.kontakt { padding: 90px 0; }
.kontakt-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; }
.kontakt-info { display: grid; gap: 16px; align-content: start; }
.kontakt-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.kontakt-item:hover { background: #eaf0fe; transform: translateY(-2px); }
.kontakt-icon { flex: none; display: flex; }
.kontakt-icon svg { width: 24px; height: 24px; color: var(--blue); }
.kontakt-item strong { display: block; font-size: 0.95rem; }
.kontakt-item small { color: var(--text-muted); }

.kontakt-form { display: grid; gap: 16px; background: var(--bg-light); padding: 28px; border-radius: var(--radius); }
.kontakt-form label { display: grid; gap: 6px; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.label-optional { font-weight: 400; color: var(--text-muted); }
.kontakt-form input, .kontakt-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d7dce3;
  resize: vertical;
}
.kontakt-form input:focus, .kontakt-form textarea:focus { outline: 2px solid var(--blue); border-color: transparent; }
.kontakt-form button { justify-self: start; }
.form-note { font-size: 0.88rem; color: var(--blue); margin: 0; }

/* Footer */
.site-footer { background: var(--navy-2); color: rgba(255, 255, 255, 0.7); padding: 34px 0; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 600; }
.footer-brand .brand-logo { width: 28px; height: 28px; }
.brand-logo-full {
  height: 40px;
  width: auto;
  background: #fff;
  padding: 6px 14px;
  border-radius: 8px;
}
.header-logo-full { height: 48px; }
.footer-tagline { margin: 0; font-size: 0.9rem; }
.footer-copy { margin: 0; font-size: 0.8rem; width: 100%; text-align: center; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 16px; }

/* Responsive */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 24px;
    gap: 16px;
  }
  .hero-inner { grid-template-columns: 1fr; }
  .storitve-grid { grid-template-columns: repeat(2, 1fr); }
  .o-meni-inner { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .storitve-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}
