:root{
  --bg:#07111f;
  --bg-2:#0b1728;
  --bg-3:#0f2035;
  --surface:rgba(255,255,255,.08);
  --surface-2:rgba(255,255,255,.12);
  --surface-3:rgba(255,255,255,.16);
  --line:rgba(255,255,255,.12);
  --line-strong:rgba(255,255,255,.18);
  --text:#f5f7fb;
  --muted:#aab6c9;
  --muted-2:#8fa0b7;
  --accent:#74c0fc;
  --accent-2:#8b5cf6;
  --accent-3:#22d3ee;
  --success:#8ef7c7;
  --shadow:0 24px 80px rgba(0,0,0,.34);
  --glass-blur:18px;
  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;
  --radius-sm:14px;
  --max:1240px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(34,211,238,.15), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(139,92,246,.18), transparent 30%),
    radial-gradient(circle at 55% 75%, rgba(116,192,252,.13), transparent 30%),
    linear-gradient(140deg, var(--bg) 0%, var(--bg-2) 45%, var(--bg-3) 100%);
  min-height:100vh;
  overflow-x:hidden;
}

body.menu-open{
  overflow:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  max-width:100%;
}

button,
input{
  font-family:'Poppins',sans-serif;
}

h1,h2,h3{
  font-family:'Playfair Display',serif;
  letter-spacing:-.03em;
}

main{
  position:relative;
  z-index:1;
}

/* =========================
   GLOBAL GLASS
========================= */

.feature-card,
.step-card,
.price-card,
.faq-item,
.contact-card,
.demo-cta,
.event-jump,
.phone-card,
.floating-card,
.mini-phone{
  background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.05));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  backdrop-filter:blur(var(--glass-blur));
  -webkit-backdrop-filter:blur(var(--glass-blur));
}

/* =========================
   HEADER
========================= */

.site-header{
  position:sticky;
  top:0;
  z-index:1200;
  width:min(var(--max), calc(100% - 24px));
  margin:14px auto 0;
  min-height:76px;
  padding:14px 18px;
  border-radius:24px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;

  background:rgba(10,18,30,.56);
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 16px 46px rgba(0,0,0,.28);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.logo strong{
  color:#fff;
  font-weight:900;
  letter-spacing:-.02em;
}
.logo-icon{
  width:42px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:16px;

  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.14);

  box-shadow:
    0 10px 28px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.16);

  overflow:hidden;
}

.logo-icon img{
  width:28px;
  height:28px;
  object-fit:contain;
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:22px;
}

.desktop-nav a{
  color:var(--muted);
  font-size:14px;
  font-weight:700;
  transition:.2s ease;
  position:relative;
}

.desktop-nav a:hover{
  color:#fff;
}

.desktop-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width:0;
  height:2px;
  border-radius:99px;
  background:linear-gradient(90deg, var(--accent), var(--accent-2));
  transition:.2s ease;
}

.desktop-nav a:hover::after{
  width:100%;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.header-login{
  padding:12px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  color:#d9e4f3;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  transition:.2s ease;
}

.header-login:hover{
  background:rgba(255,255,255,.1);
  color:#fff;
}

.header-cta{
  padding:12px 18px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  color:#031220;
  background:linear-gradient(135deg, #a5f3fc, #93c5fd 55%, #c4b5fd);
  box-shadow:0 14px 34px rgba(116,192,252,.25);
  transition:.2s ease;
}

.header-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 42px rgba(116,192,252,.3);
}

.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:none;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  cursor:pointer;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
}

.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  border-radius:99px;
  background:#fff;
}

.mobile-menu-backdrop{
  position:fixed;
  inset:0;
  z-index:1190;
  background:rgba(2,8,18,.52);
  opacity:0;
  pointer-events:none;
  transition:.24s ease;
}

.mobile-menu-backdrop.show{
  opacity:1;
  pointer-events:auto;
}

.mobile-menu{
  position:fixed;
  top:16px;
  right:16px;
  left:16px;
  z-index:1201;
  padding:18px;
  border-radius:26px;
  background:rgba(8,16,28,.92);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 30px 90px rgba(0,0,0,.4);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  transform:translateY(-20px);
  opacity:0;
  pointer-events:none;
  transition:.24s ease;
}

.mobile-menu.open{
  transform:translateY(0);
  opacity:1;
  pointer-events:auto;
}

.mobile-menu-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}

.mobile-menu-title{
  font-size:18px;
  font-weight:800;
  color:#fff;
}

.mobile-menu-close{
  width:42px;
  height:42px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
}

.mobile-nav{
  display:grid;
  gap:10px;
}

.mobile-nav a{
  padding:14px 16px;
  border-radius:16px;
  color:#dbe6f5;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  font-weight:700;
}

.mobile-menu-actions{
  display:grid;
  gap:10px;
  margin-top:16px;
}

/* =========================
   BUTTONS
========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 22px;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  transition:.2s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn.primary{
  color:#031220;
  background:linear-gradient(135deg, #a5f3fc, #93c5fd 55%, #c4b5fd);
  box-shadow:0 16px 40px rgba(116,192,252,.22);
}

.btn.secondary{
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}

.btn.ghost{
  color:#dce6f4;
  background:transparent;
  border:1px solid rgba(255,255,255,.14);
}

.btn.light{
  color:#07111f;
  background:rgba(255,255,255,.92);
  box-shadow:0 14px 34px rgba(0,0,0,.16);
}

.btn.full{
  width:100%;
}

/* =========================
   HERO
========================= */

.hero{
  position:relative;
  width:min(var(--max), calc(100% - 36px));
  margin:22px auto 0;
  min-height:calc(100vh - 120px);

  display:grid;
  grid-template-columns:1.02fr .98fr;
  align-items:center;
  gap:54px;

  padding:50px 8px 70px;
}

.hero-bg-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(30px);
  pointer-events:none;
}

.hero-bg-glow.one{
  width:320px;
  height:320px;
  top:10%;
  left:2%;
  background:rgba(34,211,238,.15);
}

.hero-bg-glow.two{
  width:360px;
  height:360px;
  right:4%;
  bottom:6%;
  background:rgba(139,92,246,.18);
}

