/* Trackify – čisté HTML+CSS (viac 1:1 + animácie) */
:root{
  --bg0:#070914;
  --bg1:#060a14;
  --text:#eaf0ff;
  --muted:rgba(232, 238, 255, .68);

  --cyan:#22d3ee;
  --cyan2:#38bdf8;
  --violet:#a855f7;
  --violet2:#7c3aed;

  --glass: rgba(10, 14, 28, .72);
  --glass2: rgba(12, 18, 34, .78);

  --r:26px;
  --r2:30px;

  --shadow: 0 30px 90px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html,body{
  background-color: var(--bg0);height:100%}
html{scroll-behavior:smooth; background: var(--bg0);}

body{
  background-color: var(--bg0);
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: linear-gradient(180deg, var(--bg0), #070a12 45%, var(--bg0));
  overflow-x:hidden;
}

.bg-blobs{
  position:fixed; inset:-20%;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 25% 40%, rgba(34, 211, 238, .22), transparent 60%),
    radial-gradient(920px 520px at 70% 35%, rgba(168, 85, 247, .20), transparent 62%),
    radial-gradient(850px 560px at 70% 70%, rgba(34, 211, 238, .12), transparent 66%);
  filter: blur(0px);
  animation: blobShift 12s ease-in-out infinite alternate;
  opacity: 1;
}

@keyframes blobShift{
  0%{ transform: translate3d(0,0,0) scale(1); filter: blur(0px); }
  100%{ transform: translate3d(-2%, -1%, 0) scale(1.03); filter: blur(1px); }
}

.bg-grid{
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0, rgba(255,255,255,.05) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0, rgba(255,255,255,.035) 1px, transparent 1px, transparent 60px);
  opacity:.14;
  mask-image: radial-gradient(900px 520px at 40% 35%, rgba(0,0,0,1), transparent 70%);
  animation: gridDrift 18s linear infinite;
}
@keyframes gridDrift{
  0%{ transform: translate3d(0,0,0); }
  100%{ transform: translate3d(-60px, -60px, 0); }
}

.bg-vignette{
  position:fixed; inset:0;
  pointer-events:none;
  background: radial-gradient(900px 520px at 50% 30%, transparent 55%, rgba(0,0,0,.55) 100%);
  opacity:.9;
}

a{color:inherit; text-decoration:none}
.container{max-width: 1200px; margin:0 auto; padding: 0 26px}

/* Header */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:80;
  background: linear-gradient(180deg, rgba(6, 10, 20, .92), rgba(6, 10, 20, .68));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{display:flex; align-items:center; gap:14px}
.brand-icon{
  width:46px; height:46px;
  display:grid; place-items:center;
  border-radius:14px;
  overflow:hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 0 0 8px rgba(34,211,238,.06);
}
.brand-icon--sm{ width:42px; height:42px; border-radius:13px; box-shadow:none; }
.brand-logo{ width:100%; height:100%; object-fit:cover; display:block; }
.brand-name{font-weight:800; font-size:22px; letter-spacing:.2px}

.nav{display:flex; align-items:center; gap:10px}
.nav-link{
  color: rgba(234,240,255,.72);
  font-weight:500;
  font-size:15px;
  padding:10px 16px;
  border-radius:999px;
  position:relative;
  transition: background .2s ease, color .2s ease;
}
.nav-link:hover{color: rgba(234,240,255,.92); background: rgba(255,255,255,.04)}
.nav-link.is-active{
  background: rgba(255,255,255,.07);
  color: rgba(234,240,255,.90);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

.header-actions{display:flex; align-items:center; gap:14px}

/* Buttons */
.btn{
  border:1px solid transparent;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight:600;
  font-size:15px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  white-space:nowrap;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  will-change: transform;
}
.btn--md{padding: 11px 16px; border-radius: 14px; font-size:15px}

.btn--primary{
  color:#05101a;
  background: linear-gradient(90deg, rgba(34,211,238,1), rgba(168,85,247,1));
  box-shadow: 0 14px 40px rgba(34,211,238,.10), 0 14px 40px rgba(168,85,247,.10);
}
.btn--outline{
  color: rgba(34,211,238,.95);
  background: rgba(0,0,0,0);
  border-color: rgba(34,211,238,.40);
  box-shadow: inset 0 0 0 1px rgba(34,211,238,.08);
}
.btn--dark{
  background: rgba(7, 12, 22, .58);
  border-color: rgba(255,255,255,.10);
  color: rgba(234,240,255,.92);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.btn--glass{
  backdrop-filter: blur(10px);
}
.btn--lg{padding: 16px 22px; border-radius: 16px; font-size:16px}
.arrow{font-size:18px; margin-left:2px}
.play{opacity:.9}

.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}

/* Shine animation on primary button */
.btn--shine{
  position:relative;
  overflow:hidden;
}
.btn--shine:before{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width:60%;
  height:180%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  opacity:.0;
}
.btn--shine:hover:before{
  animation: shine 1.2s ease;
  opacity:.9;
}
@keyframes shine{
  0%{ transform: translateX(0) skewX(-20deg); opacity:0; }
  15%{ opacity:.9; }
  100%{ transform: translateX(320%) skewX(-20deg); opacity:0; }
}

/* Mobile */
.nav-toggle{
  display:inline-flex;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(8, 10, 18, .55);
  padding:0 12px;
}
.nav-toggle span{
  display:block; height:2px; width:100%;
  background: rgba(234,240,255,.85);
  border-radius:10px;
}
.nav-toggle span + span{margin-top:6px}
.mobile-nav{
  display:none;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 26px 22px;
  background: rgba(8, 10, 18, .88);
}
.mobile-nav a{
  display:block;
  padding:12px 10px;
  color: rgba(234,240,255,.82);
}
.mobile-actions{display:flex; gap:12px; padding-top:10px; flex-wrap:wrap}

/* Hero */
.hero{padding: 48px 0 34px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 46px;
  align-items:start;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight:500;
  color: rgba(34,211,238,.95);
  background: rgba(10, 30, 45, .55);
  border: 1px solid rgba(34,211,238,.18);
  box-shadow: 0 18px 60px rgba(34,211,238,.08);
}
.pill--hero{margin-top: 16px}
.dot{
  width:8px; height:8px;
  border-radius:999px;
  background: rgba(34,211,238,1);
  box-shadow: 0 0 0 6px rgba(34,211,238,.10);
}

.hero-title{
  margin: 26px 0 18px;
  font-size: clamp(44px, 4.6vw, 74px);
  line-height: 1.06;
  letter-spacing: -0.9px;
}
.hero-sub{
  margin:0;
  max-width: 54ch;
  color: var(--muted);
  font-size: 17px;
  line-height:1.7;
}

.grad-text{
  background: linear-gradient(90deg, rgba(34,211,238,1), rgba(168,85,247,1));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.grad-text--small{
  background: linear-gradient(90deg, rgba(34,211,238,1), rgba(168,85,247,1));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.hero-cta{
  margin-top: 26px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* Product frame */
.product-frame{
  border-radius: 34px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(34,211,238,.95), rgba(168,85,247,.95));
  box-shadow: 0 30px 100px rgba(34,211,238,.10), 0 30px 100px rgba(168,85,247,.10);
  position:relative;
  overflow:hidden;
}
.product-frame:after{
  content:"";
  position:absolute; inset:-40%;
  background: radial-gradient(circle at 60% 40%, rgba(34,211,238,.12), transparent 55%),
              radial-gradient(circle at 30% 60%, rgba(168,85,247,.10), transparent 55%);
  filter: blur(10px);
  animation: frameGlow 4.8s ease-in-out infinite alternate;
}
@keyframes frameGlow{
  0%{ transform: translate3d(0,0,0) rotate(0deg); opacity:.7; }
  100%{ transform: translate3d(2%, -1%, 0) rotate(2deg); opacity:1; }
}
.product-frame__inner{
  position:relative;
  z-index:1;
  border-radius: 32px;
  padding: 40px 34px;
  background:
    radial-gradient(500px 240px at 50% 40%, rgba(34,211,238,.10), transparent 70%),
    radial-gradient(520px 260px at 70% 40%, rgba(168,85,247,.10), transparent 70%),
    linear-gradient(180deg, rgba(15, 24, 44, .62), rgba(9, 14, 28, .78));
  border: 1px solid rgba(255,255,255,.06);
  min-height: 420px;
}

.product-card{
  position:absolute;
  inset: 80px 60px 60px 60px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  transform: translateZ(0);
}

.app-icon{
  width: 96px; height: 96px;
  border-radius: 24px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(34,211,238,1), rgba(168,85,247,1));
  box-shadow: 0 22px 70px rgba(34,211,238,.18), 0 22px 70px rgba(168,85,247,.12);
}
.app-icon--small{
  width: 74px; height: 74px;
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(34,211,238,.16), 0 18px 60px rgba(168,85,247,.10);
}
.glow{
  position:relative;
}
.glow:after{
  content:"";
  position:absolute; inset:-30%;
  background: radial-gradient(circle at 40% 40%, rgba(34,211,238,.45), transparent 60%),
              radial-gradient(circle at 65% 65%, rgba(168,85,247,.35), transparent 60%);
  filter: blur(14px);
  opacity:.55;
  z-index:-1;
  animation: iconPulse 2.8s ease-in-out infinite;
}
@keyframes iconPulse{
  0%,100%{ transform: scale(1); opacity:.42; }
  50%{ transform: scale(1.06); opacity:.75; }
}

.product-name{font-weight:700; margin-top: 4px}
.product-desc{color: rgba(232,238,255,.60); font-size:14px}

.status-badge{
  position:absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 12, 22, .60);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(232,238,255,.85);
  font-weight:600;
  font-size:14px;
  backdrop-filter: blur(10px);
}
.status-dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(34,197,94,1);
  box-shadow: 0 0 0 6px rgba(34,197,94,.10);
  animation: onlineBlink 1.4s ease-in-out infinite;
}
@keyframes onlineBlink{
  0%,100%{ transform: scale(1); opacity: 1; }
  50%{ transform: scale(.82); opacity: .65; }
}

.price-tag{
  position:absolute;
  left: 20px;
  top: 55%;
  transform: translateY(-50%);
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(8, 12, 22, .60);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}




/* Floating product frame */
.float{ animation: floaty 4.5s ease-in-out infinite; transform-origin: center; }
@keyframes floaty{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-10px); }
}

/* Cards / grids */
.cards-row{margin-top: 38px; display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px}
.grid-4{display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px}
.grid-3big{display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px}

.glass-card{
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, var(--edge1), var(--edge2));
  position:relative;
  box-shadow: 0 22px 80px rgba(0,0,0,.35);
  transition: transform .18s ease, filter .18s ease;
}
.glass-card:hover{ transform: translateY(-4px); filter: saturate(1.05); }
.glass-inner{
  border-radius: 26px;
  padding: 28px 30px;
  background:
    radial-gradient(520px 260px at 20% 20%, rgba(34,211,238,.08), transparent 65%),
    radial-gradient(520px 260px at 80% 30%, rgba(168,85,247,.07), transparent 65%),
    linear-gradient(180deg, rgba(12, 18, 34, .82), rgba(10, 14, 28, .78));
  border: 1px solid rgba(255,255,255,.06);
  min-height: 188px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
}

.glass-card h3{
  margin: 14px 0 10px;
  font-size: 20px;
  letter-spacing:-0.2px;
}
.glass-card p{
  margin:0;
  color: rgba(232,238,255,.58);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 48ch;
  margin-left:auto;
  margin-right:auto;
}

.glass-card--tall .glass-inner{min-height: 300px; padding-top: 34px; padding-bottom: 34px}
.glass-card--big .glass-inner{min-height: 260px; padding-top: 34px; padding-bottom: 34px; text-align:left}
.glass-card--big h3{font-size: 26px; margin-top: 18px}
.glass-card--big p{font-size: 15.5px; max-width: 56ch; margin-left:0; margin-right:0}

