/* ============================================================
   Aurora Wedding — stilovi glavnog sajta
   ============================================================ */

:root {
  --cream: #faf6ef;
  --paper: #fffdf8;
  --ink: #2b2620;
  --muted: #7d7468;
  --gold: #b8934e;
  --gold-light: #d9bc82;
  --gold-pale: #f1e6cf;
  --line: #e8dfd0;
  --shadow: 0 18px 50px rgba(43, 38, 32, 0.10);
  --radius: 18px;
  --font-display: "Cormorant Garamond", serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Jost", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.container { width: min(1120px, 92%); margin: 0 auto; }

/* ---------- Navigacija ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.logo span { color: var(--gold); }

/* Logo slika — kompaktna u navigaciji, malo veća u futeru */
.logo img { height: 40px; width: auto; display: block; }
.footer .logo img { height: 34px; filter: brightness(1.35); }

@media (max-width: 640px) {
  .logo img { height: 34px; }
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1;
}

/* ---------- Dugmad ---------- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 26px rgba(184, 147, 78, 0.35);
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(184, 147, 78, 0.45); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  box-shadow: none;
}

.btn-outline:hover { background: var(--gold); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero .eyebrow,
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 1.12;
  margin-bottom: 22px;
}

.hero h1 em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
  font-size: 1.12em;
}

.hero p { color: var(--muted); font-size: 1.08rem; max-width: 48ch; margin-bottom: 34px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Sekcije ---------- */
.section { padding: 80px 0; }

.section.alt { background: var(--paper); border-block: 1px solid var(--line); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 14px;
}

/* Zlatna linija ispod naslova sekcije — čvršći ritam */
.section-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-head p { color: var(--muted); }

/* Koraci */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 30px 34px;
  text-align: center;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.step h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin-bottom: 10px; }

.step p { color: var(--muted); font-size: 0.95rem; }

.step .step-link { display: inline-block; margin-top: 16px; color: var(--gold); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; border-bottom: 1px solid var(--gold-pale); padding-bottom: 2px; }

/* Prednosti */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.feature .check {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.feature h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 6px; }

.feature p { color: var(--muted); font-size: 0.92rem; }

/* Modeli */
.models { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }

.model {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.model-visual {
  position: relative;
  overflow: hidden;
  height: 330px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}

.model-visual.signature { background: linear-gradient(160deg, #efe2d2, #dfc9ab); }
.model-visual.heritage { background: linear-gradient(160deg, #e4e6ef, #c9cfe2); }
.model-visual.photo { background: linear-gradient(160deg, #f3e9e2, #dcc3b4); }

.model-visual .script { font-family: var(--font-script); font-size: 2.6rem; color: rgba(60, 48, 30, 0.8); }
.model-visual.heritage .script { color: rgba(52, 58, 92, 0.8); }

.model-visual .mv-sub {
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(60, 48, 30, 0.55);
}

.model-visual.heritage .mv-sub { color: rgba(52, 58, 92, 0.55); }

/* Prava slika u model kartici (ubacuje se ručno u img/) */
.model-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

/* Foto para (premium-p je 16:9): ravnomeran prikaz preko cele kartice */
.model-visual.signature > img,
.model-visual.photo > img {
  object-fit: cover;
  object-position: center;
  transform: none;
}

/* Bez tamne koprene preko contain slike — slika je svetla i sama po sebi */
.model-visual.signature.has-img::after,
.model-visual.photo.has-img::after { display: none; }

.model-visual.blur-img > img { filter: blur(2.5px) saturate(1.05); }

.model-visual .mv-overlay { position: relative; z-index: 2; }

/* Tamna koprena preko slike — tekst uvek čitljiv */
.model-visual.has-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 18, 10, 0.08) 25%, rgba(24, 18, 10, 0.55));
  z-index: 1;
}

.model-visual.has-img .script { color: #fff; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5); }
.model-visual.has-img .mv-sub { color: rgba(255, 255, 255, 0.88); text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45); }
.model-visual.has-img .hide-when-img { display: none; }
.model-visual:not(.has-img) > img { display: none; }

.mv-badge {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
  background: rgba(255, 253, 248, 0.94);
  color: #6b4a38;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.model-visual:not(.has-img) .mv-badge { display: none; }

.model-body { padding: 30px 30px 34px; }

.model-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-pale);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 14px;
}

.model-body h3 { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; margin-bottom: 10px; }

.model-body p { color: var(--muted); font-size: 0.96rem; margin-bottom: 20px; }

/* Galerija tema */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.theme-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 8px 26px rgba(43, 38, 32, 0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.theme-card { position: relative; overflow: visible; }

.theme-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* Zlatni broj teme — viri iznad kartice, sa leve strane */
.tc-badge {
  position: absolute;
  top: -16px;
  left: -12px;
  z-index: 6;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  background: radial-gradient(circle at 32% 28%, #d3a53f, #96690f);
  border: 2.5px solid #fffdf8;
  box-shadow: 0 8px 20px rgba(80, 55, 10, 0.45);
}

/* "Najbiranija tema" traka */
.tc-pick {
  position: absolute;
  top: -12px;
  right: 14px;
  z-index: 6;
  background: #2b2620;
  color: #f5e3bd;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.theme-body { padding: 22px; text-align: center; }

.theme-body h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 6px; }

.theme-body p { color: var(--muted); font-size: 0.88rem; margin-bottom: 16px; }

.theme-body .btn { padding: 10px 24px; font-size: 0.74rem; }

/* Elementi (galerija funkcija) */
.elements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.element-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.element-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.element-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}

.element-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 8px; }

.element-card p { color: var(--muted); font-size: 0.92rem; }

/* Cenovnik */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; max-width: 860px; margin: 0 auto; }

.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
  position: relative;
}

.price-card.featured { border: 2px solid var(--gold); box-shadow: var(--shadow); }

.price-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
}

