/* ============================================================
   QR Uspomena — premium event album landing
   Palette: warm ivory, deep forest ink, antique gold
   ============================================================ */

:root {
  --ivory:        #f6f1e8;
  --ivory-deep:   #efe7d8;
  --paper:        #fffdf8;
  --ink:          #1a241d;
  --ink-soft:     #3c4a40;
  --ink-mute:     #6c7669;
  --line:         #ddd2bf;
  --forest:       #2c3d31;
  --forest-deep:  #1f2c24;
  --gold:         #b08d57;
  --gold-bright:  #c9a86a;
  --gold-soft:    #e7d9bd;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --r:    18px;
  --r-sm: 12px;
  --shadow-sm: 0 2px 14px rgba(31,44,36,.06);
  --shadow:    0 24px 60px -28px rgba(31,44,36,.30);
  --shadow-lg: 0 40px 90px -40px rgba(31,44,36,.45);
  --ease: cubic-bezier(.2,.7,.2,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: .002em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* subtle paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--gold); color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- typographic atoms ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -.01em; }
.serif-it { font-style: italic; }
.gold-text { color: var(--gold); }

.section { position: relative; padding: clamp(72px, 11vw, 140px) 0; z-index: 2; }
.section-head { max-width: 640px; margin: 0 auto clamp(40px, 6vw, 72px); text-align: center; }
.section-head h2 { font-size: clamp(34px, 5.6vw, 60px); margin: 18px 0 0; }
.section-head p { margin-top: 20px; color: var(--ink-mute); font-size: 18px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 16px 28px;
  border-radius: 100px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--forest);
  color: #f3ecdd;
  box-shadow: 0 14px 30px -14px rgba(44,61,49,.7);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 42px -16px rgba(44,61,49,.75); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #271d0c;
  box-shadow: 0 14px 30px -14px rgba(176,141,87,.8);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 24px 46px -16px rgba(176,141,87,.85); }
.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: rgba(255,253,248,.5);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(246,241,232,.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
  padding: 14px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 22px; letter-spacing: -.01em; }
.brand .mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--forest);
  display: grid; place-items: center;
  color: var(--gold-bright);
  flex: none;
}
.brand .mark svg { width: 22px; height: 22px; }
.brand b { font-weight: 600; }
.brand span { color: var(--gold); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--ink-soft); position: relative; transition: color .25s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 14px; }

/* language switch HR / EN / DE */
.lang-switch {
  display: inline-flex; align-items: center;
  background: rgba(44,61,49,.06);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}
.lang-switch button {
  font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .03em;
  color: var(--ink-mute);
  padding: 6px 12px; border-radius: 100px; cursor: pointer;
  background: transparent; border: none; line-height: 1;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.active {
  background: var(--forest); color: #f3ecdd;
  box-shadow: 0 4px 12px -6px rgba(44,61,49,.6);
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 168px 0 90px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 60% at 85% 0%, rgba(176,141,87,.10), transparent 70%),
    radial-gradient(50% 50% at 0% 100%, rgba(44,61,49,.07), transparent 70%);
}
/* floating botanical lines */
.hero-leaf { position: absolute; opacity: .5; z-index: 0; color: var(--forest); }
.hero-leaf.tl { top: 90px; left: -40px; width: 230px; transform: rotate(-8deg); opacity: .14; }
.hero-leaf.br { bottom: -30px; right: -30px; width: 260px; transform: scaleX(-1) rotate(-6deg); opacity: .12; }

.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 600px; }
.hero h1 {
  font-size: clamp(44px, 6.6vw, 84px);
  margin: 22px 0 0;
}
.hero h1 em { color: var(--gold); }
.hero-sub {
  margin-top: 26px;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
  max-width: 500px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-geo {
  margin-top: 26px;
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
}
.hero-geo svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
.hero-trust {
  margin-top: 34px;
  display: flex; align-items: center; gap: 16px;
  color: var(--ink-mute); font-size: 14.5px;
}
.hero-trust .stars { color: var(--gold); letter-spacing: 2px; font-size: 16px; }
.hero-trust .divider { width: 1px; height: 26px; background: var(--line); }

/* ---- hero visual: framed QR sign ---- */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 480px; }