.hero-content{
  position:relative;
  z-index:2;
}

.eyebrow,
.section-head span,
.demo-cta span,
.mini-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:16px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#cfe7ff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
}

.hero h1{
  font-size:clamp(42px, 6vw, 84px);
  line-height:.96;
  color:#fff;
  max-width:780px;
}

.hero h1 span{
  display:block;
  background:linear-gradient(135deg, #a5f3fc 0%, #93c5fd 40%, #c4b5fd 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero-text{
  margin-top:24px;
  max-width:640px;
  font-size:18px;
  line-height:1.85;
  color:var(--muted);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

/* =========================
   EVENT JUMP
========================= */

.event-jump{
  max-width:620px;
  margin-top:28px;
  padding:20px;
  border-radius:28px;
}

.event-jump label{
  display:block;
  margin-bottom:10px;
  font-size:13px;
  color:#dbe7f4;
  font-weight:700;
}

.event-jump-row{
  display:flex;
  gap:10px;
}

.event-jump input{
  flex:1;
  min-width:0;
  height:54px;
  padding:0 16px;
  border:none;
  outline:none;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-size:14px;
  font-weight:600;
}

.event-jump input::placeholder{
  color:#8ea1bb;
}

.event-jump button{
  min-width:130px;
  height:54px;
  border:none;
  border-radius:18px;
  cursor:pointer;
  font-weight:800;
  color:#07111f;
  background:linear-gradient(135deg, #a5f3fc, #93c5fd);
}

.event-jump small{
  display:block;
  margin-top:10px;
  color:var(--muted-2);
}

/* =========================
   PHONE MOCKUP
========================= */

.hero-phone-wrap{
  position:relative;
  z-index:2;
  min-height:680px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.phone-card{
  position:relative;
  width:min(385px, 90vw);
  min-height:660px;
  padding:18px 14px 86px;
  border-radius:42px;
  overflow:hidden;
}

.phone-topbar{
  height:56px;
  margin-bottom:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:26px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  color:#eaf3ff;
  font-weight:800;
}

.phone-section{
  padding:16px;
  margin-bottom:14px;
  border-radius:24px;
  background:rgba(255,255,255,.06);
  text-align:center;
  border:1px solid rgba(255,255,255,.08);
}

.phone-section h3{
  color:#fff;
  font-size:24px;
}

.phone-section p{
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
}

.phone-stats{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:12px;
  flex-wrap:wrap;
}

.phone-stats span{
  padding:8px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  color:#dff1ff;
  font-size:12px;
  font-weight:800;
}

.phone-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
}

.phone-grid img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
}

.phone-nav{
  position:absolute;
  left:20px;
  right:20px;
  bottom:18px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:space-around;
  border-radius:22px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
}

.phone-nav span{
  font-size:22px;
  opacity:.42;
}

.phone-nav span.active{
  opacity:1;
}

.floating-card{
  position:absolute;
  padding:14px 16px;
  border-radius:20px;
  display:flex;
  flex-direction:column;
  gap:2px;
}

.floating-card b{
  color:#fff;
  font-size:14px;
}

.floating-card span{
  color:var(--muted);
  font-size:12px;
}

.upload-card-preview{
  left:0;
  top:20%;
}

.qr-card-preview{
  right:0;
  bottom:18%;
}

/* =========================
   SECTIONS
========================= */

.section{
  width:min(var(--max), calc(100% - 36px));
  margin:0 auto;
  padding:88px 8px;
}

.section-head{
  max-width:760px;
  margin:0 auto 42px;
  text-align:center;
}

.section-head h2,
.preview-text h2,
.demo-cta h2,
.contact-card h2{
  color:#fff;
  font-size:clamp(32px,4vw,54px);
  line-height:1.08;
}

.section-head p,
.preview-text p,
.demo-cta p,
.contact-card p{
  margin-top:14px;
  color:var(--muted);
  line-height:1.85;
}

/* =========================
   CARDS / GRIDS
========================= */

.cards-grid{
  display:grid;
  gap:18px;
}

.cards-grid.four{
  grid-template-columns:repeat(4,1fr);
}

.feature-card{
  padding:24px;
  border-radius:28px;
}

.feature-card .icon{
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  border:1px solid rgba(255,255,255,.12);
  font-size:26px;
}

.feature-card h3{
  margin-top:18px;
  color:#fff;
  font-size:24px;
}

.feature-card p{
  margin-top:10px;
  color:var(--muted);
  line-height:1.75;
  font-size:14px;
}

/* =========================
   HOW
========================= */

.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.step-card{
  padding:28px;
  border-radius:28px;
}

.step-number{
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg, #a5f3fc, #93c5fd, #c4b5fd);
  color:#06101f;
  font-weight:900;
}

.step-card h3{
  margin-top:18px;
  color:#fff;
  font-size:24px;
}

.step-card p{
  margin-top:10px;
  color:var(--muted);
  line-height:1.8;
}

/* =========================
   PREVIEW
========================= */

.preview-section{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  align-items:center;
  gap:48px;
}

.preview-text{
  max-width:620px;
}

.check-list{
  list-style:none;
  display:grid;
  gap:12px;
  margin:22px 0 28px;
}

.check-list li{
  color:#d8e4f3;
  font-weight:600;
}

.preview-panels{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}

.mini-phone{
  width:250px;
  min-height:500px;
  padding:16px;
  border-radius:34px;
}

.mini-phone.second{
  transform:translateY(40px);
}

.mini-phone-top{
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
  font-weight:800;
}

.mini-upload-card,
.mini-textarea,
.mini-profile-head{
  margin-top:14px;
  padding:20px;
  border-radius:22px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.08);
  color:#dbe7f5;
  text-align:center;
  font-weight:700;
}

.mini-textarea{
  min-height:110px;
  color:var(--muted);
  font-size:13px;
}

.mini-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
}

.mini-grid img{
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:14px;
}

/* =========================
   PRICING
========================= */

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  align-items:stretch;
}

.price-card{
  position:relative;
  padding:30px;
  border-radius:30px;
}