.mini-icon{
  width: 64px; height: 64px;
  border-radius: 18px;
  display:grid; place-items:center;
  margin:0 auto 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.mini-icon--big{width:64px; height:64px}

.big-icon{display:flex; justify-content:center}
.glass-card--big .big-icon{justify-content:flex-start}

/* Accents */
.accent--cyan{--edge1: rgba(34,211,238,.95); --edge2: rgba(34,211,238,.55);}
.accent--cyan2{--edge1: rgba(34,211,238,.75); --edge2: rgba(56,189,248,.85);}
.accent--violet{--edge1: rgba(168,85,247,.95); --edge2: rgba(34,211,238,.55);}
.accent--violet2{--edge1: rgba(168,85,247,.85); --edge2: rgba(168,85,247,.55);}

/* Section heads */
.section{padding: 56px 0 20px}
.section-head{
  text-align:center;
  margin-bottom: 28px;
}
.pill--section{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight:600;
  color: rgba(34,211,238,.9);
  background: rgba(10, 30, 45, .40);
  border: 1px solid rgba(34,211,238,.14);
}
.section-title{
  margin: 18px 0 10px;
  font-size: clamp(38px, 4.2vw, 62px);
  letter-spacing: -0.9px;
  line-height: 1.1;
}
.section-sub{
  margin:0;
  color: rgba(232,238,255,.56);
  font-size: 17px;
  line-height: 1.65;
  max-width: 72ch;
  margin-left:auto;
  margin-right:auto;
}


/* Reveal animation */
.reveal{
  opacity:0;
  transform: translateY(16px);
  filter: blur(6px);
  transition: opacity .6s ease, transform .6s ease, filter .6s ease;
  will-change: opacity, transform, filter;
}
.reveal.is-in{
  opacity:1;

  filter: blur(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .bg-grid, .bg-blobs, .float, .glow:after, .status-dot, .product-frame:after{ animation:none !important; }
  .reveal{ transition:none !important; opacity:1; transform:none; filter:none; }
  *{ scroll-behavior:auto !important; }
}

/* Responsive */
@media (max-width: 1120px){
  .hero-grid{grid-template-columns: 1fr; gap: 28px}
  .product-frame__inner{min-height: 380px}
  .product-card{inset: 70px 44px 50px 44px}
  .grid-4{grid-template-columns: repeat(2, 1fr)}
  .grid-3big{grid-template-columns: 1fr}
  .cards-row{grid-template-columns: 1fr}
}
@media (max-width: 1024px){
  .nav{display:none}
  .header-actions{display:none}
  .nav-toggle{display:inline-flex; align-items:center; justify-content:center}
  .mobile-drawer{display:block}
  .footer-inner{flex-direction:column}
}
@media (max-width: 560px){
  .container{padding: 0 18px}
  .hero{padding-top: 34px}
  .hero-cta{gap:12px}
  .btn--lg{width:100%; justify-content:center}
  .product-card{inset: 78px 22px 34px 22px}
  .status-badge{right: 14px}
  .price-tag{left: 14px}
}

/* Animated modern footer */
.site-footer{position:relative;margin-top:70px;padding:44px 0 34px;background:rgba(7,9,20,.65);
border-top:1px solid rgba(255,255,255,.06);overflow:hidden}
.footer-topline{position:absolute;left:0;top:0;height:2px;width:100%;
background:linear-gradient(90deg, rgba(34,211,238,.0), rgba(34,211,238,.75), rgba(99,102,241,.75), rgba(34,211,238,.0));
background-size:200% 100%;animation:footerLine 7s ease-in-out infinite}
.footer-glow{position:absolute;inset:-120px -40px auto -40px;height:220px;pointer-events:none;
background:radial-gradient(closest-side, rgba(34,211,238,.22), rgba(99,102,241,.14), rgba(7,9,20,0));
filter:blur(14px);opacity:.85;animation:footerGlow 9s ease-in-out infinite}
.footer-shell{display:flex;align-items:flex-start;justify-content:space-between;gap:22px}
.footer-brand{display:flex;align-items:center;gap:14px}
.footer-mark{width:46px;height:46px;border-radius:14px;display:grid;place-items:center;
background:linear-gradient(135deg, rgba(34,211,238,.85), rgba(99,102,241,.85));
color:#070914;font-weight:900}
.footer-brand__name{font-weight:800;letter-spacing:.2px}
.footer-brand__sub{margin-top:2px;color:rgba(234,240,255,.72);font-size:13px}
.footer-meta{display:flex;flex-direction:column;align-items:flex-end;gap:10px}
.footer-links{display:flex;gap:14px;flex-wrap:wrap;justify-content:flex-end}
.footer-link{color:rgba(234,240,255,.78);text-decoration:none;font-size:13px;border-bottom:1px solid rgba(234,240,255,.16);padding-bottom:2px}
.footer-link:hover{color:rgba(234,240,255,.95);border-bottom-color:rgba(34,211,238,.55)}
.footer-copy{color:rgba(234,240,255,.62);font-size:12px}

@keyframes footerLine{0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}
@keyframes footerGlow{0%,100%{transform:translateY(0)}50%{transform:translateY(18px)}}

@media (max-width: 720px){
  .site-footer{padding:34px 0 26px}
  .footer-shell{flex-direction:column;align-items:flex-start}
  .footer-meta{align-items:flex-start}
  .footer-mark{width:44px;height:44px;border-radius:13px}
}
@media (prefers-reduced-motion: reduce){
  .footer-topline,.footer-glow{animation:none!important}
}


/* Footer */
.footer{
  padding: 48px 0 56px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 26px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 24px;
}
.brand--footer .brand-icon{ box-shadow: 0 0 0 8px rgba(168,85,247,.08); }
.footer-text{ margin: 12px 0 0; color: rgba(232,238,255,.60); max-width: 42ch; }
.footer-right{ display:flex; flex-wrap:wrap; gap: 16px; padding-top: 8px; }
.footer-link{
  color: rgba(234,240,255,.70);
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.footer-link:hover{ color: rgba(234,240,255,.92); background: rgba(255,255,255,.05); }


/* Mobile drawer + overlay (dizajn + animácia) */
.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  z-index: 70;
}
.nav-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* Hamburger button – morph to X */
.nav-toggle{
  display:inline-flex;
  width:46px; height:46px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(8, 10, 18, .55);
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
  padding:0;
}
.nav-toggle .bar{
  position:absolute;
  left: 12px;
  right: 12px;
  height:2px;
  background: rgba(234,240,255,.90);
  border-radius:10px;
  transform-origin: center;
  transition: transform .22s ease, opacity .18s ease, top .22s ease, bottom .22s ease;
}
.nav-toggle{ position: relative; }
.nav-toggle .bar:nth-child(1){ top: 16px; }
.nav-toggle .bar:nth-child(2){ top: 22px; opacity: .85; }
.nav-toggle .bar:nth-child(3){ top: 28px; }

.nav-toggle.is-open .bar:nth-child(1){ top: 22px; transform: rotate(45deg); }
.nav-toggle.is-open .bar:nth-child(2){ opacity: 0; }
.nav-toggle.is-open .bar:nth-child(3){ top: 22px; transform: rotate(-45deg); }

.nav-toggle:active{ transform: scale(.98); }

/* Drawer panel */
.mobile-nav{
  display:none;
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
}
.mobile-nav__panel{
  position:absolute;
  right: 14px;
  top: 86px;
  width: min(360px, calc(100vw - 28px));
  border-radius: 20px;
  padding: 14px 14px 16px;
  background: linear-gradient(180deg, rgba(8, 10, 18, .92), rgba(8, 10, 18, .84));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
  transform: translateY(-10px) scale(.98);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
}
.mobile-nav.is-open{
  pointer-events: auto;
}
.mobile-nav.is-open .mobile-nav__panel{
  transform: translateY(0) scale(1);
  opacity: 1;
}

.mobile-nav__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 6px 6px 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 10px;
}
.mobile-nav__title{
  font-weight: 700;
  letter-spacing: .2px;
  color: rgba(234,240,255,.92);
}
.mobile-close{
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  display:grid;
  place-items:center;
  position: relative;
}
.mobile-close .xbar{
  position:absolute;
  width: 18px;
  height: 2px;
  background: rgba(234,240,255,.86);
  border-radius: 10px;
}
.mobile-close .xbar:nth-child(1){ transform: rotate(45deg); }
.mobile-close .xbar:nth-child(2){ transform: rotate(-45deg); }
.mobile-close:active{ transform: scale(.98); }

.mobile-nav__links{
  display:grid;
  gap: 8px;
  padding: 6px 4px 10px;
}
.mobile-nav__links a{
  padding: 12px 12px;
  border-radius: 14px;
  color: rgba(234,240,255,.84);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.mobile-nav__links a:hover{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
  transform: translateY(-1px);
}

body.menu-open{ overflow: hidden; } /* lock scroll when open */


@media (min-width: 861px){
  .nav-toggle{display:none}
  .mobile-drawer{display:none}
  .nav-overlay{display:none}
}


body{ overscroll-behavior: none; }

/* -----------------------------
   NAV ACTIVE ANIMATION + DESKTOP HAMBURGER SAFETY
   (added to ensure active item isn't only gray and hamburger never shows on desktop)
------------------------------ */

.nav-link{
  position: relative;
  padding: 10px 12px;
  border-radius: 14px;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.nav-link::after{
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34,211,238,.95), rgba(99,102,241,.95));
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
}

.nav-link.is-active{
  color: rgba(255,255,255,.96);
  background: rgba(255,255,255,.04);
  transform: translateY(-1px);
}

.nav-link.is-active::after{
  transform: scaleX(1);
  opacity: 1;
}

/* Keep desktop clean even if user opens hamburger then resizes */
@media (min-width: 861px){
  .nav-toggle, .mobile-drawer, .nav-overlay{ display: none !important; }
  body.menu-open{ overflow: auto !important; }
}


/* Extra spacing on mobile under CTA (as on screenshot request) */
@media (max-width: 1120px){
  .hero-right{ margin-top: 34px; }
  .cards-row{ margin-top: 54px; }
}
@media (max-width: 560px){
  .hero{ padding-bottom: 72px; }
  .hero-cta{ margin-top: 22px; }
}


@media (max-width: 420px){
  .header-inner{ gap: 12px; }
  .brand-name{ font-size: 20px; }
}

/* iOS tap / layering tweaks */
.nav-toggle{ cursor:pointer; -webkit-tap-highlight-color: transparent; touch-action: manipulation; z-index: 60; }


/* --- New Mobile Drawer (modern & simple) --- */
.nav-toggle{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
}
.nav-toggle:before, .nav-toggle:after, .nav-toggle span{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  background: rgba(234,240,255,.92);
  border-radius: 999px;
}
.nav-toggle:before{ top: 16px; }
.nav-toggle span{ top: 23px; opacity:.85; }
.nav-toggle:after{ top: 30px; }
.nav-toggle:active{ transform: scale(.98); }

.mobile-drawer{
  position: fixed;
  inset: 0;
  z-index: 75;
  pointer-events: none;
}
.mobile-drawer__panel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 86vw);
  padding: 18px 16px;
  background: linear-gradient(180deg, rgba(7, 9, 20, .92), rgba(7, 9, 20, .86));
  border-left: 1px solid rgba(255,255,255,.10);
  box-shadow: -30px 0 90px rgba(0,0,0,.55);
  backdrop-filter: blur(16px);
  transform: translateX(102%);
  transition: transform .26s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-drawer.is-open{
  pointer-events: auto;
}
.mobile-drawer.is-open .mobile-drawer__panel{
  transform: translateX(0);
}

.mobile-drawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-drawer__brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.mobile-drawer__close{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(234,240,255,.90);
  font-size: 22px;
  line-height: 1;
  display:grid;
  place-items:center;
  cursor:pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.mobile-drawer__close:active{ transform: scale(.98); }

.mobile-drawer__nav{
  display:grid;
  gap: 10px;
  padding-top: 6px;
}
.mobile-drawer__nav a{
  padding: 14px 14px;
  border-radius: 16px;
  color: rgba(234,240,255,.90);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.mobile-drawer__nav a:hover{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
  transform: translateY(-1px);
}

.mobile-drawer__actions{
  margin-top: auto;
  display:grid;
  gap: 12px;
  padding-top: 10px;
}

body.menu-open{ overflow:hidden; }

/* Overlay above content, under drawer */
.nav-overlay{ z-index: 70; }

/* Safe-area padding (iOS notch) */
.site-header .header-inner{ padding-top: env(safe-area-inset-top); }
.mobile-drawer__panel{ padding-top: calc(18px + env(safe-area-inset-top)); }

/* Overlay should start under header to keep header visible/clickable */
@media (max-width: 1024px){
  .nav-overlay{
    top: 78px;
    height: calc(100% - 78px);
  }
  .mobile-drawer__panel{
    top: 78px;
    height: calc(100% - 78px);
  }
  .mobile-drawer{ top: 0; }
}

@media (max-width: 1024px){ .nav-toggle{ z-index: 90; } }

body{ padding-top: calc(78px + env(safe-area-inset-top)); }

/* Overlay full-screen (header stays above because higher z-index) */
.nav-overlay{
  top: 0 !important;
  height: 100% !important;
}

/* Toggle icon: hamburger -> X (same button) */
@media (max-width: 1024px){
  .nav-toggle:before, .nav-toggle:after, .nav-toggle span{
    transition: transform .22s ease, opacity .18s ease, top .22s ease;
  }
  body.menu-open .nav-toggle:before{ top: 23px; transform: rotate(45deg); }
  body.menu-open .nav-toggle span{ opacity: 0; }
  body.menu-open .nav-toggle:after{ top: 23px; transform: rotate(-45deg); }
}

/* Full-screen mobile drawer */
@media (max-width: 1024px){
  .mobile-drawer{ display:block; }
  .mobile-drawer__panel{
    top: 0 !important;
    right: 0;
    width: 100vw;
    height: 100vh;
    padding: calc(22px + env(safe-area-inset-top)) 18px calc(22px + env(safe-area-inset-bottom));
    transform: translateX(102%);
    border-left: none;
    overflow: auto;
  }
  .mobile-drawer.is-open .mobile-drawer__panel{ transform: translateX(0); }
  .mobile-drawer__nav{
    gap: 12px;
    padding-top: 12px;
  }
  .mobile-drawer__nav a{
    padding: 16px 16px;
    font-size: 18px;
    border-radius: 18px;
  }
  .mobile-drawer__actions{
    padding-bottom: 6px;
  }
  .mobile-drawer__actions .btn{
    width: 100%;
    justify-content: center;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 16px;
  }
}

@media (max-width: 1024px){ .nav-overlay{ z-index:70; } .mobile-drawer{ z-index:75; } }


/* =========================
   Split layout (Variant B)
   ========================= */
.split-section{ padding: 66px 0 22px; }
.split-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items:start;
}
.split-left{
  padding-top: 6px;
}
.split-title{
  margin: 18px 0 12px;
  font-size: clamp(36px, 4.1vw, 58px);
  letter-spacing: -0.9px;
  line-height: 1.12;
}
.split-sub{
  margin: 0;
  color: rgba(232,238,255,.58);
  font-size: 17px;
  line-height: 1.7;
  max-width: 60ch;
}
.split-note{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  color: rgba(234,240,255,.80);
}
.split-note__dot{
  width:10px; height:10px;
  border-radius:999px;
  margin-top: 6px;
  background: rgba(34,211,238,1);
  box-shadow: 0 0 0 8px rgba(34,211,238,.10);
}

/* Right side – “list” look, no bubbles */
.seg-list,
.benefit-list{
  display: grid;
    gap: 24px;
  padding-top: 40px; /* mobil & tablet */
}

@media (min-width: 1024px){
  .seg-list,
  .benefit-list{
    padding-top: 220px; /* iba PC */
  }
}
.seg-item, .benefit-item{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 16px 16px;
  border-radius: 20px;
  background:
    radial-gradient(520px 260px at 20% 20%, rgba(34,211,238,.07), transparent 68%),
    radial-gradient(520px 260px at 80% 30%, rgba(168,85,247,.06), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 26px 90px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.seg-item:hover, .benefit-item:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.12);
  background:
    radial-gradient(520px 260px at 20% 20%, rgba(34,211,238,.09), transparent 68%),
    radial-gradient(520px 260px at 80% 30%, rgba(168,85,247,.08), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
}

.seg-icon, .check{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  flex: 0 0 auto;
}
.seg-body h3, .benefit-body h3{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.seg-body p, .benefit-body p{
  margin: 0;
  color: rgba(232,238,255,.58);
  font-size: 14.8px;
  line-height: 1.65;
}

/* Make “benefit” check pill smaller */
.check{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border-color: rgba(34,211,238,.20);
}

/* Responsive stacking */
@media (max-width: 1120px){
  .split-grid{ grid-template-columns: 1fr; gap: 24px; }
  .seg-item, .benefit-item{ padding: 14px 14px; }
}
@media (max-width: 560px){
  .split-section{ padding-top: 58px; }
  .seg-icon{ width: 42px; height: 42px; border-radius: 16px; }
  .seg-body h3, .benefit-body h3{ font-size: 17px; }
}

/* OBD visual (lightweight, performance-safe) */
.obd-visual{position:relative;max-width:420px;margin-top:22px}
.obd-device{width:100%;max-width:420px;margin:0 auto;will-change:transform;animation:obdFloat 6s ease-in-out infinite}
.obd-visual svg{width:100%;height:auto;display:block}
.signal-ring{position:absolute;left:50%;top:52%;transform:translate(-50%,-50%);width:260px;height:260px;border-radius:999px;border:2px solid rgba(34,211,238,.28);box-shadow:0 0 0 1px rgba(99,102,241,.18) inset;animation:ringPulse 2.6s ease-out infinite;pointer-events:none}
.signal-ring--2{border-color:rgba(99,102,241,.22);width:300px;height:300px;animation-delay:1.1s}
.obd-caption{display:flex;align-items:center;gap:10px;margin-top:10px;color:rgba(234,240,255,.86);font-size:14px}
.obd-caption__dot{width:8px;height:8px;border-radius:999px;background:rgba(34,211,238,.95);box-shadow:0 0 18px rgba(34,211,238,.55)}
@keyframes obdFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
@keyframes ringPulse{0%{transform:translate(-50%,-50%) scale(.88);opacity:.75}100%{transform:translate(-50%,-50%) scale(1.16);opacity:0}}
@media (max-width: 720px){
  .signal-ring{width:220px;height:220px}
  .signal-ring--2{width:260px;height:260px}
}
@media (prefers-reduced-motion: reduce){
  .obd-device,.signal-ring{animation:none!important}
}


/* FAQ */
.faq-section{margin-top:40px}
.faq-inner{max-width:820px}
.faq-list{margin-top:32px;display:grid;gap:14px}
.faq-item{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
border-radius:16px;padding:18px 22px;backdrop-filter:blur(6px)}
.faq-item summary{cursor:pointer;font-weight:600;font-size:17px;
list-style:none}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item p{margin-top:12px;color:rgba(234,240,255,.85);line-height:1.6}
.faq-item[open]{background:rgba(255,255,255,.06);border-color:rgba(34,211,238,.4)}





/* Phone spotlight */
.phone-spotlight{text-align:center}
.phone-stage{position:relative;margin-top:34px;min-height:520px}
.phone-glow{position:absolute;inset:0;margin:auto;width:380px;height:380px;
background:radial-gradient(circle, rgba(34,211,238,.32), rgba(99,102,241,.18), transparent 70%);
filter:blur(28px);opacity:.9;z-index:0}
.phone-mockup{position:relative;width:220px;margin:0 auto;z-index:2}
.phone-mockup::before{
  content:"";position:absolute;inset:-10px;border-radius:34px;
  background:linear-gradient(135deg,#22d3ee,#6366f1);opacity:.30;filter:blur(16px)
}
.phone-screen{border-radius:26px;overflow:hidden;background:#000;border:1px solid rgba(255,255,255,.12)}
.phone-screen img{width:100%;display:block;height:auto;max-height:520px;object-fit:cover}

/* bubbles should sit NEXT to phone (desktop) */
.phone-bubble{position:absolute;max-width:240px;padding:14px 16px;
background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);
border-radius:16px;text-align:left;font-size:14px;line-height:1.45;z-index:3}
.phone-bubble strong{display:block;margin-bottom:4px;font-weight:700}
.phone-bubble span{color:rgba(234,240,255,.82)}

/* left / right positioning so they are clearly beside the phone */
.bubble--one{top:34px;left:45%;transform:translateX(calc(-50% - 210px))}
.bubble--two{top:210px;left:55%;transform:translateX(calc(-50% + 210px))}
.bubble--three{bottom:34px;left:45%;transform:translateX(calc(-50% - 210px))}

/* ensure bubbles never go behind phone on smaller desktops */
@media (max-width: 1100px){
  .bubble--one{transform:translateX(calc(-50% - 190px))}
  .bubble--two{transform:translateX(calc(-50% + 190px))}
  .bubble--three{transform:translateX(calc(-50% - 190px))}
}

/* Mobile: shrink phone + stack bubbles as cards under it (perfect readability) */
@media (max-width: 900px){
  .phone-stage{min-height:auto}
  .phone-mockup{width:200px}
  .phone-glow{width:320px;height:320px}
  .phone-bubble{position:static;transform:none;margin:12px auto;max-width:520px}
}

/* Extra small phones */
@media (max-width: 420px){
  .phone-mockup{width:184px}
  .phone-bubble{padding:12px 14px;border-radius:14px;font-size:13px}
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .phone-mockup.float{animation:none!important}
}


/* Hero pill dot pulse */
.pill .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#22d3ee;
  display:inline-block;
  margin-right:8px;
  position:relative;
  animation:dotPulse 1.8s ease-in-out infinite;
}

@keyframes dotPulse{
  0%{
    box-shadow:0 0 0 0 rgba(34,211,238,.7);
    transform:scale(1);
  }
  70%{
    box-shadow:0 0 0 10px rgba(34,211,238,0);
    transform:scale(1.1);
  }
  100%{
    box-shadow:0 0 0 0 rgba(34,211,238,0);
    transform:scale(1);
  }
}

@media (prefers-reduced-motion: reduce){
  .pill .dot{animation:none;}
}


/* Header menu button fix (mobile + desktop) */
.nav-toggle{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:48px !important;
  height:48px !important;
  padding:0 !important;
  border-radius:16px !important;
  position:relative !important;
  overflow:hidden;
}

/* Ensure hamburger lines never overflow */
.nav-toggle:before,
.nav-toggle:after,
.nav-toggle > span{
  position:absolute !important;
  left:14px !important;
  right:14px !important;
  width:auto !important;
  height:2px !important;
  border-radius:999px !important;
}

.nav-toggle > span{
  display:block !important;
  background: rgba(234,240,255,.92) !important;
  top:23px !important;
  opacity:.9 !important;
}

/* Smooth transitions for X */
.nav-toggle:before,
.nav-toggle:after,
.nav-toggle > span{
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}

/* When menu is open, show X nicely centered */
body.menu-open .nav-toggle:before{ top:23px !important; transform: rotate(45deg); }
body.menu-open .nav-toggle:after{ top:23px !important; transform: rotate(-45deg); }
body.menu-open .nav-toggle > span{ opacity:0 !important; }





/* Mobile drawer extra spacing */
.mobile-drawer__panel{padding-top:28px}
.mobile-drawer__nav{margin-top:56px}
@media (max-width: 720px){
  .mobile-drawer__panel{padding-top:32px}
  .mobile-drawer__nav{margin-top:64px}
}

/* Features tabs */
.features-tabs__inner{max-width:1100px}
.tabs{display:inline-flex;gap:10px;padding:10px;border-radius:999px;
background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(8px);margin-top:20px}
.tab{appearance:none;border:0;background:transparent;color:rgba(234,240,255,.75);
padding:10px 14px;border-radius:999px;font-weight:600;cursor:pointer}
.tab.is-active{background:rgba(255,255,255,.08);color:rgba(234,240,255,.95);
box-shadow:0 0 0 1px rgba(34,211,238,.25) inset}
.tab-panels{margin-top:26px}
.tab-panel{display:none}
.tab-panel.is-active{display:block}

.setup-head{display:flex;flex-direction:column;align-items:center;gap:10px;margin-bottom:22px}
.pill--soft{background:rgba(99,102,241,.16);border:1px solid rgba(99,102,241,.22);color:rgba(234,240,255,.88)}
.setup-title,.more-title{font-size:44px;line-height:1.05;margin:0}
.more-head{max-width:760px;margin:0 auto 20px}
.more-sub{color:rgba(234,240,255,.74);margin-top:10px}

.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:36px;align-items:start}
.step{position:relative;text-align:left}
.step-badge{width:62px;height:62px;border-radius:18px;display:grid;place-items:center;
font-weight:900;font-size:26px;color:rgba(7,9,20,.92);
background:linear-gradient(135deg, rgba(34,211,238,.95), rgba(99,102,241,.95));
box-shadow:0 10px 30px rgba(0,0,0,.28)}
.step h4{margin:18px 0 8px;font-size:26px}
.step p{color:rgba(234,240,255,.74);line-height:1.6;margin:0;max-width:360px}
.step-line{position:absolute;top:31px;left:82px;right:-18px;height:2px;
background:linear-gradient(90deg, rgba(34,211,238,.55), rgba(99,102,241,.30));opacity:.75}
.steps .step:last-child .step-line{display:none}

.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:26px}
.feature-card{padding:22px 22px;border-radius:20px;
background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(8px);text-align:left}
.feature-ic{width:46px;height:46px;border-radius:14px;display:grid;place-items:center;
background:rgba(34,211,238,.10);border:1px solid rgba(34,211,238,.18);font-size:22px}
.feature-card h4{margin:16px 0 8px;font-size:22px}
.feature-card p{margin:0;color:rgba(234,240,255,.72);line-height:1.6}

@media (max-width: 980px){
  .setup-title,.more-title{font-size:34px}
  .steps{grid-template-columns:1fr;gap:22px;max-width:560px;margin:0 auto}
  .step-line{display:none}
  .step p{max-width:100%}
  .feature-grid{grid-template-columns:1fr;max-width:560px;margin:22px auto 0}
  .tabs{width:100%;justify-content:center}
}

/* Pricing */
.pricing-inner{max-width:1100px}
.pricing-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;margin-top:36px}
.price-card{position:relative;padding:28px;border-radius:24px;
background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(10px)}
.price-card--featured{box-shadow:0 0 0 1px rgba(34,211,238,.45), 0 30px 80px rgba(0,0,0,.45)}
.price-badge{position:absolute;top:-14px;right:20px;
background:linear-gradient(135deg, rgba(34,211,238,.95), rgba(99,102,241,.95));
color:#070914;font-weight:700;font-size:13px;padding:6px 12px;border-radius:999px}
.price-head{display:flex;align-items:center;gap:14px}
.price-ic{width:48px;height:48px;border-radius:14px;display:grid;place-items:center;
background:rgba(34,211,238,.12);font-size:22px}
.price-note{margin:4px 0 0;color:rgba(234,240,255,.65)}
.price{margin:26px 0}
.price-value{font-size:52px;font-weight:800}
.price-sub{display:block;color:rgba(234,240,255,.65)}
.price-list{margin:22px 0 0;padding:0;list-style:none}
.price-list li{margin:10px 0;color:rgba(234,240,255,.8)}
.pricing-trust{display:flex;flex-wrap:wrap;gap:18px;justify-content:center;
margin-top:36px;color:rgba(234,240,255,.75)}

@media (max-width: 980px){
  .pricing-grid{grid-template-columns:1fr}
  .price-value{font-size:44px}
}


/* Contact section (modern like screenshot) */
.contact-section{position:relative; padding: 110px 0 70px; overflow:hidden}
.contact-section .section-title{margin-top: 10px}
.contact-inner{position:relative}
.contact-grid{
  margin-top: 52px;
  display:grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 46px;
  align-items:start;
}
.contact-h{
  margin: 0 0 18px;
  font-size: 22px;
  letter-spacing: -0.3px;
}
.contact-item{
  display:flex;
  gap: 14px;
  align-items:center;
  padding: 14px 14px;
  border-radius: 18px;
  background:
    radial-gradient(520px 260px at 20% 20%, rgba(34,211,238,.06), transparent 70%),
    radial-gradient(520px 260px at 80% 30%, rgba(168,85,247,.05), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 26px 90px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
  margin-bottom: 12px;
}
.contact-icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  color: rgba(130, 230, 255, .95);
  flex: 0 0 auto;
}
.contact-label{font-size: 12px; color: rgba(232,238,255,.55); margin-bottom: 2px}
.contact-value{font-weight: 700; color: rgba(232,238,255,.92); text-decoration:none}
a.contact-value:hover{opacity:.9; text-decoration:underline}

.hours-card{
  margin-top: 18px;
  padding: 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(34,211,238,.28);
  background:
    radial-gradient(600px 260px at 10% 20%, rgba(34,211,238,.06), transparent 70%),
    radial-gradient(520px 260px at 80% 30%, rgba(168,85,247,.05), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  backdrop-filter: blur(16px);
}
.hours-title{font-weight:800; margin: 0 0 10px}
.hours-row{
  display:flex; align-items:baseline; justify-content:space-between;
  gap: 12px;
  color: rgba(232,238,255,.70);
  padding: 6px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.hours-row:first-of-type{border-top:none; padding-top: 0}
.hours-row strong{color: rgba(232,238,255,.92); font-weight:800}

.form-card{
  position:relative;
  padding: 26px 26px;
  border-radius: 26px;
  background:
    radial-gradient(520px 260px at 20% 20%, rgba(34,211,238,.07), transparent 68%),
    radial-gradient(520px 260px at 80% 30%, rgba(168,85,247,.07), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 36px 120px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}
.form-card:before{
  content:"";
  position:absolute; inset:-1px;
  border-radius: 26px;
  padding:1px;
  background: linear-gradient(90deg, rgba(34,211,238,.55), rgba(168,85,247,.55));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events:none;
  opacity:.6;
}
.form-title{margin: 0 0 14px; font-size: 20px; font-weight: 900; letter-spacing: -0.2px}
.contact-form{position:relative; z-index: 1}
.form-grid{display:grid; grid-template-columns: 1fr 1fr; gap: 14px}
.field{display:block; margin-top: 14px}
.field-label{display:block; font-size: 12px; color: rgba(232,238,255,.58); margin-bottom: 8px}
.field input, .field textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10, 12, 22, .45);
  color: rgba(232,238,255,.92);
  padding: 12px 14px;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.field textarea{resize: vertical; min-height: 120px}
.field input::placeholder, .field textarea::placeholder{color: rgba(232,238,255,.35)}
.field input:focus, .field textarea:focus{
  border-color: rgba(34,211,238,.35);
  box-shadow: 0 0 0 4px rgba(34,211,238,.10);
}
.field.is-error input, .field.is-error textarea{border-color: rgba(255, 92, 154, .55)}
.field .err{margin-top: 8px; font-size: 12px; color: rgba(255, 92, 154, .95)}

.btn--block{width:100%; justify-content:center; margin-top: 18px}
.btn-ic{display:inline-flex; margin-left: 10px}

.form-status{margin-top: 12px; font-size: 13px; color: rgba(232,238,255,.70)}
.form-status.is-ok{color: rgba(110, 255, 199, .95)}
.form-status.is-bad{color: rgba(255, 92, 154, .95)}

.contact-glow{
  position:absolute; inset:auto -20% -120px -20%;
  height: 360px;
  background:
    radial-gradient(closest-side at 35% 30%, rgba(34,211,238,.18), transparent 62%),
    radial-gradient(closest-side at 70% 40%, rgba(168,85,247,.18), transparent 65%);
  filter: blur(36px);
  opacity:.55;
  pointer-events:none;
}

@media (max-width: 860px){
  .contact-section{padding: 86px 0 52px}
  .contact-grid{grid-template-columns: 1fr; gap: 24px; margin-top: 34px}
  .form-grid{grid-template-columns: 1fr}
}



/* Trackify – čisté HTML+CSS (viac 1:1 + animácie) */
:root{
  --bg0:#070914;
  --bg1:#060a14;
  --text:#eaf0ff;
  --muted:rgba(232, 238, 255, .68);

  --cyan:#22d3ee;
  --cyan2:#38bdf8;
  --violet:#a855f7;
  --violet2:#7c3aed;

  --glass: rgba(10, 14, 28, .72);
  --glass2: rgba(12, 18, 34, .78);

  --r:26px;
  --r2:30px;

  --shadow: 0 30px 90px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html,body{
  background-color: var(--bg0);height:100%}
html{scroll-behavior:smooth; background: var(--bg0);}

body{
  background-color: var(--bg0);
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: linear-gradient(180deg, var(--bg0), #070a12 45%, var(--bg0));
  overflow-x:hidden;
}

.bg-blobs{
  position:fixed; inset:-20%;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 25% 40%, rgba(34, 211, 238, .22), transparent 60%),
    radial-gradient(920px 520px at 70% 35%, rgba(168, 85, 247, .20), transparent 62%),
    radial-gradient(850px 560px at 70% 70%, rgba(34, 211, 238, .12), transparent 66%);
  filter: blur(0px);
  animation: blobShift 12s ease-in-out infinite alternate;
  opacity: 1;
}

@keyframes blobShift{
  0%{ transform: translate3d(0,0,0) scale(1); filter: blur(0px); }
  100%{ transform: translate3d(-2%, -1%, 0) scale(1.03); filter: blur(1px); }
}

.bg-grid{
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0, rgba(255,255,255,.05) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0, rgba(255,255,255,.035) 1px, transparent 1px, transparent 60px);
  opacity:.14;
  mask-image: radial-gradient(900px 520px at 40% 35%, rgba(0,0,0,1), transparent 70%);
  animation: gridDrift 18s linear infinite;
}
@keyframes gridDrift{
  0%{ transform: translate3d(0,0,0); }
  100%{ transform: translate3d(-60px, -60px, 0); }
}

.bg-vignette{
  position:fixed; inset:0;
  pointer-events:none;
  background: radial-gradient(900px 520px at 50% 30%, transparent 55%, rgba(0,0,0,.55) 100%);
  opacity:.9;
}

a{color:inherit; text-decoration:none}
.container{max-width: 1200px; margin:0 auto; padding: 0 26px}

/* Header */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:80;
  background: linear-gradient(180deg, rgba(6, 10, 20, .92), rgba(6, 10, 20, .68));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{display:flex; align-items:center; gap:14px}
.brand-icon{
  width:46px; height:46px;
  display:grid; place-items:center;
  border-radius:14px;
  font-weight:800;
  color:#0b1020;
  background: linear-gradient(135deg, rgba(34,211,238,1), rgba(168,85,247,1));
  box-shadow: 0 0 0 8px rgba(34,211,238,.08);
}
.brand-name{font-weight:800; font-size:22px; letter-spacing:.2px}

.nav{display:flex; align-items:center; gap:10px}
.nav-link{
  color: rgba(234,240,255,.72);
  font-weight:500;
  font-size:15px;
  padding:10px 16px;
  border-radius:999px;
  position:relative;
  transition: background .2s ease, color .2s ease;
}
.nav-link:hover{color: rgba(234,240,255,.92); background: rgba(255,255,255,.04)}
.nav-link.is-active{
  background: rgba(255,255,255,.07);
  color: rgba(234,240,255,.90);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

.header-actions{display:flex; align-items:center; gap:14px}

/* Buttons */
.btn{
  border:1px solid transparent;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight:600;
  font-size:15px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  white-space:nowrap;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  will-change: transform;
}
.btn--md{padding: 11px 16px; border-radius: 14px; font-size:15px}

.btn--primary{
  color:#05101a;
  background: linear-gradient(90deg, rgba(34,211,238,1), rgba(168,85,247,1));
  box-shadow: 0 14px 40px rgba(34,211,238,.10), 0 14px 40px rgba(168,85,247,.10);
}
.btn--outline{
  color: rgba(34,211,238,.95);
  background: rgba(0,0,0,0);
  border-color: rgba(34,211,238,.40);
  box-shadow: inset 0 0 0 1px rgba(34,211,238,.08);
}
.btn--dark{
  background: rgba(7, 12, 22, .58);
  border-color: rgba(255,255,255,.10);
  color: rgba(234,240,255,.92);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.btn--glass{
  backdrop-filter: blur(10px);
}
.btn--lg{padding: 16px 22px; border-radius: 16px; font-size:16px}
.arrow{font-size:18px; margin-left:2px}
.play{opacity:.9}

.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}

/* Shine animation on primary button */
.btn--shine{
  position:relative;
  overflow:hidden;
}
.btn--shine:before{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width:60%;
  height:180%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  opacity:.0;
}
.btn--shine:hover:before{
  animation: shine 1.2s ease;
  opacity:.9;
}
@keyframes shine{
  0%{ transform: translateX(0) skewX(-20deg); opacity:0; }
  15%{ opacity:.9; }
  100%{ transform: translateX(320%) skewX(-20deg); opacity:0; }
}

/* Mobile */
.nav-toggle{
  display:inline-flex;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(8, 10, 18, .55);
  padding:0 12px;
}
.nav-toggle span{
  display:block; height:2px; width:100%;
  background: rgba(234,240,255,.85);
  border-radius:10px;
}
.nav-toggle span + span{margin-top:6px}
.mobile-nav{
  display:none;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 26px 22px;
  background: rgba(8, 10, 18, .88);
}
.mobile-nav a{
  display:block;
  padding:12px 10px;
  color: rgba(234,240,255,.82);
}
.mobile-actions{display:flex; gap:12px; padding-top:10px; flex-wrap:wrap}

/* Hero */
.hero{padding: 48px 0 34px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 46px;
  align-items:start;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight:500;
  color: rgba(34,211,238,.95);
  background: rgba(10, 30, 45, .55);
  border: 1px solid rgba(34,211,238,.18);
  box-shadow: 0 18px 60px rgba(34,211,238,.08);
}
.pill--hero{margin-top: 16px}
.dot{
  width:8px; height:8px;
  border-radius:999px;
  background: rgba(34,211,238,1);
  box-shadow: 0 0 0 6px rgba(34,211,238,.10);
}

.hero-title{
  margin: 26px 0 18px;
  font-size: clamp(44px, 4.6vw, 74px);
  line-height: 1.06;
  letter-spacing: -0.9px;
}
.hero-sub{
  margin:0;
  max-width: 54ch;
  color: var(--muted);
  font-size: 17px;
  line-height:1.7;
}

.grad-text{
  background: linear-gradient(90deg, rgba(34,211,238,1), rgba(168,85,247,1));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.grad-text--small{
  background: linear-gradient(90deg, rgba(34,211,238,1), rgba(168,85,247,1));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.hero-cta{
  margin-top: 26px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* Product frame */
.product-frame{
  border-radius: 34px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(34,211,238,.95), rgba(168,85,247,.95));
  box-shadow: 0 30px 100px rgba(34,211,238,.10), 0 30px 100px rgba(168,85,247,.10);
  position:relative;
  overflow:hidden;
}
.product-frame:after{
  content:"";
  position:absolute; inset:-40%;
  background: radial-gradient(circle at 60% 40%, rgba(34,211,238,.12), transparent 55%),
              radial-gradient(circle at 30% 60%, rgba(168,85,247,.10), transparent 55%);
  filter: blur(10px);
  animation: frameGlow 4.8s ease-in-out infinite alternate;
}
@keyframes frameGlow{
  0%{ transform: translate3d(0,0,0) rotate(0deg); opacity:.7; }
  100%{ transform: translate3d(2%, -1%, 0) rotate(2deg); opacity:1; }
}
.product-frame__inner{
  position:relative;
  z-index:1;
  border-radius: 32px;
  padding: 40px 34px;
  background:
    radial-gradient(500px 240px at 50% 40%, rgba(34,211,238,.10), transparent 70%),
    radial-gradient(520px 260px at 70% 40%, rgba(168,85,247,.10), transparent 70%),
    linear-gradient(180deg, rgba(15, 24, 44, .62), rgba(9, 14, 28, .78));
  border: 1px solid rgba(255,255,255,.06);
  min-height: 420px;
}

.product-card{
  position:absolute;
  inset: 80px 60px 60px 60px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  transform: translateZ(0);
}

.app-icon{
  width: 96px; height: 96px;
  border-radius: 24px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(34,211,238,1), rgba(168,85,247,1));
  box-shadow: 0 22px 70px rgba(34,211,238,.18), 0 22px 70px rgba(168,85,247,.12);
}
.app-icon--small{
  width: 74px; height: 74px;
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(34,211,238,.16), 0 18px 60px rgba(168,85,247,.10);
}
.glow{
  position:relative;
}
.glow:after{
  content:"";
  position:absolute; inset:-30%;
  background: radial-gradient(circle at 40% 40%, rgba(34,211,238,.45), transparent 60%),
              radial-gradient(circle at 65% 65%, rgba(168,85,247,.35), transparent 60%);
  filter: blur(14px);
  opacity:.55;
  z-index:-1;
  animation: iconPulse 2.8s ease-in-out infinite;
}
@keyframes iconPulse{
  0%,100%{ transform: scale(1); opacity:.42; }
  50%{ transform: scale(1.06); opacity:.75; }
}

.product-name{font-weight:700; margin-top: 4px}
.product-desc{color: rgba(232,238,255,.60); font-size:14px}

.status-badge{
  position:absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 12, 22, .60);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(232,238,255,.85);
  font-weight:600;
  font-size:14px;
  backdrop-filter: blur(10px);
}
.status-dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(34,197,94,1);
  box-shadow: 0 0 0 6px rgba(34,197,94,.10);
  animation: onlineBlink 1.4s ease-in-out infinite;
}
@keyframes onlineBlink{
  0%,100%{ transform: scale(1); opacity: 1; }
  50%{ transform: scale(.82); opacity: .65; }
}

.price-tag{
  position:absolute;
  left: 20px;
  top: 55%;
  transform: translateY(-50%);
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(8, 12, 22, .60);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}




/* Floating product frame */
.float{ animation: floaty 4.5s ease-in-out infinite; transform-origin: center; }
@keyframes floaty{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-10px); }
}

/* Cards / grids */
.cards-row{margin-top: 38px; display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px}
.grid-4{display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px}
.grid-3big{display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px}

.glass-card{
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, var(--edge1), var(--edge2));
  position:relative;
  box-shadow: 0 22px 80px rgba(0,0,0,.35);
  transition: transform .18s ease, filter .18s ease;
}
.glass-card:hover{ transform: translateY(-4px); filter: saturate(1.05); }
.glass-inner{
  border-radius: 26px;
  padding: 28px 30px;
  background:
    radial-gradient(520px 260px at 20% 20%, rgba(34,211,238,.08), transparent 65%),
    radial-gradient(520px 260px at 80% 30%, rgba(168,85,247,.07), transparent 65%),
    linear-gradient(180deg, rgba(12, 18, 34, .82), rgba(10, 14, 28, .78));
  border: 1px solid rgba(255,255,255,.06);
  min-height: 188px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
}

.glass-card h3{
  margin: 14px 0 10px;
  font-size: 20px;
  letter-spacing:-0.2px;
}
.glass-card p{
  margin:0;
  color: rgba(232,238,255,.58);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 48ch;
  margin-left:auto;
  margin-right:auto;
}

.glass-card--tall .glass-inner{min-height: 300px; padding-top: 34px; padding-bottom: 34px}
.glass-card--big .glass-inner{min-height: 260px; padding-top: 34px; padding-bottom: 34px; text-align:left}
.glass-card--big h3{font-size: 26px; margin-top: 18px}
.glass-card--big p{font-size: 15.5px; max-width: 56ch; margin-left:0; margin-right:0}

.mini-icon{
  width: 64px; height: 64px;
  border-radius: 18px;
  display:grid; place-items:center;
  margin:0 auto 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.mini-icon--big{width:64px; height:64px}

.big-icon{display:flex; justify-content:center}
.glass-card--big .big-icon{justify-content:flex-start}

/* Accents */
.accent--cyan{--edge1: rgba(34,211,238,.95); --edge2: rgba(34,211,238,.55);}
.accent--cyan2{--edge1: rgba(34,211,238,.75); --edge2: rgba(56,189,248,.85);}
.accent--violet{--edge1: rgba(168,85,247,.95); --edge2: rgba(34,211,238,.55);}
.accent--violet2{--edge1: rgba(168,85,247,.85); --edge2: rgba(168,85,247,.55);}

/* Section heads */
.section{padding: 56px 0 20px}
.section-head{
  text-align:center;
  margin-bottom: 28px;
}
.pill--section{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight:600;
  color: rgba(34,211,238,.9);
  background: rgba(10, 30, 45, .40);
  border: 1px solid rgba(34,211,238,.14);
}
.section-title{
  margin: 18px 0 10px;
  font-size: clamp(38px, 4.2vw, 62px);
  letter-spacing: -0.9px;
  line-height: 1.1;
}
.section-sub{
  margin:0;
  color: rgba(232,238,255,.56);
  font-size: 17px;
  line-height: 1.65;
  max-width: 72ch;
  margin-left:auto;
  margin-right:auto;
}


/* Reveal animation */
.reveal{
  opacity:0;
  transform: translateY(16px);
  filter: blur(6px);
  transition: opacity .6s ease, transform .6s ease, filter .6s ease;
  will-change: opacity, transform, filter;
}
.reveal.is-in{
  opacity:1;

  filter: blur(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .bg-grid, .bg-blobs, .float, .glow:after, .status-dot, .product-frame:after{ animation:none !important; }
  .reveal{ transition:none !important; opacity:1; transform:none; filter:none; }
  *{ scroll-behavior:auto !important; }
}

/* Responsive */
@media (max-width: 1120px){
  .hero-grid{grid-template-columns: 1fr; gap: 28px}
  .product-frame__inner{min-height: 380px}
  .product-card{inset: 70px 44px 50px 44px}
  .grid-4{grid-template-columns: repeat(2, 1fr)}
  .grid-3big{grid-template-columns: 1fr}
  .cards-row{grid-template-columns: 1fr}
}
@media (max-width: 1024px){
  .nav{display:none}
  .header-actions{display:none}
  .nav-toggle{display:inline-flex; align-items:center; justify-content:center}
  .mobile-drawer{display:block}
  .footer-inner{flex-direction:column}
}
@media (max-width: 560px){
  .container{padding: 0 18px}
  .hero{padding-top: 34px}
  .hero-cta{gap:12px}
  .btn--lg{width:100%; justify-content:center}
  .product-card{inset: 78px 22px 34px 22px}
  .status-badge{right: 14px}
  .price-tag{left: 14px}
}

/* Animated modern footer */
.site-footer{position:relative;margin-top:70px;padding:44px 0 34px;background:rgba(7,9,20,.65);
border-top:1px solid rgba(255,255,255,.06);overflow:hidden}
.footer-topline{position:absolute;left:0;top:0;height:2px;width:100%;
background:linear-gradient(90deg, rgba(34,211,238,.0), rgba(34,211,238,.75), rgba(99,102,241,.75), rgba(34,211,238,.0));
background-size:200% 100%;animation:footerLine 7s ease-in-out infinite}
.footer-glow{position:absolute;inset:-120px -40px auto -40px;height:220px;pointer-events:none;
background:radial-gradient(closest-side, rgba(34,211,238,.22), rgba(99,102,241,.14), rgba(7,9,20,0));
filter:blur(14px);opacity:.85;animation:footerGlow 9s ease-in-out infinite}
.footer-shell{display:flex;align-items:flex-start;justify-content:space-between;gap:22px}
.footer-brand{display:flex;align-items:center;gap:14px}
.footer-mark{width:46px;height:46px;border-radius:14px;display:grid;place-items:center;
background:linear-gradient(135deg, rgba(34,211,238,.85), rgba(99,102,241,.85));
color:#070914;font-weight:900}
.footer-brand__name{font-weight:800;letter-spacing:.2px}
.footer-brand__sub{margin-top:2px;color:rgba(234,240,255,.72);font-size:13px}
.footer-meta{display:flex;flex-direction:column;align-items:flex-end;gap:10px}
.footer-links{display:flex;gap:14px;flex-wrap:wrap;justify-content:flex-end}
.footer-link{color:rgba(234,240,255,.78);text-decoration:none;font-size:13px;border-bottom:1px solid rgba(234,240,255,.16);padding-bottom:2px}
.footer-link:hover{color:rgba(234,240,255,.95);border-bottom-color:rgba(34,211,238,.55)}
.footer-copy{color:rgba(234,240,255,.62);font-size:12px}

@keyframes footerLine{0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}
@keyframes footerGlow{0%,100%{transform:translateY(0)}50%{transform:translateY(18px)}}

@media (max-width: 720px){
  .site-footer{padding:34px 0 26px}
  .footer-shell{flex-direction:column;align-items:flex-start}
  .footer-meta{align-items:flex-start}
  .footer-mark{width:44px;height:44px;border-radius:13px}
}
@media (prefers-reduced-motion: reduce){
  .footer-topline,.footer-glow{animation:none!important}
}


/* Footer */
.footer{
  padding: 48px 0 56px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 26px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 24px;
}
.brand--footer .brand-icon{ box-shadow: 0 0 0 8px rgba(168,85,247,.08); }
.footer-text{ margin: 12px 0 0; color: rgba(232,238,255,.60); max-width: 42ch; }
.footer-right{ display:flex; flex-wrap:wrap; gap: 16px; padding-top: 8px; }
.footer-link{
  color: rgba(234,240,255,.70);
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.footer-link:hover{ color: rgba(234,240,255,.92); background: rgba(255,255,255,.05); }


/* Mobile drawer + overlay (dizajn + animácia) */
.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  z-index: 70;
}
.nav-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* Hamburger button – morph to X */
.nav-toggle{
  display:inline-flex;
  width:46px; height:46px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(8, 10, 18, .55);
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
  padding:0;
}
.nav-toggle .bar{
  position:absolute;
  left: 12px;
  right: 12px;
  height:2px;
  background: rgba(234,240,255,.90);
  border-radius:10px;
  transform-origin: center;
  transition: transform .22s ease, opacity .18s ease, top .22s ease, bottom .22s ease;
}
.nav-toggle{ position: relative; }
.nav-toggle .bar:nth-child(1){ top: 16px; }
.nav-toggle .bar:nth-child(2){ top: 22px; opacity: .85; }
.nav-toggle .bar:nth-child(3){ top: 28px; }

.nav-toggle.is-open .bar:nth-child(1){ top: 22px; transform: rotate(45deg); }
.nav-toggle.is-open .bar:nth-child(2){ opacity: 0; }
.nav-toggle.is-open .bar:nth-child(3){ top: 22px; transform: rotate(-45deg); }

.nav-toggle:active{ transform: scale(.98); }

/* Drawer panel */
.mobile-nav{
  display:none;
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
}
.mobile-nav__panel{
  position:absolute;
  right: 14px;
  top: 86px;
  width: min(360px, calc(100vw - 28px));
  border-radius: 20px;
  padding: 14px 14px 16px;
  background: linear-gradient(180deg, rgba(8, 10, 18, .92), rgba(8, 10, 18, .84));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
  transform: translateY(-10px) scale(.98);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
}
.mobile-nav.is-open{
  pointer-events: auto;
}
.mobile-nav.is-open .mobile-nav__panel{
  transform: translateY(0) scale(1);
  opacity: 1;
}

.mobile-nav__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 6px 6px 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 10px;
}
.mobile-nav__title{
  font-weight: 700;
  letter-spacing: .2px;
  color: rgba(234,240,255,.92);
}
.mobile-close{
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  display:grid;
  place-items:center;
  position: relative;
}
.mobile-close .xbar{
  position:absolute;
  width: 18px;
  height: 2px;
  background: rgba(234,240,255,.86);
  border-radius: 10px;
}
.mobile-close .xbar:nth-child(1){ transform: rotate(45deg); }
.mobile-close .xbar:nth-child(2){ transform: rotate(-45deg); }
.mobile-close:active{ transform: scale(.98); }

.mobile-nav__links{
  display:grid;
  gap: 8px;
  padding: 6px 4px 10px;
}
.mobile-nav__links a{
  padding: 12px 12px;
  border-radius: 14px;
  color: rgba(234,240,255,.84);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.mobile-nav__links a:hover{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
  transform: translateY(-1px);
}

body.menu-open{ overflow: hidden; } /* lock scroll when open */


@media (min-width: 861px){
  .nav-toggle{display:none}
  .mobile-drawer{display:none}
  .nav-overlay{display:none}
}


body{ overscroll-behavior: none; }


/* Extra spacing on mobile under CTA (as on screenshot request) */
@media (max-width: 1120px){
  .hero-right{ margin-top: 34px; }
  .cards-row{ margin-top: 54px; }
}
@media (max-width: 560px){
  .hero{ padding-bottom: 72px; }
  .hero-cta{ margin-top: 22px; }
}


@media (max-width: 420px){
  .header-inner{ gap: 12px; }
  .brand-name{ font-size: 20px; }
}

/* iOS tap / layering tweaks */
.nav-toggle{ cursor:pointer; -webkit-tap-highlight-color: transparent; touch-action: manipulation; z-index: 60; }


/* --- New Mobile Drawer (modern & simple) --- */
.nav-toggle{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
}
.nav-toggle:before, .nav-toggle:after, .nav-toggle span{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  background: rgba(234,240,255,.92);
  border-radius: 999px;
}
.nav-toggle:before{ top: 16px; }
.nav-toggle span{ top: 23px; opacity:.85; }
.nav-toggle:after{ top: 30px; }
.nav-toggle:active{ transform: scale(.98); }

.mobile-drawer{
  position: fixed;
  inset: 0;
  z-index: 75;
  pointer-events: none;
}
.mobile-drawer__panel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 86vw);
  padding: 18px 16px;
  background: linear-gradient(180deg, rgba(7, 9, 20, .92), rgba(7, 9, 20, .86));
  border-left: 1px solid rgba(255,255,255,.10);
  box-shadow: -30px 0 90px rgba(0,0,0,.55);
  backdrop-filter: blur(16px);
  transform: translateX(102%);
  transition: transform .26s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-drawer.is-open{
  pointer-events: auto;
}
.mobile-drawer.is-open .mobile-drawer__panel{
  transform: translateX(0);
}

.mobile-drawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-drawer__brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.mobile-drawer__close{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(234,240,255,.90);
  font-size: 22px;
  line-height: 1;
  display:grid;
  place-items:center;
  cursor:pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.mobile-drawer__close:active{ transform: scale(.98); }

.mobile-drawer__nav{
  display:grid;
  gap: 10px;
  padding-top: 6px;
}
.mobile-drawer__nav a{
  padding: 14px 14px;
  border-radius: 16px;
  color: rgba(234,240,255,.90);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.mobile-drawer__nav a:hover{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
  transform: translateY(-1px);
}

.mobile-drawer__actions{
  margin-top: auto;
  display:grid;
  gap: 12px;
  padding-top: 10px;
}

body.menu-open{ overflow:hidden; }

/* Overlay above content, under drawer */
.nav-overlay{ z-index: 70; }

/* Safe-area padding (iOS notch) */
.site-header .header-inner{ padding-top: env(safe-area-inset-top); }
.mobile-drawer__panel{ padding-top: calc(18px + env(safe-area-inset-top)); }

/* Overlay should start under header to keep header visible/clickable */
@media (max-width: 1024px){
  .nav-overlay{
    top: 78px;
    height: calc(100% - 78px);
  }
  .mobile-drawer__panel{
    top: 78px;
    height: calc(100% - 78px);
  }
  .mobile-drawer{ top: 0; }
}

@media (max-width: 1024px){ .nav-toggle{ z-index: 90; } }

body{ padding-top: calc(78px + env(safe-area-inset-top)); }

/* Overlay full-screen (header stays above because higher z-index) */
.nav-overlay{
  top: 0 !important;
  height: 100% !important;
}

/* Toggle icon: hamburger -> X (same button) */
@media (max-width: 1024px){
  .nav-toggle:before, .nav-toggle:after, .nav-toggle span{
    transition: transform .22s ease, opacity .18s ease, top .22s ease;
  }
  body.menu-open .nav-toggle:before{ top: 23px; transform: rotate(45deg); }
  body.menu-open .nav-toggle span{ opacity: 0; }
  body.menu-open .nav-toggle:after{ top: 23px; transform: rotate(-45deg); }
}

/* Full-screen mobile drawer */
@media (max-width: 1024px){
  .mobile-drawer{ display:block; }
  .mobile-drawer__panel{
    top: 0 !important;
    right: 0;
    width: 100vw;
    height: 100vh;
    padding: calc(22px + env(safe-area-inset-top)) 18px calc(22px + env(safe-area-inset-bottom));
    transform: translateX(102%);
    border-left: none;
    overflow: auto;
  }
  .mobile-drawer.is-open .mobile-drawer__panel{ transform: translateX(0); }
  .mobile-drawer__nav{
    gap: 12px;
    padding-top: 12px;
  }
  .mobile-drawer__nav a{
    padding: 16px 16px;
    font-size: 18px;
    border-radius: 18px;
  }
  .mobile-drawer__actions{
    padding-bottom: 6px;
  }
  .mobile-drawer__actions .btn{
    width: 100%;
    justify-content: center;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 16px;
  }
}

@media (max-width: 1024px){ .nav-overlay{ z-index:70; } .mobile-drawer{ z-index:75; } }

/* Mobile drawer header */
.mobile-drawer__title{ font-weight:800; letter-spacing:.2px; line-height:1.1; }
.mobile-drawer__sub{ color: rgba(234,240,255,.70); font-size: 13px; margin-top: 2px; }

/* Footer logo */
.footer-logo{ width:100%; height:100%; object-fit:cover; display:block; border-radius: 14px; }


/* =========================
   Split layout (Variant B)
   ========================= */
.split-section{ padding: 66px 0 22px; }
.split-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items:start;
}
.split-left{
  padding-top: 6px;
}
.split-title{
  margin: 18px 0 12px;
  font-size: clamp(36px, 4.1vw, 58px);
  letter-spacing: -0.9px;
  line-height: 1.12;
}
.split-sub{
  margin: 0;
  color: rgba(232,238,255,.58);
  font-size: 17px;
  line-height: 1.7;
  max-width: 60ch;
}
.split-note{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  color: rgba(234,240,255,.80);
}
.split-note__dot{
  width:10px; height:10px;
  border-radius:999px;
  margin-top: 6px;
  background: rgba(34,211,238,1);
  box-shadow: 0 0 0 8px rgba(34,211,238,.10);
}

/* Right side – “list” look, no bubbles */
.seg-list,
.benefit-list{
  display: grid;
    gap: 24px;
  padding-top: 40px; /* mobil & tablet */
}

@media (min-width: 1024px){
  .seg-list,
  .benefit-list{
    padding-top: 220px; /* iba PC */
  }
}
.seg-item, .benefit-item{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 16px 16px;
  border-radius: 20px;
  background:
    radial-gradient(520px 260px at 20% 20%, rgba(34,211,238,.07), transparent 68%),
    radial-gradient(520px 260px at 80% 30%, rgba(168,85,247,.06), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 26px 90px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.seg-item:hover, .benefit-item:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.12);
  background:
    radial-gradient(520px 260px at 20% 20%, rgba(34,211,238,.09), transparent 68%),
    radial-gradient(520px 260px at 80% 30%, rgba(168,85,247,.08), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
}

.seg-icon, .check{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  flex: 0 0 auto;
}
.seg-body h3, .benefit-body h3{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.seg-body p, .benefit-body p{
  margin: 0;
  color: rgba(232,238,255,.58);
  font-size: 14.8px;
  line-height: 1.65;
}

/* Make “benefit” check pill smaller */
.check{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border-color: rgba(34,211,238,.20);
}

/* Responsive stacking */
@media (max-width: 1120px){
  .split-grid{ grid-template-columns: 1fr; gap: 24px; }
  .seg-item, .benefit-item{ padding: 14px 14px; }
}
@media (max-width: 560px){
  .split-section{ padding-top: 58px; }
  .seg-icon{ width: 42px; height: 42px; border-radius: 16px; }
  .seg-body h3, .benefit-body h3{ font-size: 17px; }
}

/* OBD visual (lightweight, performance-safe) */
.obd-visual{position:relative;max-width:420px;margin-top:22px}
.obd-device{width:100%;max-width:420px;margin:0 auto;will-change:transform;animation:obdFloat 6s ease-in-out infinite}
.obd-visual svg{width:100%;height:auto;display:block}
.signal-ring{position:absolute;left:50%;top:52%;transform:translate(-50%,-50%);width:260px;height:260px;border-radius:999px;border:2px solid rgba(34,211,238,.28);box-shadow:0 0 0 1px rgba(99,102,241,.18) inset;animation:ringPulse 2.6s ease-out infinite;pointer-events:none}
.signal-ring--2{border-color:rgba(99,102,241,.22);width:300px;height:300px;animation-delay:1.1s}
.obd-caption{display:flex;align-items:center;gap:10px;margin-top:10px;color:rgba(234,240,255,.86);font-size:14px}
.obd-caption__dot{width:8px;height:8px;border-radius:999px;background:rgba(34,211,238,.95);box-shadow:0 0 18px rgba(34,211,238,.55)}
@keyframes obdFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
@keyframes ringPulse{0%{transform:translate(-50%,-50%) scale(.88);opacity:.75}100%{transform:translate(-50%,-50%) scale(1.16);opacity:0}}
@media (max-width: 720px){
  .signal-ring{width:220px;height:220px}
  .signal-ring--2{width:260px;height:260px}
}
@media (prefers-reduced-motion: reduce){
  .obd-device,.signal-ring{animation:none!important}
}


/* FAQ */
.faq-section{margin-top:40px}
.faq-inner{max-width:820px}
.faq-list{margin-top:32px;display:grid;gap:14px}
.faq-item{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
border-radius:16px;padding:18px 22px;backdrop-filter:blur(6px)}
.faq-item summary{cursor:pointer;font-weight:600;font-size:17px;
list-style:none}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item p{margin-top:12px;color:rgba(234,240,255,.85);line-height:1.6}
.faq-item[open]{background:rgba(255,255,255,.06);border-color:rgba(34,211,238,.4)}





/* Phone spotlight */
.phone-spotlight{text-align:center}
.phone-stage{position:relative;margin-top:34px;min-height:520px}
.phone-glow{position:absolute;inset:0;margin:auto;width:380px;height:380px;
background:radial-gradient(circle, rgba(34,211,238,.32), rgba(99,102,241,.18), transparent 70%);
filter:blur(28px);opacity:.9;z-index:0}
.phone-mockup{position:relative;width:220px;margin:0 auto;z-index:2}
.phone-mockup::before{
  content:"";position:absolute;inset:-10px;border-radius:34px;
  background:linear-gradient(135deg,#22d3ee,#6366f1);opacity:.30;filter:blur(16px)
}
.phone-screen{border-radius:26px;overflow:hidden;background:#000;border:1px solid rgba(255,255,255,.12)}
.phone-screen img{width:100%;display:block;height:auto;max-height:520px;object-fit:cover}

/* bubbles should sit NEXT to phone (desktop) */
.phone-bubble{position:absolute;max-width:240px;padding:14px 16px;
background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);
border-radius:16px;text-align:left;font-size:14px;line-height:1.45;z-index:3}
.phone-bubble strong{display:block;margin-bottom:4px;font-weight:700}
.phone-bubble span{color:rgba(234,240,255,.82)}

/* left / right positioning so they are clearly beside the phone */
.bubble--one{top:34px;left:45%;transform:translateX(calc(-50% - 210px))}
.bubble--two{top:210px;left:55%;transform:translateX(calc(-50% + 210px))}
.bubble--three{bottom:34px;left:45%;transform:translateX(calc(-50% - 210px))}

/* ensure bubbles never go behind phone on smaller desktops */
@media (max-width: 1100px){
  .bubble--one{transform:translateX(calc(-50% - 190px))}
  .bubble--two{transform:translateX(calc(-50% + 190px))}
  .bubble--three{transform:translateX(calc(-50% - 190px))}
}

/* Mobile: shrink phone + stack bubbles as cards under it (perfect readability) */
@media (max-width: 900px){
  .phone-stage{min-height:auto}
  .phone-mockup{width:200px}
  .phone-glow{width:320px;height:320px}
  .phone-bubble{position:static;transform:none;margin:12px auto;max-width:520px}
}

/* Extra small phones */
@media (max-width: 420px){
  .phone-mockup{width:184px}
  .phone-bubble{padding:12px 14px;border-radius:14px;font-size:13px}
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .phone-mockup.float{animation:none!important}
}


/* Hero pill dot pulse */
.pill .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#22d3ee;
  display:inline-block;
  margin-right:8px;
  position:relative;
  animation:dotPulse 1.8s ease-in-out infinite;
}

@keyframes dotPulse{
  0%{
    box-shadow:0 0 0 0 rgba(34,211,238,.7);
    transform:scale(1);
  }
  70%{
    box-shadow:0 0 0 10px rgba(34,211,238,0);
    transform:scale(1.1);
  }
  100%{
    box-shadow:0 0 0 0 rgba(34,211,238,0);
    transform:scale(1);
  }
}

@media (prefers-reduced-motion: reduce){
  .pill .dot{animation:none;}
}


/* Header menu button fix (mobile + desktop) */
.nav-toggle{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:48px !important;
  height:48px !important;
  padding:0 !important;
  border-radius:16px !important;
  position:relative !important;
  overflow:hidden;
}

/* Ensure hamburger lines never overflow */
.nav-toggle:before,
.nav-toggle:after,
.nav-toggle > span{
  position:absolute !important;
  left:14px !important;
  right:14px !important;
  width:auto !important;
  height:2px !important;
  border-radius:999px !important;
}

.nav-toggle > span{
  display:block !important;
  background: rgba(234,240,255,.92) !important;
  top:23px !important;
  opacity:.9 !important;
}

/* Smooth transitions for X */
.nav-toggle:before,
.nav-toggle:after,
.nav-toggle > span{
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}

/* When menu is open, show X nicely centered */
body.menu-open .nav-toggle:before{ top:23px !important; transform: rotate(45deg); }
body.menu-open .nav-toggle:after{ top:23px !important; transform: rotate(-45deg); }
body.menu-open .nav-toggle > span{ opacity:0 !important; }





/* Mobile drawer extra spacing */
.mobile-drawer__panel{padding-top:28px}
.mobile-drawer__nav{margin-top:56px}
@media (max-width: 720px){
  .mobile-drawer__panel{padding-top:32px}
  .mobile-drawer__nav{margin-top:64px}
}

/* Features tabs */
.features-tabs__inner{max-width:1100px}
.tabs{display:inline-flex;gap:10px;padding:10px;border-radius:999px;
background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(8px);margin-top:20px}
.tab{appearance:none;border:0;background:transparent;color:rgba(234,240,255,.75);
padding:10px 14px;border-radius:999px;font-weight:600;cursor:pointer}
.tab.is-active{background:rgba(255,255,255,.08);color:rgba(234,240,255,.95);
box-shadow:0 0 0 1px rgba(34,211,238,.25) inset}
.tab-panels{margin-top:26px}
.tab-panel{display:none}
.tab-panel.is-active{display:block}

.setup-head{display:flex;flex-direction:column;align-items:center;gap:10px;margin-bottom:22px}
.pill--soft{background:rgba(99,102,241,.16);border:1px solid rgba(99,102,241,.22);color:rgba(234,240,255,.88)}
.setup-title,.more-title{font-size:44px;line-height:1.05;margin:0}
.more-head{max-width:760px;margin:0 auto 20px}
.more-sub{color:rgba(234,240,255,.74);margin-top:10px}

.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:36px;align-items:start}
.step{position:relative;text-align:left}
.step-badge{width:62px;height:62px;border-radius:18px;display:grid;place-items:center;
font-weight:900;font-size:26px;color:rgba(7,9,20,.92);
background:linear-gradient(135deg, rgba(34,211,238,.95), rgba(99,102,241,.95));
box-shadow:0 10px 30px rgba(0,0,0,.28)}
.step h4{margin:18px 0 8px;font-size:26px}
.step p{color:rgba(234,240,255,.74);line-height:1.6;margin:0;max-width:360px}
.step-line{position:absolute;top:31px;left:82px;right:-18px;height:2px;
background:linear-gradient(90deg, rgba(34,211,238,.55), rgba(99,102,241,.30));opacity:.75}
.steps .step:last-child .step-line{display:none}

.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:26px}
.feature-card{padding:22px 22px;border-radius:20px;
background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(8px);text-align:left}
.feature-ic{width:46px;height:46px;border-radius:14px;display:grid;place-items:center;
background:rgba(34,211,238,.10);border:1px solid rgba(34,211,238,.18);font-size:22px}
.feature-card h4{margin:16px 0 8px;font-size:22px}
.feature-card p{margin:0;color:rgba(234,240,255,.72);line-height:1.6}

@media (max-width: 980px){
  .setup-title,.more-title{font-size:34px}
  .steps{grid-template-columns:1fr;gap:22px;max-width:560px;margin:0 auto}
  .step-line{display:none}
  .step p{max-width:100%}
  .feature-grid{grid-template-columns:1fr;max-width:560px;margin:22px auto 0}
  .tabs{width:100%;justify-content:center}
}

/* Pricing */
.pricing-inner{max-width:1100px}
.pricing-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;margin-top:36px}
.price-card{position:relative;padding:28px;border-radius:24px;
background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(10px)}
.price-card--featured{box-shadow:0 0 0 1px rgba(34,211,238,.45), 0 30px 80px rgba(0,0,0,.45)}
.price-badge{position:absolute;top:-14px;right:20px;
background:linear-gradient(135deg, rgba(34,211,238,.95), rgba(99,102,241,.95));
color:#070914;font-weight:700;font-size:13px;padding:6px 12px;border-radius:999px}
.price-head{display:flex;align-items:center;gap:14px}
.price-ic{width:48px;height:48px;border-radius:14px;display:grid;place-items:center;
background:rgba(34,211,238,.12);font-size:22px}
.price-note{margin:4px 0 0;color:rgba(234,240,255,.65)}
.price{margin:26px 0}
.price-value{font-size:52px;font-weight:800}
.price-sub{display:block;color:rgba(234,240,255,.65)}
.price-list{margin:22px 0 0;padding:0;list-style:none}
.price-list li{margin:10px 0;color:rgba(234,240,255,.8)}
.pricing-trust{display:flex;flex-wrap:wrap;gap:18px;justify-content:center;
margin-top:36px;color:rgba(234,240,255,.75)}

@media (max-width: 980px){
  .pricing-grid{grid-template-columns:1fr}
  .price-value{font-size:44px}
}



/* === DESKTOP FIXES === */
@media (min-width: 1024px){
  .nav-toggle,
  .mobile-drawer,
  .nav-overlay{
    display:none !important;
  }
  .header-actions{
    margin-left:auto;
  }
}


/* Desktop: hide hamburger + push CTA buttons fully to the right */
@media (min-width: 861px){
  .nav-toggle{ display: none !important; }
  .mobile-drawer{ display: none !important; }
  .nav-overlay{ display: none !important; }
  .header-inner{ justify-content: flex-start; }
  .header-actions{ margin-left: auto; }
}


/* ==========================
   App Showcase (Ukážka aplikácie)
   ========================== */
.app-showcase-section{
  position: relative;
}
.app-showcase{
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: 26px;
  box-shadow: 0 26px 80px rgba(0,0,0,.45);
  overflow: hidden;
}
.app-showcase__grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 22px;
  padding: 22px;
  align-items: center;
}
.app-showcase__copy{min-width:0}
.app-showcase__list{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}
.app-showcase__list li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10, 14, 28, .38);
}
.as-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(234,240,255,.9);
  opacity: .55;
  margin-top: 6px;
  flex: 0 0 auto;
}
.app-showcase__cta{display:flex; gap:10px; flex-wrap:wrap}