/* soft warm glow behind the sign so it melts into the ivory backdrop */
.hero-visual::before {
  content: ""; position: absolute; z-index: 0;
  width: 118%; height: 92%; left: 50%; top: 50%; transform: translate(-50%, -46%);
  background: radial-gradient(60% 55% at 50% 45%, rgba(201,168,106,.28), rgba(201,168,106,0) 70%);
  filter: blur(6px); pointer-events: none;
}

.hero-sign {
  position: relative;
  z-index: 3;
  width: 340px; max-width: 82%;
  padding: 14px;
  background: linear-gradient(180deg, var(--paper), var(--ivory));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.5) inset;
  transform: rotate(-1.4deg);
  animation: floaty 7s var(--ease) infinite;
}
/* thin antique-gold inner frame line, echoing the printed card */
.hero-sign::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid var(--gold-soft); border-radius: 12px; pointer-events: none;
}
.hero-sign img {
  width: 100%; height: auto; display: block;
  border-radius: 12px;
}

/* "uživo se puni" pill floating at the base */
.hero-live {
  position: absolute; z-index: 5;
  left: 50%; bottom: -14px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 10px 18px; border-radius: 100px;
  font-size: 12.5px; font-weight: 700; color: var(--forest);
  box-shadow: var(--shadow); white-space: nowrap;
}
.hero-live .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold-bright);
  box-shadow: 0 0 0 0 rgba(201,168,106,.6); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201,168,106,.55); }
  70% { box-shadow: 0 0 0 9px rgba(201,168,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,106,0); }
}

.scan-badge {
  position: absolute; left: -6px; top: 26px; z-index: 6;
  background: var(--forest); color: #f3ecdd;
  padding: 10px 16px; border-radius: 100px; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
  animation: floaty 6s var(--ease) infinite reverse;
}
.scan-badge svg { width: 16px; height: 16px; color: var(--gold-bright); }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-1.4deg); } 50% { transform: translateY(-12px) rotate(-1.4deg); } }

/* logos / trust strip */
.marquee-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ivory-deep); padding: 22px 0; z-index: 2; position: relative; overflow: hidden; }
.marquee { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee-strip:hover .marquee { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; gap: 48px; padding-left: 48px; color: var(--ink-mute); font-size: 15px; letter-spacing: .04em; white-space: nowrap; }
.marquee b { font-family: var(--serif); font-style: italic; color: var(--forest); font-weight: 500; }
.marquee .sep { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } }
.marquee .sep { color: var(--gold); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 40px 30px 34px;
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.step .num {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--gold); letter-spacing: .1em;
}
.step .ic {
  width: 72px; height: 72px; margin: 14px auto 22px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--ivory), var(--gold-soft));
  display: grid; place-items: center; color: var(--forest);
  box-shadow: inset 0 0 0 1px rgba(176,141,87,.25);
}
.step .ic svg { width: 32px; height: 32px; }
.step h3 { font-size: 23px; margin-bottom: 10px; }
.step p { color: var(--ink-mute); font-size: 15.5px; }

/* ============================================================
   OCCASIONS
   ============================================================ */