.price-card.featured{
  border-color:rgba(165,243,252,.24);
  box-shadow:
    0 28px 70px rgba(116,192,252,.14),
    inset 0 1px 0 rgba(255,255,255,.08);
  transform:translateY(-10px);
}

.popular{
  position:absolute;
  right:20px;
  top:20px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.12);
  color:#eaf5ff;
  font-size:11px;
  font-weight:800;
}

.price-name{
  color:#cfe8ff;
  font-weight:800;
  font-size:14px;
}

.price{
  margin-top:10px;
  color:#fff;
  font-size:46px;
  font-weight:900;
  letter-spacing:-.04em;
}

.price-card p{
  margin-top:8px;
  color:var(--muted);
  line-height:1.75;
}

.price-card ul{
  list-style:none;
  display:grid;
  gap:11px;
  margin-top:22px;
}

.price-card li{
  color:#dce7f4;
  font-weight:600;
}

.price-card li::before{
  content:"✓";
  color:#8ef7c7;
  font-weight:900;
  margin-right:8px;
}

/* =========================
   CTA
========================= */

.demo-cta{
  width:min(var(--max), calc(100% - 36px));
  margin:10px auto 40px;
  padding:42px;
  border-radius:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.12), transparent 24%),
    linear-gradient(135deg, rgba(116,192,252,.18), rgba(139,92,246,.22));
}

.demo-cta span{
  color:#dff5ff;
}

.demo-cta h2{
  color:#fff;
}

.demo-cta p{
  color:#d2deee;
  max-width:720px;
}

/* =========================
   FAQ
========================= */

.faq-grid{
  max-width:1050px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.faq-item{
  padding:24px;
  border-radius:26px;
}

.faq-item h3{
  color:#fff;
  font-size:22px;
}

.faq-item p{
  margin-top:10px;
  color:var(--muted);
  line-height:1.8;
}

/* =========================
   CONTACT
========================= */

.contact{
  padding-top:40px;
}

.contact-card{
  max-width:1120px;
  margin:0 auto;
  padding:42px;
  border-radius:32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.contact-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* =========================
   FOOTER
========================= */

.footer{
  width:min(var(--max), calc(100% - 36px));
  margin:0 auto 28px;
  padding:28px 24px;
  border-radius:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

.footer strong{
  color:#fff;
}

.footer p{
  margin-top:4px;
  color:var(--muted);
  font-size:13px;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  color:#d9e4f4;
  font-size:14px;
  font-weight:700;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1100px){
  .hero{
    grid-template-columns:1fr;
    text-align:center;
    gap:40px;
  }

  .hero-content{
    margin:0 auto;
  }

  .hero-text,
  .event-jump{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-actions{
    justify-content:center;
  }

  .hero-phone-wrap{
    min-height:auto;
  }

  .cards-grid.four{
    grid-template-columns:repeat(2,1fr);
  }

  .preview-section{
    grid-template-columns:1fr;
  }

  .preview-text{
    max-width:760px;
    margin:0 auto;
    text-align:center;
  }

  .check-list{
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
    text-align:left;
  }

  .upload-card-preview,
  .qr-card-preview{
    display:none;
  }
}

@media (max-width:860px){
  .desktop-nav,
  .desktop-actions{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .site-header{
    width:calc(100% - 20px);
    margin-top:10px;
    padding:12px 14px;
  }

  .hero{
    width:calc(100% - 20px);
    padding:36px 0 56px;
  }

  .hero h1{
    font-size:44px;
  }

  .hero-text{
    font-size:16px;
  }

  .event-jump-row{
    flex-direction:column;
  }

  .event-jump button{
    width:100%;
  }

  .phone-card{
    max-width:370px;
    min-height:620px;
  }

  .section,
  .demo-cta,
  .footer{
    width:calc(100% - 20px);
  }

  .section{
    padding:68px 0;
  }

  .steps,
  .pricing-grid,
  .faq-grid{
    grid-template-columns:1fr;
  }

  .preview-panels{
    flex-direction:column;
  }

  .mini-phone.second{
    transform:none;
  }

  .price-card.featured{
    transform:none;
  }

  .demo-cta{
    padding:28px;
    flex-direction:column;
    text-align:center;
  }

  .contact-card{
    padding:28px;
    flex-direction:column;
    align-items:flex-start;
  }

  .footer{
    padding:24px 18px;
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:560px){
  .logo strong{
    font-size:15px;
  }

  .hero h1{
    font-size:38px;
  }

  .btn{
    width:100%;
  }

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .cards-grid.four{
    grid-template-columns:1fr;
  }

  .feature-card,
  .step-card,
  .price-card,
  .faq-item{
    padding:22px;
  }

  .contact-actions{
    width:100%;
  }

  .contact-actions .btn{
    width:100%;
  }
}
/* =====================================================
   PREMIUM MOTION / LIQUID GLASS ANIMATIONS
   dodati NA KRAJ index.css
===================================================== */

/* smooth render */
body{
  position:relative;
}

body::before{
  content:"";
  position:fixed;
  inset:-20%;
  z-index:-3;
  pointer-events:none;

  background:
    radial-gradient(circle at 20% 20%, rgba(116,192,252,.18), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(139,92,246,.18), transparent 26%),
    radial-gradient(circle at 50% 86%, rgba(34,211,238,.12), transparent 28%);

  filter:blur(26px);
  animation:ambientDrift 18s ease-in-out infinite alternate;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;

  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);

  background-size:54px 54px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.8), transparent 78%);
  opacity:.45;
}

/* subtle page entrance */
.site-header{
  animation:slideDownGlass .75s cubic-bezier(.2,.8,.2,1) both;
}

.hero-content{
  animation:heroTextIn .9s cubic-bezier(.2,.8,.2,1) .08s both;
}

.hero-phone-wrap{
  animation:heroPhoneIn 1s cubic-bezier(.2,.8,.2,1) .16s both;
}

.event-jump{
  animation:softPop .85s cubic-bezier(.2,.8,.2,1) .28s both;
}

/* liquid edge glow */
.phone-card,
.feature-card,
.step-card,
.price-card,
.faq-item,
.contact-card,
.demo-cta,
.event-jump,
.mini-phone{
  position:relative;
  overflow:hidden;
}

.phone-card::before,
.feature-card::before,
.step-card::before,
.price-card::before,
.faq-item::before,
.contact-card::before,
.demo-cta::before,
.event-jump::before,
.mini-phone::before{
  content:"";
  position:absolute;
  inset:-1px;
  pointer-events:none;

  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,.16) 18%,
      transparent 34%,
      transparent 64%,
      rgba(116,192,252,.16) 78%,
      transparent 100%
    );

  transform:translateX(-130%);
  opacity:.72;
}

.phone-card:hover::before,
.feature-card:hover::before,
.step-card:hover::before,
.price-card:hover::before,
.faq-item:hover::before,
.contact-card:hover::before,
.demo-cta:hover::before,
.event-jump:hover::before,
.mini-phone:hover::before{
  animation:glassSweep 1.35s ease forwards;
}

/* hover premium depth */
.feature-card,
.step-card,
.price-card,
.faq-item,
.mini-phone,
.event-jump{
  transition:
    transform .28s cubic-bezier(.2,.8,.2,1),
    border-color .28s ease,
    box-shadow .28s ease,
    background .28s ease;
}

.feature-card:hover,
.step-card:hover,
.price-card:hover,
.faq-item:hover,
.mini-phone:hover,
.event-jump:hover{
  transform:translateY(-6px);
  border-color:rgba(165,243,252,.22);
  box-shadow:
    0 28px 90px rgba(0,0,0,.32),
    0 0 44px rgba(116,192,252,.08),
    inset 0 1px 0 rgba(255,255,255,.12);
}

/* buttons: tiny premium pulse */
.btn.primary,
.header-cta,
.event-jump button{
  position:relative;
  overflow:hidden;
}

.btn.primary::after,
.header-cta::after,
.event-jump button::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:-80%;

  width:42%;
  pointer-events:none;

  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.42),
    transparent
  );

  transform:skewX(-18deg);
}