.app-showcase__preview{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  overflow: hidden;
}

/* Top bar */
.as-previewTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.as-dots{display:flex; gap:6px; flex: 0 0 auto}
.as-dots span{width:10px; height:10px; border-radius:999px; background: rgba(255,255,255,.18)}
.as-previewHead{min-width:0; flex:1; display:flex; flex-direction:column; align-items:flex-end; gap:2px}
.as-previewTitle{font-size:13px; font-weight:800; color: rgba(234,240,255,.78); white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.as-previewDesc{font-size:12px; font-weight:600; color: rgba(234,240,255,.60); white-space:nowrap; overflow:hidden; text-overflow:ellipsis}

/* Phone */
.as-phoneStage{
  padding: 14px 14px 16px;
  background: rgba(0,0,0,.12);
  display:flex;
  justify-content:center;
  align-items:center;
}
.as-phone{
  width: min(360px, 100%);
  aspect-ratio: 9 / 19.5;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.18);
  background:
    radial-gradient(120px 90px at 30% 0%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow:
    0 18px 70px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  user-select:none;
  touch-action: pan-y;
}
.as-phone:before{
  content:"";
  position:absolute;
  top:10px; left:50%;
  transform:translateX(-50%);
  width: 44%;
  height: 22px;
  border-radius: 999px;
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.10);
  z-index:3;
  pointer-events:none;
}
.as-screen{
  position:absolute;
  inset: 8px;
  border-radius: 26px;
  overflow:hidden;
  background: rgba(0,0,0,.22);
}
.as-screen img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: translateZ(0);
}
.as-swipeHint{
  position:absolute;
  left: 12px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.30);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 800;
  display:none;
  z-index: 4;
  pointer-events:none;
}