.price-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 6px; }

.price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold);
  margin: 14px 0 22px;
}

.price small { font-size: 1rem; color: var(--muted); }

.price-card ul { list-style: none; text-align: left; margin-bottom: 28px; }

.price-card li { padding: 8px 0; border-bottom: 1px dashed var(--line); color: var(--muted); font-size: 0.94rem; }

.price-card li::before { content: "✓"; color: var(--gold); margin-right: 10px; }

/* CTA traka */
.cta-band {
  background: linear-gradient(135deg, #2b2620, #4a3f30);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 600; margin-bottom: 12px; }

.cta-band p { color: rgba(255, 255, 255, 0.72); margin-bottom: 30px; }

/* Kontakt dugmad */
.contact-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #fff;
  transition: transform 0.2s;
}

.chat-btn:hover { transform: translateY(-2px); }

.chat-btn.whatsapp {
  background: #17a34a;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 14px 30px;
  box-shadow: 0 10px 26px rgba(23, 163, 74, 0.35);
}

.chat-btn.whatsapp:hover { background: #128a3d; }

/* Kako poručiti — koraci sa slikama */
.howto-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.howto-step:last-of-type { border-bottom: none; }

.howto-step:nth-child(even) .howto-visual { order: 2; }

.howto-visual {
  border-radius: var(--radius);
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 36px;
  text-align: center;
}

.howto-visual.v1 { background: linear-gradient(160deg, #f6ecd9, #e6d2ae); }
.howto-visual.v2 { background: linear-gradient(160deg, #eef0f6, #d3d9ea); }
.howto-visual.v3 { background: linear-gradient(160deg, #f2edf8, #ddd0ef); }

.howto-text .step-num { margin: 0 0 20px; }

.howto-text h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; margin-bottom: 12px; }

.howto-text p { color: var(--muted); margin-bottom: 20px; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 26px;
  margin-bottom: 14px;
}

.faq summary {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::after { content: "+"; color: var(--gold); font-size: 1.4rem; font-family: var(--font-body); }

.faq details[open] summary::after { content: "–"; }

.faq details p { color: var(--muted); padding-top: 12px; font-size: 0.96rem; }

/* Footer */
.footer {
  background: #1d1a16;
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 30px;
  font-size: 0.9rem;
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }

.footer .logo { color: #fff; margin-bottom: 14px; display: block; }

.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer ul { list-style: none; }

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

.footer a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Made with love in Kosova */
.footer-love {
  text-align: center;
  padding: 18px 0 4px;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78);
}

.footer-love .love-heart { color: #e25555; }

.footer-love img {
  height: 15px;
  vertical-align: -2px;
  margin-left: 7px;
  border-radius: 2px;
  display: inline-block;
}

/* Animacija pri skrolu */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 56px; }
  .hero p { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .steps, .features, .elements-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .models, .pricing { grid-template-columns: 1fr; }
  .howto-step { grid-template-columns: 1fr; gap: 30px; }
  .howto-step:nth-child(even) .howto-visual { order: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 14px; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  .steps, .features, .gallery, .elements-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

/* ============================================================
   V2 — mockup kartice, CRO sekcije, sticky CTA
   ============================================================ */

/* "Made with love in Kosova" bedž u heroju */
.hero-kosova {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  box-shadow: 0 6px 16px rgba(43, 38, 32, 0.06);
}

.hero-kosova .love-heart { color: #c94f4f; }
.hero-kosova img { height: 13px; width: auto; border-radius: 2px; }

@media (max-width: 960px) {
  .hero-kosova { margin-inline: auto; }
}

/* Ocena 5/5 u heroju (social proof) */
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-rating .stars { color: #e0a828; letter-spacing: 3px; font-size: 1.05rem; }
.hero-rating span { font-size: 0.85rem; color: var(--muted); }

@media (max-width: 960px) {
  .hero-rating { justify-content: center; }
}

/* Trust čipovi ispod hero CTA */
.trust-chips { display: flex; gap: 10px 22px; flex-wrap: wrap; margin-top: 22px; }
.trust-chips span { font-size: 0.82rem; color: var(--muted); }
.trust-chips b { color: var(--gold); font-weight: 500; }

/* iPhone 16 mockup (slike ubacujete ručno u img/) */
.mock-phone {
  position: relative;
  background: linear-gradient(150deg, #4a4a4d, #232326 40%, #17171a);
  border-radius: 46px;
  padding: 9px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.16),
    inset 0 0 0 4px #0c0c0e,
    0 18px 44px rgba(43, 38, 32, 0.24);
}

/* Dynamic Island */
.mock-phone::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 20px;
  background: #060608;
  border-radius: 999px;
  z-index: 3;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.06);
}

/* Bočno dugme */
.mock-phone::after {
  content: "";
  position: absolute;
  right: -2.5px;
  top: 26%;
  width: 2.5px;
  height: 56px;
  background: #2c2c2f;
  border-radius: 0 3px 3px 0;
}

.mock-phone img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 37px;
  display: block;
}

/* ŽIVI mockup — prava pozivnica se skroluje unutar telefona */
.mock-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 37px;
  overflow: hidden;
  background: #f6f1e8;
}

.mock-screen iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 375px;
  height: 812px;
  border: 0;
  pointer-events: none;
  transform-origin: top left;
}

/* Interaktivni mockup — gost može SAM da skroluje pozivnicu u telefonu */
.mock-interactive .mock-screen iframe { pointer-events: auto; }

.mock-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: rgba(30, 25, 18, 0.72);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 999px;
  pointer-events: none;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  animation: hintPulse 2.4s ease-in-out infinite;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.95; }
}

.mock-phone:hover .mock-hint { opacity: 0; animation: none; transition: opacity 0.4s; }

/* Browser adresna traka u telefonu (hero) */
.mock-phone.with-url::before { display: none; } /* Dynamic Island ustupa mesto traci */

.mock-url {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 12px 12px 8px;
  padding: 8px 16px;
  background: #f3eee3;
  border-radius: 999px;
  font-size: 0.72rem;
  color: #7d7468;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.07);
}

.mock-url b { color: #2b2620; font-weight: 500; }
.mock-url .mu-lock { font-size: 0.65rem; }

.mock-phone.with-url .mock-screen {
  aspect-ratio: 9 / 17.8;
  border-radius: 8px 8px 37px 37px;
}

/* Na touch uređajima unutrašnji skrol mockupa se gasi — prst pomera STRANICU,
   ne pozivnicu u telefonu (gost bi inače "zaglavio" u iframe skrolu) */
@media (hover: none) {
  .mock-interactive iframe { pointer-events: none !important; }
  .mock-hint { display: none; }
}

/* Telefon u hero sekciji — lagano lebdi */
@keyframes phoneFloat {
  from { transform: rotate(2.5deg) translateY(0); }
  to   { transform: rotate(2.5deg) translateY(-10px); }
}

.hero-live { text-align: center; }

.hero-live .mock-phone {
  max-width: 300px;
  margin: 0 auto;
  animation: phoneFloat 4.5s ease-in-out infinite alternate;
}

.hero-live-note {
  margin-top: 22px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Value stack (šta sve dobijate) */
.value-stack {
  max-width: 560px;
  margin: 0 auto 50px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 34px;
  list-style: none;
}

.value-stack li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.value-stack li s { color: var(--gold); opacity: 0.85; white-space: nowrap; }

.value-stack .value-total {
  border-bottom: none;
  padding-top: 16px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.value-stack .value-total em { color: var(--gold); font-style: normal; }

/* Tabela poređenja (štampane vs digitalne) */
.compare-wrap { overflow-x: auto; }

.compare {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare th, .compare td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}

.compare thead th {
  background: #2b2620;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: 0.84rem;
}

.compare thead th:last-child { color: var(--gold-light); }
.compare td:first-child { color: var(--muted); }
.compare td.no { color: #b05b5b; }
.compare td.yes { color: #3f7d3f; }

/* Testimonijali — traka koja se skroluje (snap) */
.testimonials {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 4px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-pale) transparent;
}

.testimonials::-webkit-scrollbar { height: 6px; }
.testimonials::-webkit-scrollbar-thumb { background: var(--gold-pale); border-radius: 999px; }

.testimonial {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}

/* Strelice karusela */
.testi-wrap { position: relative; }

.t-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--paper);
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(43, 38, 32, 0.14);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.t-arrow:hover { background: var(--gold); color: #fff; transform: translateY(-50%) scale(1.06); }
.t-arrow.prev { left: -14px; }
.t-arrow.next { right: -14px; }

/* Avatar para (inicijali) */
.t-head { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }

.t-avatar {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  background: linear-gradient(135deg, #d3a53f, #96690f);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.testimonial:nth-child(2) .t-avatar { background: linear-gradient(135deg, #a98cd6, #5c4a80); }
.testimonial:nth-child(3) .t-avatar { background: linear-gradient(135deg, #e8a35c, #b35c10); }
.testimonial:nth-child(4) .t-avatar { background: linear-gradient(135deg, #7fa8c4, #35586b); }
.testimonial:nth-child(5) .t-avatar { background: linear-gradient(135deg, #c98ba6, #8a4a63); }
.testimonial:nth-child(6) .t-avatar { background: linear-gradient(135deg, #8fbc94, #4a7050); }

.t-head .t-name { font-family: var(--font-display); font-weight: 600; margin: 0; }
.t-head .t-meta { font-size: 0.8rem; color: var(--muted); margin: 0; }

/* CTA ponuda sa tajmerom */
.cta-offer {
  max-width: 460px;
  margin: 0 auto 30px;
  padding: 22px 26px;
  border: 1px solid rgba(217, 188, 130, 0.4);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.cta-offer-text { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; margin-bottom: 16px !important; }
.cta-offer-text b { color: var(--gold-light); font-weight: 600; }

.cta-timer { display: flex; justify-content: center; gap: 10px; }

.cta-timer div {
  min-width: 64px;
  padding: 10px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
}

.cta-timer b {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--gold-light);
  line-height: 1.1;
}

.cta-timer small {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 480px) {
  .t-arrow.prev { left: -6px; }
  .t-arrow.next { right: -6px; }
  .cta-timer div { min-width: 56px; }
}

.testimonial .stars { color: #e0a828; letter-spacing: 3px; margin-bottom: 12px; }
.testimonial p { color: var(--muted); font-size: 0.95rem; font-style: italic; margin-bottom: 16px; }
.testimonial .t-name { font-family: var(--font-display); font-weight: 600; }
.testimonial .t-meta { font-size: 0.8rem; color: var(--muted); }

/* Garancija */
.guarantee {
  display: flex;
  gap: 18px;
  align-items: center;
  max-width: 640px;
  margin: 44px auto 0;
  background: var(--gold-pale);
  border-radius: var(--radius);
  padding: 22px 26px;
}

.guarantee .g-icon { font-size: 2rem; flex: none; }
.guarantee p { font-size: 0.94rem; }
.guarantee b { font-weight: 500; color: var(--gold); }

/* Bedž hitnosti */
.urgency {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 26px;
}

.urgency b { color: var(--gold); font-weight: 500; }

/* Sticky CTA (mobilni) */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}

.sticky-cta .btn { width: 100%; text-align: center; }

@media (max-width: 760px) {
  .sticky-cta { display: block; }
  body.has-sticky-cta { padding-bottom: 76px; }
  .testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 960px) and (min-width: 761px) {
  .testimonials { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Polish sloj — dosledni detalji kroz ceo sajt
   ============================================================ */

::selection { background: var(--gold-pale); color: var(--ink); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.btn:active { transform: translateY(0) scale(0.985); }

/* Podvlaka u navigaciji koja "izraste" */
@media (min-width: 861px) {
  .nav-links a { position: relative; padding-bottom: 4px; }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.5px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
}

/* Ujednačene senke i prelazi kartica */
.theme-card, .model, .price-card, .element-card, .step, .feature, .testimonial {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Manje kretanja za korisnike koji to traže */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .step:hover, .theme-card:hover, .element-card:hover { transform: none; }
}