.btn.primary:hover::after,
.header-cta:hover::after,
.event-jump button:hover::after{
  animation:buttonShine .85s ease forwards;
}

/* phone float */
.main-phone{
  animation:phoneFloat 5.8s ease-in-out infinite;
  transform-style:preserve-3d;
  will-change:transform;
}

.phone-grid img{
  transition:transform .24s ease, filter .24s ease, opacity .24s ease;
}

.phone-grid img:hover{
  transform:scale(1.045);
  filter:saturate(1.12) contrast(1.05);
}

.phone-nav span{
  animation:navPulse 3.6s ease-in-out infinite;
}

.phone-nav span:nth-child(2){
  animation-delay:.35s;
}

.phone-nav span:nth-child(3){
  animation-delay:.7s;
}

/* floating micro cards */
.floating-card{
  animation:microFloat 4.8s ease-in-out infinite;
}

.qr-card-preview{
  animation-delay:1.1s;
}

/* scroll reveal */
.reveal{
  opacity:0;
  transform:translateY(28px) scale(.985);
  filter:blur(8px);
  transition:
    opacity .75s cubic-bezier(.2,.8,.2,1),
    transform .75s cubic-bezier(.2,.8,.2,1),
    filter .75s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible{
  opacity:1;
  transform:translateY(0) scale(1);
  filter:blur(0);
}

/* stagger cards inside grids */
.cards-grid .reveal:nth-child(2),
.steps .reveal:nth-child(2),
.pricing-grid .reveal:nth-child(2),
.faq-grid .reveal:nth-child(2){
  transition-delay:.08s;
}

.cards-grid .reveal:nth-child(3),
.steps .reveal:nth-child(3),
.pricing-grid .reveal:nth-child(3),
.faq-grid .reveal:nth-child(3){
  transition-delay:.16s;
}

.cards-grid .reveal:nth-child(4),
.faq-grid .reveal:nth-child(4){
  transition-delay:.24s;
}

/* animated premium divider glow between sections */
.section{
  position:relative;
}

.section::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:min(760px, 80vw);
  height:1px;
  transform:translateX(-50%);

  background:linear-gradient(
    90deg,
    transparent,
    rgba(116,192,252,.26),
    rgba(139,92,246,.24),
    transparent
  );

  opacity:.9;
}

/* pricing featured breathing glow */
.price-card.featured{
  animation:featuredGlow 4.4s ease-in-out infinite;
}

/* small animated gradient text helper */
.hero h1 span,
.price{
  background-size:180% 180%;
  animation:gradientShift 7s ease infinite;
}

/* mobile menu smoother if hamburger exists */
.mobile-menu.open{
  animation:menuPop .28s cubic-bezier(.2,.8,.2,1) both;
}

/* KEYFRAMES */
@keyframes ambientDrift{
  0%{
    transform:translate3d(-2%, -1%, 0) rotate(0deg) scale(1);
  }
  100%{
    transform:translate3d(2%, 2%, 0) rotate(8deg) scale(1.08);
  }
}