/* Thumbs */
.as-thumbs{
  display:flex;
  gap:10px;
  padding:12px;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  overflow:auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.as-thumbs::-webkit-scrollbar{height:8px}
.as-thumbs::-webkit-scrollbar-thumb{background:rgba(255,255,255,.12);border-radius:999px}
.as-thumb{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding: 10px 12px;
  cursor:pointer;
  color: inherit;
  text-align:left;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  min-height: 58px;
  min-width: 150px;
  flex: 0 0 auto;
}
.as-thumb:hover{transform: translateY(-1px); background: rgba(255,255,255,.05)}
.as-thumb.is-active{background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18)}
.as-thumb span{display:inline-block; font-weight:800; font-size:13px; margin-bottom:4px}
.as-thumb small{display:block; font-weight:650; color: rgba(234,240,255,.60)}

/* Lightbox */
.as-lb{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.72);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index: 9999;
}
.as-lb.is-open{display:flex}
.as-lbCard{
  width: min(980px, 100%);
  max-height: calc(100vh - 36px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(15,18,24,.72);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  overflow:hidden;
  display:flex;
  flex-direction: column;
}
.as-lbTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.as-lbTopLeft{min-width:0; display:flex; flex-direction:column; gap:2px}
.as-lbTop strong{font-size:13px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.as-lbTop span{font-size:12px; color: rgba(255,255,255,.70); white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.as-lbBtns{display:flex; gap:8px; flex:0 0 auto}
.as-iconBtn{
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
  font-weight: 800;
}
.as-iconBtn:hover{transform: translateY(-1px)}
.as-lbBody{display:flex; align-items:center; justify-content:center; padding:14px; overflow:auto}
.as-lbBody img{
  width:auto;
  max-width:100%;
  max-height: calc(100vh - 160px);
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
}

@media (max-width: 980px){
  .app-showcase__grid{grid-template-columns: 1fr;}
  .as-previewHead{align-items:flex-start}
  .as-swipeHint{display:inline-flex}
}
@media (max-width: 520px){
  .app-showcase__grid{padding:16px}
  .as-thumb{min-width: 72%;}
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE & TABLET ENHANCEMENTS v2 – Marketing + UX 
   ═══════════════════════════════════════════════════════════════ */

/* ── SOCIAL PROOF BANNER (under hero) ── */
.social-proof-strip{
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.social-proof-strip::before,
.social-proof-strip::after{
  content:""; position:absolute; top:0; bottom:0; width:60px; z-index:2; pointer-events:none;
}
.social-proof-strip::before{ left:0; background:linear-gradient(90deg, var(--bg0), transparent); }
.social-proof-strip::after{ right:0; background:linear-gradient(270deg, var(--bg0), transparent); }
.proof-track{
  display:flex; gap:28px; align-items:center;
  animation: proofScroll 22s linear infinite;
  width:max-content;
}
@keyframes proofScroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
.proof-item{
  display:flex; align-items:center; gap:10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  flex-shrink: 0;
}
.proof-item .proof-stars{ color: #fbbf24; font-size: 13px; letter-spacing: 1px; }
.proof-item .proof-text{
  font-size: 13px; font-weight: 600;
  color: rgba(234,240,255,.78);
}
.proof-item .proof-avatar{
  width: 28px; height: 28px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(34,211,238,.6), rgba(168,85,247,.6));
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800; color: #fff;
}

/* ── LIVE COUNTER ── */
.live-counter{
  display:flex; justify-content:center; gap:22px; flex-wrap:wrap;
  padding: 18px 0 8px;
}
.counter-box{
  display:flex; flex-direction:column; align-items:center; gap:4px;
  padding: 14px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  min-width: 120px;
}
.counter-num{
  font-size: 28px; font-weight: 900;
  background: linear-gradient(90deg, #22d3ee, #a855f7);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.counter-label{
  font-size: 11px; font-weight: 600;
  color: rgba(234,240,255,.55);
  text-transform: uppercase; letter-spacing: .06em;
}

/* ── STICKY MOBILE CTA ── */
.sticky-cta{
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom, 12px));
  background: linear-gradient(180deg, rgba(7,9,20,0), rgba(7,9,20,.95) 30%);
  backdrop-filter: blur(12px);
  display: flex;
  gap: 10px;
  align-items: center;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.sticky-cta.is-visible{ transform: translateY(0); }
.sticky-cta .sticky-price{
  display: flex; flex-direction: column;
  flex-shrink: 0;
}
.sticky-cta .sticky-price strong{
  font-size: 22px; font-weight: 900;
  background: linear-gradient(90deg, #22d3ee, #a855f7);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.sticky-cta .sticky-price small{
  font-size: 10px; color: rgba(234,240,255,.55);
  text-transform: uppercase; letter-spacing: .05em;
}
.sticky-cta .btn{ flex: 1; text-align:center; }

/* Hide sticky CTA on desktop */
@media (min-width: 861px){
  .sticky-cta{ display: none !important; }
}

/* ── TRUST BADGES MOBILE ── */
.trust-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.trust-badge{
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  padding: 14px 8px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.trust-badge .trust-ic{
  width: 38px; height: 38px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 18px;
  background: rgba(34,211,238,.08);
  border: 1px solid rgba(34,211,238,.15);
}
.trust-badge .trust-txt{
  font-size: 10px; font-weight: 700;
  color: rgba(234,240,255,.65);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .03em;
}
@media (max-width: 480px){
  .trust-row{ grid-template-columns: repeat(2, 1fr); }
}

/* ── MOBILE HERO IMPROVEMENTS ── */
@media (max-width: 860px){
  .hero{ padding-top: 18px; }
  .hero-grid{ text-align: center; }
  .hero-left{ order: 1; }
  .hero-right{ order: 0; }

  .product-frame{ max-width: 280px; margin: 0 auto; }
  .product-frame__inner{ min-height: 280px !important; padding: 30px 24px; }
  .product-card{ inset: 55px 30px 34px 30px !important; }
  .app-icon{ width: 72px; height: 72px; border-radius: 20px; }
  .app-icon svg{ width: 26px; height: 26px; }
  .product-name{ font-size: 16px; }

  .hero-title{ font-size: clamp(32px, 7vw, 42px); margin-top: 18px; }
  .hero-sub{ font-size: 15px; margin: 0 auto; }
  .hero-cta{ justify-content: center; }

  .pill--hero{ margin: 0 auto; font-size: 12px; padding: 8px 12px; }
}

/* ── MOBILE CARDS ROW (vertical stack) ── */
@media (max-width: 860px){
  .cards-row{
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    overflow-x: visible;
  }
  .cards-row .glass-card{
    min-width: 0;
    width: 100%;
    flex-shrink: 1;
  }
  .cards-row .glass-inner{
    min-height: auto;
    padding: 22px 20px;
    padding-bottom: 40px;
    text-align: left;
  }
  .cards-row .glass-card h3{
    font-size: 18px;
    margin: 10px 0 6px;
  }
  .cards-row .glass-card p{
    font-size: 14px;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
  .cards-row .mini-icon{
    width: 40px;
    height: 40px;
  }
  .cards-row .mini-icon svg{
    width: 22px;
    height: 22px;
  }
  /* Expand hint repositioned for left-aligned cards */
  .card-expandable .card-expand-hint{
    left: 20px;
    transform: none;
  }
  /* Detail items on mobile */
  .card-detail__inner{
    padding: 0 16px 18px;
  }
  .card-detail__item{
    padding: 12px 14px;
    font-size: 13.5px;
  }
}

/* ── PHONE SPOTLIGHT MOBILE ── */
@media (max-width: 900px){
  .phone-spotlight__inner{ padding-bottom: 10px; }
  .phone-mockup{ width: 240px !important; }
  .phone-bubble{
    text-align: left;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    max-width: 100%;
  }
  .phone-bubble::before{
    content: attr(data-icon);
    font-size: 22px;
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 12px;
    background: rgba(34,211,238,.10);
    border: 1px solid rgba(34,211,238,.18);
    display: grid; place-items: center;
  }
}

/* ── FEATURE CARDS MOBILE (2-col grid instead of 1) ── */
@media (max-width: 980px) and (min-width: 481px){
  .feature-grid{
    grid-template-columns: 1fr 1fr !important;
    max-width: 100% !important;
  }
}
@media (max-width: 480px){
  .feature-grid{
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .feature-card{ padding: 16px; }
  .feature-card h4{ font-size: 18px; margin: 10px 0 6px; }
}

/* ── PRICING MOBILE ── */
@media (max-width: 560px){
  .pricing-grid{ gap: 18px; }
  .price-card{ padding: 22px 18px; }
  .price-card--featured{ 
    order: -1; 
  }
  .pricing-trust{
    gap: 10px;
    font-size: 13px;
  }
  .pricing-trust span{
    flex: 1 0 calc(50% - 10px);
    text-align: center;
    padding: 10px 8px;
    border-radius: 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
  }
}

/* ── FAQ MOBILE ── */
@media (max-width: 560px){
  .faq-item{ padding: 14px 16px; }
  .faq-item summary{ font-size: 15px; }
}

/* ── CONTACT MOBILE ── */
@media (max-width: 560px){
  .form-card{ padding: 20px 16px; border-radius: 20px; }
  .form-grid{ grid-template-columns: 1fr; }
}

/* ── SECTION SPACING MOBILE ── */
@media (max-width: 860px){
  .section{ padding-top: 50px; }
  .section-title{ font-size: clamp(26px, 6vw, 36px); }
  .section-sub{ font-size: 14px; }
  .pill--section{ font-size: 12px; padding: 7px 11px; }
}

/* ── APP SHOWCASE MOBILE ── */
@media (max-width: 560px){
  .app-showcase{ border-radius: 20px; }
  .app-showcase__grid{ padding: 12px !important; gap: 14px; }
  .app-showcase__list li{ padding: 10px; font-size: 13px; }
  .app-showcase__cta{ flex-direction: column; }
  .app-showcase__cta .btn{ width: 100%; }
  .as-phone{
    border-radius: 24px;
    aspect-ratio: 9 / 19;
  }
  .as-phone::before{ height: 18px; top: 8px; width: 40%; }
}

/* ── SCROLL-TRIGGERED ANIMATIONS (smoother on mobile) ── */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in cards-row */
.cards-row .glass-card.reveal:nth-child(1){ transition-delay: 0s; }
.cards-row .glass-card.reveal:nth-child(2){ transition-delay: .08s; }
.cards-row .glass-card.reveal:nth-child(3){ transition-delay: .16s; }

/* ── OBD VISUAL MOBILE ── */
@media (max-width: 720px){
  .obd-visual{ max-width: 300px; margin: 18px auto 0; }
  .split-left{ text-align: center; }
  .split-sub{ max-width: 50ch; margin: 0 auto; }
}

/* ── PRICING NOTE PULSE ── */
.pulse-dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: #22d3ee;
  display: inline-block;
  margin-right: 10px;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot{
  0%,100%{ box-shadow: 0 0 0 0 rgba(34,211,238,.6); }
  50%{ box-shadow: 0 0 0 8px rgba(34,211,238,0); }
}

/* ── BODY BOTTOM PADDING for sticky CTA ── */
@media (max-width: 860px){
  body{ padding-bottom: 72px; }
}

/* ── PRICE LIST CHECK MARKS ── */
.price-list li::before{
  content: "✓";
  display: inline-block;
  margin-right: 10px;
  color: #22d3ee;
  font-weight: 800;
}

/* ── GLASS CARD improvements ── */
.glass-card{
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.glass-card:hover{
  transform: translateY(-3px);
  border-color: rgba(34,211,238,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

/* ── TABLET-SPECIFIC (768-1024px) ── */
@media (min-width: 481px) and (max-width: 1024px){
  .pricing-grid{ gap: 18px; }
  .steps{ grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .step h4{ font-size: 20px; }
  .step-badge{ width: 50px; height: 50px; font-size: 20px; border-radius: 14px; }
}



/* === MENU POLISH FIX (mobile/tablet) === */
@media (max-width: 1024px){
  .nav-overlay{ z-index: 110 !important; }
  .mobile-drawer{ z-index: 120 !important; }
  .nav-toggle{ z-index: 130 !important; }
}
/* Keep sticky CTA from fighting with open menu */
body.menu-open .sticky-cta{
  transform: translateY(140%) !important;
  pointer-events: none !important;
}
/* Sticky CTA should stay under drawer/overlay even when visible */
.sticky-cta{ z-index: 60; }

/* Drawer content: allow nav to scroll, keep actions always visible */
@media (max-width: 1024px){
  .mobile-drawer__panel{
    display:flex;
    flex-direction:column;
    overflow:hidden; /* internal scroll sections handle scrolling */
  }
  .mobile-drawer__nav{
    overflow:auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 14px;
    margin-bottom: 8px;
  }
  .mobile-drawer__actions{
    margin-top:auto;
    padding-top: 14px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(7,9,20,0), rgba(7,9,20,.55) 18%, rgba(7,9,20,.82));
    border-top: 1px solid rgba(255,255,255,.08);
  }
}

/* ========================================
   EXPANDABLE FEATURE CARDS
   ======================================== */
.card-expandable {
  cursor: pointer;
}
.card-expandable .glass-inner {
  position: relative;
  padding-bottom: 44px;
}

.card-expand-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: rgba(34,211,238,.65);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .25s ease;
}
.card-expandable:hover .card-expand-hint {
  color: rgba(34,211,238,.95);
}
.card-expand-arrow {
  display: inline-block;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  font-size: 14px;
}
.card-expandable.is-expanded .card-expand-arrow {
  transform: rotate(180deg);
}
.card-expandable.is-expanded .card-expand-hint {
  color: rgba(168,85,247,.7);
}

.card-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1);
}
.card-detail__inner {
  padding: 0 22px 22px;
}
.card-detail__grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-detail__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(232,238,255,.78);
}
.card-detail__item strong {
  color: rgba(234,240,255,.95);
  display: block;
  margin-bottom: 2px;
}
.card-detail__icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  margin-top: 2px;
}

/* ========================================
   WHY TRACKIFY SECTION
   ======================================== */
.why-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.why-inner {
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
  text-align: left;
}

.why-card {
  position: relative;
  padding: 28px 24px 40px;
  border-radius: 20px;
  background: rgba(10, 14, 28, .65);
  border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0;
  transition: opacity .35s ease;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(34,211,238,.06), transparent 60%);
  pointer-events: none;
}
.why-card:hover::before {
  opacity: 1;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34,211,238,.18);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.why-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.1);
}
.why-card__icon--shield { background: rgba(34,211,238,.1); color: var(--cyan); }
.why-card__icon--moon { background: rgba(168,85,247,.1); color: var(--violet); }
.why-card__icon--route { background: rgba(56,189,248,.1); color: var(--cyan2); }
.why-card__icon--eye { background: rgba(168,85,247,.1); color: var(--violet); }
.why-card__icon--file { background: rgba(34,211,238,.1); color: var(--cyan); }
.why-card__icon--zap { background: rgba(56,189,248,.1); color: var(--cyan2); }

.why-card__title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: rgba(234,240,255,.95);
}
.why-card__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(232,238,255,.62);
  margin: 0;
}
.why-card__tag {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  color: rgba(232,238,255,.4);
}

/* Comparison table */
.why-compare {
  margin-top: 48px;
  border-radius: 20px;
  background: rgba(10, 14, 28, .65);
  border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.why-compare__header {
  padding: 24px 28px 0;
}
.why-compare__header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  text-align: left;
}
.why-compare__table {
  padding: 18px 12px 20px;
}
.why-compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14.5px;
  color: rgba(232,238,255,.72);
  transition: background .2s;
}
.why-compare__row:nth-child(even) {
  background: rgba(255,255,255,.02);
}
.why-compare__row:hover:not(.why-compare__row--head) {
  background: rgba(255,255,255,.04);
}
.why-compare__row--head {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(232,238,255,.45);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 4px;
}
.why-compare__cell--us {
  color: rgba(34,211,238,.95);
  font-weight: 600;
}
.why-compare__cell--them {
  color: rgba(232,238,255,.4);
}
.why-check {
  display: inline-block;
  margin-right: 4px;
  color: rgba(52,211,153,1);
  font-weight: 700;
}
.why-cross {
  display: inline-block;
  margin-right: 4px;
  color: rgba(248,113,113,.7);
  font-weight: 700;
}

/* ========================================
   WHY SECTION – RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .why-card {
    padding: 22px 20px 38px;
  }
  .why-compare__row {
    font-size: 13px;
    padding: 10px 10px;
    gap: 6px;
  }
  .why-compare__header {
    padding: 20px 20px 0;
  }
  .why-compare__header h3 {
    font-size: 17px;
  }
}

/* ========================================
   EXPANDABLE CARDS – RESPONSIVE
   ======================================== */
@media (max-width: 600px) {
  .card-detail__item {
    padding: 12px 14px;
    font-size: 13.5px;
  }
  .card-detail__inner {
    padding: 0 16px 18px;
  }
}

/* ========================================
   PRICING V2 – PROFESSIONAL REDESIGN
   ======================================== */

/* Shared features strip */
.pricing-features {
  margin: 32px auto 40px;
  max-width: 720px;
  padding: 28px 32px;
  border-radius: 20px;
  background: rgba(10, 14, 28, .5);
  border: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
}
.pricing-features__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(34,211,238,.7);
  margin-bottom: 18px;
  text-align: center;
}
.pricing-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.pricing-features__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: rgba(232,238,255,.75);
  line-height: 1.5;
}
.pf-check {
  color: rgba(52,211,153,.85);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

/* Pricing grid v2 */
.pricing-grid--v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 720px;
  margin: 0 auto 32px;
}

