/* ===== VARIJABLE ===== */
:root {
  --dark: #101014;
  --dark-soft: #1a1a1f;
  --light: #ffffff;
  --light-alt: #f4f4f2;
  --text: #17171a;
  --text-muted: #5c5c63;
  --text-on-dark: #f5f5f3;
  --text-on-dark-muted: #a8a8b0;
  --accent: #c8ff4d;
  --accent-dark: #9fd928;
  --border: #e6e6e2;
  --radius: 14px;
  --max-width: 1160px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
}

p { margin: 0 0 1em; }

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

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

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

svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: .8em;
}

.accent-text { color: var(--accent-dark); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-accent {
  background: var(--accent);
  color: var(--dark);
}
.btn-accent:hover { background: var(--accent-dark); }

.btn-outline {
  border-color: currentColor;
  background: transparent;
}
.hero .btn-outline { color: var(--text-on-dark); }
.section .btn-outline { color: var(--text); }
.btn-outline:hover { background: rgba(0,0,0,.05); }
.hero .btn-outline:hover { background: rgba(255,255,255,.1); }

.btn-small { padding: 10px 20px; font-size: .85rem; }
.btn-block { width: 100%; margin-top: 8px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -.02em;
}
.logo .dot { color: var(--accent-dark); }

.main-nav {
  display: flex;
  gap: 32px;
  margin: 0 auto;
}

.nav-link {
  font-weight: 500;
  font-size: .95rem;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--dark);
  color: var(--text-on-dark);
  overflow: hidden;
  padding: 110px 0 90px;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(200,255,77,.28) 0%, rgba(200,255,77,0) 70%);
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 760px; }

.hero .eyebrow { color: var(--accent); }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -.02em;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-on-dark-muted);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0 64px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 32px;
}

.stat { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px; min-width: 140px; }
.hero-highlights .stat { flex-direction: column; align-items: flex-start; gap: 6px; }
.highlight-mark {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
}
.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
}
.stat-label {
  width: 100%;
  font-size: .85rem;
  color: var(--text-on-dark-muted);
}

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--light-alt); }

.section-heading {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-heading .eyebrow { display: block; }
.section-lead { color: var(--text-muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* --- O meni --- */
.split-media { position: relative; }
.photo-frame {
  background: var(--dark);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-on-dark-muted);
  
}
.photo-placeholder { width: 96px; height: 96px; color: var(--accent); }
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.photo-note { font-size: .85rem;}

.badge-card {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: var(--accent);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}
.badge-card strong { font-family: var(--font-heading); font-size: 1.8rem; }
.badge-card span { font-size: .8rem; max-width: 120px; }

.check-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Usluge --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,.06);
}
.card-icon {
  width: 44px; height: 44px;
  color: var(--dark);
  background: var(--accent);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
}
.card h3 { font-size: 1.1rem; }
.card p { color: var(--text-muted); font-size: .95rem; margin: 0; }

/* --- Cenovnik --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-grid--single {
  grid-template-columns: 1fr;
  max-width: 440px;
  margin: 0 auto;
}
.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--dark);
  color: var(--text-on-dark);
  border-color: var(--dark);
  transform: scale(1.03);
}
.price-tag {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--accent);
  color: var(--dark);
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card h3 { margin-bottom: .3em; }
.price { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 0; }
.price span { font-size: 2rem; font-weight: 800; }
.price-note {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.price-card.featured .price-note { color: var(--text-on-dark-muted); }
.price-card ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex-grow: 1; }
.price-card li {
  font-size: .92rem;
  padding-left: 26px;
  position: relative;
}
.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
}
.price-card.featured li::before { color: var(--accent); }

/* --- Kontakt --- */
.contact-info { display: flex; flex-direction: column; gap: 18px; margin: 28px 0; }
.contact-item { display: flex; align-items: center; gap: 14px; color: var(--text-muted); }
.contact-item svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent-dark); }

.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}
.socials a:hover { background: var(--accent); border-color: var(--accent); }

.contact-form {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-row input, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--light-alt);
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  outline: 2px solid var(--accent-dark);
  outline-offset: 1px;
}
.form-status {
  margin: 10px 0 0;
  font-size: .88rem;
  min-height: 1.2em;
  color: var(--accent-dark);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: var(--text-on-dark-muted);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-footer .logo { color: var(--text-on-dark); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: .9rem; }
.footer-nav a:hover { color: var(--text-on-dark); }
.footer-copy { font-size: .82rem; width: 100%; text-align: center; margin: 0; }

@media (min-width: 640px) {
  .footer-copy { width: auto; text-align: right; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .split { grid-template-columns: 1fr; }
  .split-media { max-width: 380px; margin: 0 auto 40px; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0; right: 0;
    background: var(--light);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; }
  .main-nav a { padding: 14px 0; width: 100%; text-align: center; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 60px; }
}