@keyframes slideDownGlass{
  from{
    opacity:0;
    transform:translateY(-18px) scale(.985);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

@keyframes heroTextIn{
  from{
    opacity:0;
    transform:translateY(28px);
    filter:blur(10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
    filter:blur(0);
  }
}

@keyframes heroPhoneIn{
  from{
    opacity:0;
    transform:translateY(32px) scale(.94) rotate(-2deg);
    filter:blur(12px);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1) rotate(0deg);
    filter:blur(0);
  }
}

@keyframes softPop{
  from{
    opacity:0;
    transform:translateY(18px) scale(.96);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

@keyframes glassSweep{
  from{
    transform:translateX(-130%);
  }
  to{
    transform:translateX(130%);
  }
}

@keyframes buttonShine{
  from{
    left:-80%;
  }
  to{
    left:130%;
  }
}

@keyframes phoneFloat{
  0%,100%{
    transform:translateY(0) rotate(-.4deg);
  }
  50%{
    transform:translateY(-14px) rotate(.6deg);
  }
}

@keyframes microFloat{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-10px);
  }
}

@keyframes navPulse{
  0%,100%{
    transform:translateY(0) scale(1);
  }
  50%{
    transform:translateY(-2px) scale(1.08);
  }
}

@keyframes featuredGlow{
  0%,100%{
    box-shadow:
      0 28px 70px rgba(116,192,252,.14),
      inset 0 1px 0 rgba(255,255,255,.08);
  }
  50%{
    box-shadow:
      0 32px 90px rgba(139,92,246,.22),
      0 0 44px rgba(116,192,252,.12),
      inset 0 1px 0 rgba(255,255,255,.12);
  }
}

@keyframes gradientShift{
  0%,100%{
    background-position:0% 50%;
  }
  50%{
    background-position:100% 50%;
  }
}

@keyframes menuPop{
  from{
    opacity:0;
    transform:translateY(-14px) scale(.98);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

/* respect accessibility */
@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }

  .reveal{
    opacity:1 !important;
    transform:none !important;
    filter:none !important;
  }
}

/* mobile performance: manje efekata */
@media(max-width:720px){
  body::after{
    opacity:.22;
  }

  .main-phone,
  .floating-card,
  .phone-nav span{
    animation:none;
  }

  .feature-card:hover,
  .step-card:hover,
  .price-card:hover,
  .faq-item:hover,
  .mini-phone:hover,
  .event-jump:hover{
    transform:none;
  }
}
.theme-switcher{
  position:absolute;
  top:22px;
  left:50%;
  z-index:5;

  transform:translateX(-50%);

  display:flex;
  align-items:center;
  gap:8px;

  padding:8px;

  border-radius:999px;

  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);

  box-shadow:
    0 18px 46px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.12);

  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.theme-pill{
  border:none;
  cursor:pointer;

  padding:10px 13px;

  border-radius:999px;

  background:transparent;
  color:rgba(255,255,255,.68);

  font-size:12px;
  font-weight:800;

  transition:.22s ease;
}

.theme-pill:hover{
  color:white;
  background:rgba(255,255,255,.08);
}

.theme-pill.active{
  color:#06101f;

  background:
    linear-gradient(135deg, #a5f3fc, #93c5fd, #c4b5fd);

  box-shadow:
    0 10px 28px rgba(116,192,252,.22);
}

.phone-card.theme-wedding{
  box-shadow:
    0 34px 100px rgba(139,92,246,.24),
    0 0 70px rgba(116,192,252,.12),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.phone-card.theme-baptism{
  box-shadow:
    0 34px 100px rgba(34,211,238,.22),
    0 0 70px rgba(165,243,252,.12),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.phone-card.theme-party{
  box-shadow:
    0 34px 100px rgba(236,72,153,.22),
    0 0 70px rgba(139,92,246,.16),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.phone-card.theme-party .phone-topbar,
.phone-card.theme-party .phone-section{
  background:
    linear-gradient(135deg, rgba(236,72,153,.12), rgba(139,92,246,.12));
}

.phone-card.theme-baptism .phone-topbar,
.phone-card.theme-baptism .phone-section{
  background:
    linear-gradient(135deg, rgba(165,243,252,.12), rgba(147,197,253,.1));
}

@media(max-width:860px){
  .theme-switcher{
    position:relative;
    top:auto;
    left:auto;
    transform:none;

    margin:0 auto 18px;
    width:max-content;
    max-width:100%;

    flex-wrap:wrap;
    justify-content:center;
  }

  .theme-pill{
    font-size:11px;
    padding:9px 11px;
  }
}
.hero-proof{
  margin-top:14px;
  color:rgba(255,255,255,.58);
  font-size:13px;
  font-weight:700;
}
/* =====================================================
   FINAL HERO / MOBILE / THEME POLISH
   staviti NA KRAJ index.css
===================================================== */

/* theme-aware background */
body.mock-theme-wedding{
  background:
    radial-gradient(circle at 16% 10%, rgba(116,192,252,.15), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(139,92,246,.18), transparent 30%),
    radial-gradient(circle at 52% 82%, rgba(34,211,238,.10), transparent 30%),
    linear-gradient(140deg,#07111f 0%,#0b1728 45%,#0f2035 100%);
}

body.mock-theme-baptism{
  background:
    radial-gradient(circle at 14% 10%, rgba(165,243,252,.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(147,197,253,.16), transparent 30%),
    radial-gradient(circle at 50% 84%, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(140deg,#06131c 0%,#0b1d2a 48%,#102d3b 100%);
}

body.mock-theme-party{
  background:
    radial-gradient(circle at 16% 10%, rgba(236,72,153,.18), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(139,92,246,.20), transparent 30%),
    radial-gradient(circle at 48% 82%, rgba(34,211,238,.10), transparent 30%),
    linear-gradient(140deg,#0b0714 0%,#141126 45%,#21113b 100%);
}

/* logo fallback / alignment */
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  white-space:nowrap;
}

/* proof row under CTA */
.hero-proof-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}

.hero-proof-row span{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:8px 11px;
  border-radius:999px;

  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.10);

  color:rgba(255,255,255,.74);

  font-size:12px;
  font-weight:800;
}

.hero-proof{
  margin-top:12px;
  max-width:620px;

  color:rgba(255,255,255,.58);
  font-size:13px;
  font-weight:700;
  line-height:1.7;
}

/* theme switcher desktop */
.theme-switcher{
  top:10px;
  width:max-content;
  max-width:calc(100% - 20px);
}

.theme-pill{
  white-space:nowrap;
}

/* phone theme colors */
.phone-card.theme-wedding{
  border-color:rgba(196,181,253,.22);
}

.phone-card.theme-wedding .phone-topbar,
.phone-card.theme-wedding .phone-section,
.phone-card.theme-wedding .phone-nav{
  background:
    linear-gradient(135deg, rgba(147,197,253,.10), rgba(196,181,253,.12));
}

.phone-card.theme-baptism{
  border-color:rgba(165,243,252,.24);
}

.phone-card.theme-baptism .phone-topbar,
.phone-card.theme-baptism .phone-section,
.phone-card.theme-baptism .phone-nav{
  background:
    linear-gradient(135deg, rgba(165,243,252,.13), rgba(147,197,253,.10));
}

.phone-card.theme-party{
  border-color:rgba(236,72,153,.26);
}

.phone-card.theme-party .phone-topbar,
.phone-card.theme-party .phone-section,
.phone-card.theme-party .phone-nav{
  background:
    linear-gradient(135deg, rgba(236,72,153,.15), rgba(139,92,246,.14));
}

.phone-grid img.is-switching{
  opacity:0;
  transform:scale(.94);
}

/* better event input card */
.event-jump{
  isolation:isolate;
}

.event-jump label{
  white-space:normal;
  line-height:1.4;
}

.event-jump button{
  transition:.22s ease;
}

.event-jump button:hover{
  transform:translateY(-1px);
  filter:saturate(1.08);
}

/* more selling clarity */
.feature-card,
.step-card,
.price-card,
.faq-item{
  min-height:100%;
}

/* fix mobile hero stacking */
@media(max-width:860px){
  body{
    overflow-x:hidden;
  }

  .site-header{
    position:sticky;
    top:8px;
    z-index:1300;
  }

  .hero{
    width:calc(100% - 20px);
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:34px;

    margin-top:16px;
    padding:28px 0 54px;

    text-align:left;
    overflow:hidden;
  }

  .hero-content{
    width:100%;
    max-width:100%;
    margin:0;
    text-align:left;
  }

  .eyebrow{
    max-width:100%;
    line-height:1.35;
  }

  .hero h1{
    font-size:clamp(36px, 11vw, 48px);
    line-height:1;
    max-width:100%;
  }

  .hero-text{
    max-width:100%;
    font-size:15px;
    line-height:1.75;
  }

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    width:100%;
  }

  .hero-actions .btn{
    width:100%;
  }

  .hero-proof-row{
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
    width:100%;
  }

  .hero-proof-row span{
    width:100%;
  }

  .event-jump{
    width:100%;
    max-width:100%;
    padding:16px;
    border-radius:24px;
    overflow:hidden;
  }

  .event-jump-row{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
  }

  .event-jump input,
  .event-jump button{
    width:100%;
    min-width:0;
  }

  .event-jump small{
    text-align:left;
    line-height:1.5;
  }

  .hero-phone-wrap{
    width:100%;
    max-width:100%;
    min-height:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    overflow:visible;
    padding-top:0;
  }

  .theme-switcher{
    position:relative;
    top:auto;
    left:auto;
    transform:none;

    width:100%;
    max-width:360px;
    margin:0 auto 14px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:6px;

    padding:7px;
    border-radius:999px;
  }

  .theme-pill{
    width:100%;
    padding:9px 6px;
    font-size:11px;
    text-align:center;
  }

  .phone-card{
    width:100%;
    max-width:360px;
    min-height:auto;
    padding:14px 12px 78px;
    border-radius:34px;
  }

  .phone-topbar{
    height:50px;
    border-radius:22px;
    font-size:13px;
  }

  .phone-section{
    padding:14px 12px;
    border-radius:22px;
  }

  .phone-section h3{
    font-size:21px;
  }

  .phone-section p{
    font-size:12px;
  }

  .phone-stats span{
    font-size:11px;
    padding:7px 9px;
  }

  .phone-grid{
    gap:7px;
  }

  .phone-grid img{
    border-radius:14px;
  }

  .phone-nav{
    left:14px;
    right:14px;
    bottom:14px;
    height:54px;
    border-radius:20px;
  }
}

/* very small phones */
@media(max-width:420px){
  .site-header{
    width:calc(100% - 14px);
    padding:10px 12px;
    border-radius:20px;
  }

  .logo strong{
    font-size:14px;
  }

  .logo-icon{
    width:38px;
    height:38px;
    border-radius:14px;
  }

  .logo-icon img{
    width:25px;
    height:25px;
  }

  .menu-toggle{
    width:42px;
    height:42px;
    border-radius:14px;
  }

  .hero{
    width:calc(100% - 14px);
  }

  .theme-switcher{
    max-width:100%;
  }

  .theme-pill{
    font-size:10.5px;
  }

  .phone-card{
    max-width:100%;
  }
}
.value-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  padding-top:28px;
}

.value-card{
  padding:18px;
  border-radius:24px;

  background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.11);

  box-shadow:
    0 18px 54px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.10);

  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

.value-card strong{
  display:block;
  color:#fff;
  font-size:15px;
  margin-bottom:7px;
}

.value-card span{
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

@media(max-width:960px){
  .value-strip{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:560px){
  .value-strip{
    grid-template-columns:1fr;
  }
}
/* =====================================================
   FINAL PRODUCTION POLISH — HEADER / HERO / THEMES
   staviti SKROZ NA KRAJ index.css
===================================================== */

/* =========================
   HEADER FIX
========================= */

.site-header{
  position:sticky;
  top:12px;
  z-index:1300;

  width:min(var(--max), calc(100% - 28px));
  margin:12px auto 0;

  min-height:72px;
  padding:12px 16px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;

  border-radius:24px;

  background:rgba(8,16,28,.66);
  border:1px solid rgba(255,255,255,.10);

  box-shadow:
    0 18px 54px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.08);

  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;

  min-width:0;
  white-space:nowrap;

  color:#fff;
  font-weight:900;
}

.logo strong{
  color:#fff;
  font-weight:900;
  letter-spacing:-.025em;
  line-height:1;
}

/* logo nema više dupli glass obrub */
.logo-icon{
  width:46px !important;
  height:46px !important;

  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;

  background:transparent !important;
  border:none !important;
  box-shadow:none !important;

  border-radius:14px;
  overflow:visible !important;
}

.logo-icon img{
  width:42px !important;
  height:42px !important;

  display:block;
  object-fit:contain;

  border-radius:12px;

  filter:
    drop-shadow(0 8px 18px rgba(0,0,0,.34))
    drop-shadow(0 0 10px rgba(245,185,80,.18));
}

/* =========================
   HERO LAYOUT DESKTOP
========================= */

.hero{
  width:min(var(--max), calc(100% - 36px));
  margin:28px auto 0;

  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(390px, .88fr);
  align-items:center;
  gap:64px;

  min-height:auto;
  padding:58px 8px 78px;

  overflow:visible;
}

.hero-content{
  max-width:680px;
}

.hero h1{
  max-width:760px;
}

.hero-text{
  max-width:660px;
}

.hero-actions{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;

  margin-top:30px;
}

.hero-actions .btn{
  min-width:178px;
}

.hero-proof-row{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;

  margin-top:16px;
}

.hero-proof-row span{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:8px 12px;
  border-radius:999px;

  background:rgba(255,255,255,.075);
  border:1px solid rgba(255,255,255,.10);

  color:rgba(255,255,255,.76);

  font-size:12px;
  font-weight:800;
}

.hero-proof{
  margin-top:12px;
  max-width:640px;

  color:rgba(255,255,255,.58);
  font-size:13px;
  font-weight:700;
  line-height:1.65;
}

/* =========================
   EVENT INPUT
========================= */

.event-jump{
  max-width:620px;
  margin-top:26px;
  padding:18px;

  border-radius:28px;

  overflow:hidden;
  isolation:isolate;
}

.event-jump label{
  white-space:normal;
  line-height:1.4;
}

.event-jump-row{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 142px;
  gap:10px;
}

.event-jump input,
.event-jump button{
  height:52px;
  border-radius:17px;
}

.event-jump button{
  min-width:0;
  width:100%;
}

/* =========================
   PHONE PREVIEW — DESKTOP
========================= */

.hero-phone-wrap{
  position:relative;
  z-index:2;

  width:100%;
  max-width:470px;
  min-height:auto;

  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;

  gap:18px;

  overflow:visible !important;
  padding-top:0;
  margin:0 auto;
}

/* theme switcher više nije absolute */
.theme-switcher{
  position:relative !important;
  top:auto !important;
  left:auto !important;
  transform:none !important;

  z-index:8;

  width:max-content;
  max-width:100%;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  margin:0 auto 0;
  padding:8px;

  border-radius:999px;

  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.13);

  box-shadow:
    0 18px 46px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.12);

  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.theme-pill{
  white-space:nowrap;

  border:none;
  cursor:pointer;

  padding:10px 13px;
  border-radius:999px;

  background:transparent;
  color:rgba(255,255,255,.68);

  font-size:12px;
  font-weight:900;

  transition:
    background .22s ease,
    color .22s ease,
    transform .22s ease,
    box-shadow .22s ease;
}

.theme-pill:hover{
  color:#fff;
  background:rgba(255,255,255,.08);
}

.theme-pill.active{
  color:#06101f !important;

  background:
    linear-gradient(135deg, var(--accent), var(--accent-3) 50%, var(--accent-2)) !important;

  box-shadow:
    0 10px 28px rgba(116,192,252,.22);

  transform:translateY(-1px);
}

.phone-card{
  width:min(385px, 100%);
  min-height:640px;

  margin:0 auto;
  padding:18px 14px 84px;

  border-radius:42px;

  transition:
    box-shadow .35s ease,
    border-color .35s ease,
    background .35s ease;
}

/* floating cards da ne prekrivaju ružno */
.floating-card{
  pointer-events:none;
}

.upload-card-preview{
  left:-42px;
  top:27%;
}

.qr-card-preview{
  right:-50px;
  bottom:18%;
}

/* =========================
   THEME COLORS
========================= */

body.mock-theme-wedding{
  --accent:#a5f3fc;
  --accent-2:#c4b5fd;
  --accent-3:#93c5fd;

  background:
    radial-gradient(circle at 14% 10%, rgba(116,192,252,.16), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(196,181,253,.22), transparent 30%),
    radial-gradient(circle at 52% 82%, rgba(34,211,238,.10), transparent 30%),
    linear-gradient(140deg,#07111f 0%,#0b1728 45%,#101a35 100%);
}

body.mock-theme-baptism{
  --accent:#dbeafe;
  --accent-2:#a5f3fc;
  --accent-3:#93c5fd;

  background:
    radial-gradient(circle at 16% 10%, rgba(219,234,254,.20), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(165,243,252,.17), transparent 30%),
    radial-gradient(circle at 50% 82%, rgba(147,197,253,.10), transparent 30%),
    linear-gradient(140deg,#06131c 0%,#0b1d2a 48%,#102d3b 100%);
}

body.mock-theme-party{
  --accent:#f9a8d4;
  --accent-2:#a78bfa;
  --accent-3:#22d3ee;

  background:
    radial-gradient(circle at 16% 10%, rgba(236,72,153,.20), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(139,92,246,.24), transparent 30%),
    radial-gradient(circle at 48% 82%, rgba(34,211,238,.10), transparent 30%),
    linear-gradient(140deg,#0b0714 0%,#141126 45%,#21113b 100%);
}

.btn.primary,
.header-cta,
.event-jump button{
  background:
    linear-gradient(135deg, var(--accent), var(--accent-3) 50%, var(--accent-2)) !important;
}

.phone-card.theme-wedding{
  border-color:rgba(196,181,253,.26);
  box-shadow:
    0 34px 100px rgba(139,92,246,.24),
    0 0 70px rgba(116,192,252,.14),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.phone-card.theme-baptism{
  border-color:rgba(165,243,252,.28);
  box-shadow:
    0 34px 100px rgba(165,243,252,.20),
    0 0 70px rgba(219,234,254,.12),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.phone-card.theme-party{
  border-color:rgba(236,72,153,.30);
  box-shadow:
    0 34px 100px rgba(236,72,153,.24),
    0 0 70px rgba(139,92,246,.18),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.phone-card.theme-wedding .phone-topbar,
.phone-card.theme-wedding .phone-section,
.phone-card.theme-wedding .phone-nav{
  background:
    linear-gradient(135deg, rgba(147,197,253,.10), rgba(196,181,253,.12));
}

.phone-card.theme-baptism .phone-topbar,
.phone-card.theme-baptism .phone-section,
.phone-card.theme-baptism .phone-nav{
  background:
    linear-gradient(135deg, rgba(219,234,254,.13), rgba(165,243,252,.11));
}

.phone-card.theme-party .phone-topbar,
.phone-card.theme-party .phone-section,
.phone-card.theme-party .phone-nav{
  background:
    linear-gradient(135deg, rgba(236,72,153,.16), rgba(139,92,246,.15));
}

.phone-grid img{
  transition:
    opacity .22s ease,
    transform .22s ease,
    filter .22s ease;
}

.phone-grid img.is-switching{
  opacity:0;
  transform:scale(.94) rotate(-1deg);
  filter:blur(5px);
}

/* =========================
   VALUE STRIP
========================= */

.value-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;

  padding-top:28px;
  padding-bottom:70px;
}

.value-card{
  padding:18px;
  border-radius:24px;

  background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.11);

  box-shadow:
    0 18px 54px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.10);

  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

.value-card strong{
  display:block;
  color:#fff;
  font-size:15px;
  margin-bottom:7px;
}

.value-card span{
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){
  .hero{
    grid-template-columns:1fr;
    gap:46px;
    text-align:center;
  }

  .hero-content{
    max-width:760px;
    margin:0 auto;
  }

  .hero-text,
  .event-jump,
  .hero-proof{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-actions,
  .hero-proof-row{
    justify-content:center;
  }

  .upload-card-preview,
  .qr-card-preview{
    display:none;
  }

  .hero-phone-wrap{
    max-width:430px;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:860px){
  .desktop-nav,
  .desktop-actions{
    display:none !important;
  }

  .menu-toggle{
    display:flex !important;
  }

  .site-header{
    top:8px;
    width:calc(100% - 16px);
    min-height:64px;
    padding:10px 12px;
    border-radius:20px;
  }

  .logo strong{
    font-size:14px;
  }

  .logo-icon{
    width:40px !important;
    height:40px !important;
  }

  .logo-icon img{
    width:36px !important;
    height:36px !important;
  }

  .menu-toggle{
    width:42px;
    height:42px;
    border-radius:14px;
  }

  .hero{
    width:calc(100% - 16px);

    display:flex;
    flex-direction:column;
    align-items:stretch;

    gap:34px;
    margin-top:16px;
    padding:28px 0 56px;

    text-align:left;
    overflow:hidden;
  }

  .hero-content{
    width:100%;
    max-width:100%;
    text-align:left;
  }

  .eyebrow{
    max-width:100%;
    line-height:1.35;
  }

  .hero h1{
    max-width:100%;
    font-size:clamp(36px, 11vw, 48px);
    line-height:1;
  }

  .hero-text{
    max-width:100%;
    font-size:15px;
    line-height:1.72;
  }

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;

    width:100%;
  }

  .hero-actions .btn{
    width:100%;
    min-width:0;
  }

  .hero-proof-row{
    display:grid;
    grid-template-columns:1fr;
    gap:8px;

    width:100%;
  }

  .hero-proof-row span{
    width:100%;
  }

  .event-jump{
    width:100%;
    max-width:100%;

    margin-top:22px;
    padding:14px;

    border-radius:22px;
    overflow:hidden;
  }

  .event-jump label{
    font-size:12px;
  }

  .event-jump-row{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
  }

  .event-jump input,
  .event-jump button{
    width:100%;
    min-width:0;
    height:48px;
    border-radius:16px;
  }

  .event-jump small{
    text-align:left;
    line-height:1.5;
  }

  .hero-phone-wrap{
    width:100%;
    max-width:100%;
    min-height:auto;

    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:flex-start !important;

    gap:14px;

    padding-top:0;
    overflow:visible !important;
  }

  .theme-switcher{
    width:100%;
    max-width:360px;

    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:6px;

    padding:7px;
    margin:0 auto;

    border-radius:999px;
  }

  .theme-pill{
    width:100%;
    padding:9px 4px;

    text-align:center;
    font-size:10.5px;
    white-space:nowrap;
  }

  .phone-card{
    width:100%;
    max-width:360px;

    min-height:auto;
    padding:14px 12px 78px;

    border-radius:34px;
  }

  .phone-topbar{
    height:50px;
    border-radius:22px;
    font-size:13px;
  }

  .phone-section{
    padding:14px 12px;
    border-radius:22px;
  }

  .phone-section h3{
    font-size:21px;
  }

  .phone-section p{
    font-size:12px;
  }

  .phone-stats span{
    padding:7px 9px;
    font-size:11px;
  }

  .phone-grid{
    gap:7px;
  }

  .phone-grid img{
    border-radius:14px;
  }

  .phone-nav{
    left:14px;
    right:14px;
    bottom:14px;

    height:54px;
    border-radius:20px;
  }

  .value-strip{
    grid-template-columns:1fr;
    padding-top:12px;
    padding-bottom:54px;
  }

  .section,
  .demo-cta,
  .footer{
    width:calc(100% - 16px);
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:420px){
  .hero{
    width:calc(100% - 14px);
  }

  .site-header{
    width:calc(100% - 14px);
  }

  .phone-card{
    max-width:100%;
  }

  .theme-switcher{
    max-width:100%;
  }

  .theme-pill{
    font-size:10px;
  }
}
/* =====================================================
   MOBILE HERO CTA / PROOF CHIPS FIX
   staviti SKROZ NA KRAJ index.css
===================================================== */

@media(max-width:860px){

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    width:100%;
  }

  .hero-actions .btn{
    width:100%;
    min-height:50px;
  }

  /* Ovo su ona 3: Bez instalacije / QR pristup / Custom dizajn */
  .hero-proof-row{
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:wrap !important;
    align-items:center;
    justify-content:flex-start;

    width:100%;
    gap:8px;

    margin-top:14px;
  }

  .hero-proof-row span{
    width:auto !important;
    flex:0 0 auto;

    padding:7px 10px;
    border-radius:999px;

    font-size:11px;
    line-height:1;
    white-space:nowrap;

    background:rgba(255,255,255,.075);
    border:1px solid rgba(255,255,255,.11);
    color:rgba(255,255,255,.76);
  }

  .hero-proof{
    margin-top:10px;
    max-width:100%;

    font-size:12px;
    line-height:1.55;
    color:rgba(255,255,255,.56);
  }
}

@media(max-width:420px){
  .hero-proof-row{
    gap:6px;
  }

  .hero-proof-row span{
    padding:7px 9px;
    font-size:10.5px;
  }
}