/* Card v2 */
.price-card--v2 {
  position: relative;
  border-radius: 22px;
  background: rgba(10, 14, 28, .6);
  border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  padding: 0;
}
.price-card--v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}

.price-card--v2 .price-card__top {
  padding: 28px 28px 0;
  text-align: center;
}
.price-card--v2 .price-card__icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.price-card--v2 .price-card__name {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
  color: rgba(234,240,255,.95);
}
.price-card--v2 .price-card__tagline {
  font-size: 13.5px;
  color: rgba(232,238,255,.45);
}

.price-card--v2 .price-card__body {
  padding: 24px 28px 28px;
  text-align: center;
}
.price-card__amount {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  color: rgba(234,240,255,.97);
}
.price-card__currency {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
  vertical-align: super;
  margin-left: 2px;
  color: rgba(234,240,255,.6);
}
.price-card__period {
  font-size: 14px;
  color: rgba(232,238,255,.5);
  margin-top: 6px;
}
.price-card__vat {
  font-size: 12.5px;
  color: rgba(232,238,255,.38);
  margin-top: 6px;
}
.price-card__novat {
  font-size: 12px;
  color: rgba(232,238,255,.3);
  margin-top: 2px;
}

/* Credit highlight */
.price-card__credit {
  margin: 24px 0;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.price-card__credit-label {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: rgba(232,238,255,.4);
  margin-bottom: 4px;
}
.price-card__credit-value {
  font-size: 22px;
  font-weight: 700;
  color: rgba(234,240,255,.9);
}
.price-card__credit-save {
  font-size: 12px;
  color: rgba(52,211,153,.75);
  margin-top: 6px;
  font-weight: 600;
}

.price-card__btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Featured (Premium) card */
.price-card--featured2 {
  border-color: rgba(34,211,238,.2);
  background: rgba(10, 14, 28, .7);
  box-shadow: 0 0 0 1px rgba(34,211,238,.08), 0 20px 60px rgba(34,211,238,.06);
}
.price-card--featured2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  border-radius: 22px 22px 0 0;
}
.price-card--featured2:hover {
  border-color: rgba(34,211,238,.3);
  box-shadow: 0 0 0 1px rgba(34,211,238,.12), 0 24px 70px rgba(34,211,238,.1);
}
.price-card--featured2 .price-card__amount {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-card--featured2 .price-card__currency {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-card--featured2 .price-card__credit {
  background: rgba(34,211,238,.04);
  border-color: rgba(34,211,238,.1);
}
.price-card--featured2 .price-card__credit-value {
  color: var(--cyan);
}

.price-card__badge2 {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 5px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(34,211,238,.15), rgba(168,85,247,.15));
  border: 1px solid rgba(34,211,238,.2);
  color: var(--cyan);
}

/* Pricing v2 responsive */
@media (max-width: 640px) {
  .pricing-grid--v2 {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
  .pricing-features__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .pricing-features {
    padding: 22px 22px;
  }
  .price-card__amount {
    font-size: 48px;
  }
  .price-card--v2 .price-card__top {
    padding: 24px 22px 0;
  }
  .price-card--v2 .price-card__body {
    padding: 20px 22px 24px;
  }
}

/* ========================================
   SVG ICON STYLING (replacing emoji)
   ======================================== */
.card-detail__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.95);
  flex-shrink: 0;
  margin-top: 0;
  font-size: 0;
}
.card-detail__icon svg {
  flex-shrink: 0;
}

.price-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--cyan);
  margin: 0 auto 12px;
}
.price-card--featured2 .price-card__icon {
  background: rgba(34,211,238,.06);
  border-color: rgba(34,211,238,.12);
}

.feature-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(34,211,238,.06);
  border: 1px solid rgba(255,255,255,.07);
  color: var(--cyan);
  margin-bottom: 14px;
}

.trust-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}
.trust-ic svg {
  opacity: .8;
}