.occasions { background: var(--forest); color: #ece4d4; }
.occasions .eyebrow { color: var(--gold-bright); }
.occasions .eyebrow::before, .occasions .eyebrow::after { background: var(--gold-bright); }
.occasions .section-head h2 { color: #f4eede; }
.occasions .section-head p { color: rgba(236,228,212,.7); }
.occ-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.occ {
  position: relative;
  border-radius: var(--r);
  padding: 32px 28px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
  transition: transform .4s var(--ease), background .4s, border-color .4s;
}
.occ::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 0% 0%, rgba(176,141,87,.18), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.occ:hover { transform: translateY(-6px); background: rgba(255,255,255,.06); border-color: rgba(201,168,106,.5); }
.occ:hover::before { opacity: 1; }
.occ .ic { width: 46px; height: 46px; color: var(--gold-bright); margin-bottom: 18px; position: relative; }
.occ .ic svg { width: 100%; height: 100%; }
.occ h3 { font-size: 22px; color: #f4eede; margin-bottom: 8px; position: relative; }
.occ p { font-size: 14.5px; color: rgba(236,228,212,.66); position: relative; }

/* ============================================================
   FEATURES / WHY
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feat {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.feat .ic {
  flex: none; width: 52px; height: 52px; border-radius: 13px;
  background: linear-gradient(160deg, var(--gold-soft), #fff);
  display: grid; place-items: center; color: var(--forest);
  box-shadow: inset 0 0 0 1px rgba(176,141,87,.3);
}
.feat .ic svg { width: 26px; height: 26px; }
.feat h3 { font-size: 20px; margin-bottom: 5px; }
.feat p { font-size: 15px; color: var(--ink-mute); }

/* ============================================================
   DEMO / QR SECTION
   ============================================================ */
.demo { background: var(--ivory-deep); }
.demo-card {
  display: grid; grid-template-columns: 320px 1fr; gap: clamp(30px, 5vw, 70px);
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 56px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.demo-card::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(176,141,87,.12), transparent 70%);
}
.demo-qr {
  position: relative; z-index: 2;
  background: #fff; border-radius: 20px; padding: 22px;
  box-shadow: 0 18px 40px -22px rgba(31,44,36,.4);
  border: 1px solid var(--line);
  text-align: center;
}
.demo-qr .qbox { width: 100%; aspect-ratio: 1; display: grid; place-items: center; }
.demo-qr .qbox img, .demo-qr .qbox canvas { width: 100%; height: 100%; }

/* "Skeniraj me" label above the QR */
.qr-top-cap {
  display: block; text-align: center; margin-bottom: 14px;
  font-size: 13px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}

/* clickable "try it" QR */
.qr-try { display: block; cursor: pointer; text-decoration: none; }
.qr-try .qbox { transition: transform .3s var(--ease); }
.qr-try:hover .qbox { transform: scale(1.03); }
.qr-try-cap {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest); color: #f3ecdd;
  padding: 10px 18px; border-radius: 100px;
  font-size: 14px; font-weight: 700; letter-spacing: .02em;
  box-shadow: 0 10px 24px -14px rgba(31,44,36,.6);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.qr-try-cap svg { width: 17px; height: 17px; color: var(--gold-bright); flex: none; }
.qr-try:hover .qr-try-cap { transform: translateY(-2px); background: var(--forest-deep); }
.demo-info { position: relative; z-index: 2; }
.demo-info h2 { font-size: clamp(30px, 4.4vw, 46px); margin: 16px 0 14px; }
.demo-info p { color: var(--ink-soft); font-size: 17px; margin-bottom: 14px; }
.demo-info .demo-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.demo-note { margin-top: 18px; font-size: 13.5px; color: var(--ink-mute); display: flex; align-items: center; gap: 8px; }
.demo-note svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 38px 32px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.plan.featured {
  background: var(--forest);
  color: #ece4d4;
  border-color: var(--forest);
  transform: scale(1.02);
  box-shadow: var(--shadow);
}
.plan.featured:hover { transform: scale(1.02) translateY(-8px); }
.plan .tag { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.plan.featured .tag { color: var(--gold-bright); }
.plan .ribbon {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #271d0c; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 14px;
}
.plan h3 { font-size: 28px; margin: 8px 0 4px; }
.plan.featured h3 { color: #f4eede; }
.plan .price { font-family: var(--serif); font-size: 46px; margin: 14px 0 2px; }
.plan .price small { font-size: 16px; color: var(--ink-mute); font-family: var(--sans); }
.plan.featured .price small { color: rgba(236,228,212,.6); }
.plan .price-sub { font-size: 14px; color: var(--ink-mute); margin-bottom: 22px; }
.plan.featured .price-sub { color: rgba(236,228,212,.6); }
.plan ul { list-style: none; margin: 0 0 28px; display: grid; gap: 13px; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.plan.featured li { color: rgba(236,228,212,.85); }
.plan li svg { width: 19px; height: 19px; flex: none; color: var(--gold); margin-top: 2px; }
.plan.featured li svg { color: var(--gold-bright); }
.plan .btn { margin-top: auto; }

/* single fixed-price card */
.price-single {
  display: grid; grid-template-columns: .85fr 1.15fr;
  max-width: 880px; margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ps-left {
  background: var(--forest);
  color: #ece4d4;
  padding: clamp(32px, 4vw, 50px);
  display: flex; flex-direction: column; align-items: flex-start;
  position: relative;
}
.ps-left::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(176,141,87,.22), transparent 60%);
  pointer-events: none;
}
.ps-left > * { position: relative; z-index: 1; }
.ps-left .ribbon { margin-bottom: 22px; }
.ps-price { display: flex; align-items: flex-start; gap: 4px; }
.ps-price .amt { font-family: var(--serif); font-size: clamp(64px, 9vw, 86px); line-height: 1; color: #f6efdf; }
.ps-sub { color: rgba(236,228,212,.7); font-size: 15px; margin: 8px 0 28px; }
.ps-left .btn { width: 100%; margin-bottom: 16px; }
.ps-note { font-size: 13.5px; color: rgba(236,228,212,.62); line-height: 1.5; }
.ps-right { padding: clamp(32px, 4vw, 50px); }
.ps-right h3 { font-size: 24px; margin-bottom: 22px; }
.ps-right ul { list-style: none; display: grid; gap: 16px; }
.ps-right li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.ps-right li svg { width: 20px; height: 20px; flex: none; color: var(--gold); margin-top: 2px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tst {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 30px;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tst:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.tst .quote { font-family: var(--serif); font-size: 64px; line-height: .6; color: var(--gold-soft); height: 30px; }
.tst .stars { color: var(--gold); letter-spacing: 2px; margin: 6px 0 14px; }
.tst p { font-size: 16px; color: var(--ink-soft); font-style: italic; }
.tst .who { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.tst .av {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--forest), var(--gold));
  display: grid; place-items: center; color: #fff; font-weight: 700; font-family: var(--serif);
}
.tst .who b { font-size: 15px; font-weight: 700; display: block; }
.tst .who span { font-size: 13px; color: var(--ink-mute); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px;
  font-family: var(--serif); font-size: clamp(19px, 2.5vw, 24px); color: var(--ink);
}
.faq-q .pm { flex: none; width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: .3s; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; }
.faq-q .pm::before { width: 13px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 13px; transition: transform .3s var(--ease); }
.faq-item.open .pm { border-color: var(--gold); background: var(--gold); }
.faq-item.open .pm::before, .faq-item.open .pm::after { background: #fff; }
.faq-item.open .pm::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 4px 28px; color: var(--ink-mute); font-size: 16px; max-width: 680px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta {
  position: relative; overflow: hidden;
  background: var(--forest-deep);
  color: #f1e9d8;
  text-align: center;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 50% 0%, rgba(176,141,87,.22), transparent 65%);
}
.cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta h2 { font-size: clamp(34px, 5.6vw, 62px); margin: 18px 0 18px; color: #f6efdf; }
.cta p { color: rgba(241,233,216,.75); font-size: 19px; margin-bottom: 36px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* booking form */
.booking {
  margin-top: 34px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(241,233,216,.16);
  border-radius: var(--r);
  padding: 26px 24px 22px;
  text-align: left;
  backdrop-filter: blur(2px);
}
.bk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.bk-field { display: flex; flex-direction: column; gap: 7px; }
.bk-full { grid-column: 1 / -1; }
.bk-field label { font-size: 13px; font-weight: 700; letter-spacing: .03em; color: #e7dcc4; }
.bk-field label .opt { font-weight: 500; color: rgba(231,220,196,.55); }
.bk-field input,
.bk-field select {
  font-family: var(--sans); font-size: 16px; color: #f6efdf;
  background: rgba(15,22,17,.5);
  border: 1px solid rgba(241,233,216,.22);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.bk-field input::placeholder { color: rgba(231,220,196,.4); }
.bk-field input:focus,
.bk-field select:focus {
  outline: none;
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(201,168,106,.18);
}
.bk-field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23c9a86a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.bk-field select option { color: #1a241d; }
.bk-field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) sepia(1) saturate(3) hue-rotate(5deg); cursor: pointer; }
.booking .cta-actions { margin-top: 4px; }
.bk-hint { color: rgba(241,233,216,.6); font-size: 13.5px; margin: 16px 0 0; text-align: center; }
.bk-field.err input, .bk-field.err select { border-color: #e07a5f; box-shadow: 0 0 0 3px rgba(224,122,95,.15); }

/* booking success state */
.bk-success {
  margin-top: 34px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(241,233,216,.18);
  border-radius: var(--r);
  padding: 40px 26px;
  text-align: center;
  animation: bkPop .5s var(--ease) both;
}
.bk-success-ic {
  width: 62px; height: 62px; margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(201,168,106,.16);
  border: 1px solid rgba(201,168,106,.4);
}
.bk-success-ic svg { width: 30px; height: 30px; color: var(--gold-bright); }
.bk-success h3 { font-family: var(--serif); font-style: italic; font-size: clamp(26px, 4vw, 34px); color: #f6efdf; margin-bottom: 8px; font-weight: 500; }
.bk-success p { color: rgba(241,233,216,.75); font-size: 18px; margin: 0; }
@keyframes bkPop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--forest-deep); color: #cdbfa6; padding: 70px 0 36px; position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,.06); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.foot-brand .brand { color: #f3ecdd; margin-bottom: 16px; }
.foot-brand p { font-size: 15px; max-width: 320px; color: rgba(205,191,166,.75); }
.foot-social { display: flex; gap: 12px; margin-top: 20px; }
.foot-social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.14);
  color: #e7d9bd; background: rgba(255,255,255,.03);
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.foot-social a:hover { transform: translateY(-3px); background: var(--gold); border-color: var(--gold); color: var(--forest-deep); }
.foot-social svg { width: 19px; height: 19px; }
.foot-col h4 { font-family: var(--sans); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 18px; font-weight: 700; }
.foot-col a, .foot-col p { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(205,191,166,.85); margin-bottom: 12px; transition: color .25s; }
.foot-col a:hover { color: #f3ecdd; }
.foot-col svg { width: 17px; height: 17px; color: var(--gold); flex: none; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 26px; font-size: 13.5px; color: rgba(205,191,166,.6); flex-wrap: wrap; }
.foot-bottom a { color: var(--gold-bright); }

/* ---------- floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,.6);
  transition: transform .3s var(--ease);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.1) rotate(4deg); }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { order: -1; min-height: 440px; }
  .hero-copy { max-width: 100%; }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .occ-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .demo-card { grid-template-columns: 1fr; }
  .demo-qr { max-width: 280px; margin: 0 auto; }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .price-single { grid-template-columns: 1fr; max-width: 440px; }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-8px); }
  .tst-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }

  /* no hamburger on mobile — only the language switch stays in the header */
  .nav-links, .nav-cta-btn { display: none; }
  .lang-switch button { padding: 7px 12px; font-size: 13.5px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .occ-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero-actions .btn, .cta-actions .btn, .demo-actions .btn { width: 100%; justify-content: center; }
  .hero-sign { width: 280px; }
  .scan-badge { top: 14px; font-size: 12px; }
  .hero-live { font-size: 11.5px; padding: 9px 15px; }
  .bk-grid { grid-template-columns: 1fr; }
  .booking { padding: 22px 16px 18px; }
  .foot-bottom { flex-direction: column; text-align: center; }
}
