:root{
  --navy:#061711;
  --navy-2:#09251a;
  --navy-3:#0d3324;
  --green:#18c47d;
  --green-2:#22d487;
  --green-dark:#0f7a4f;
  --white:#ffffff;
  --ink:#0d1b16;
  --muted:#667085;
  --line:#e7ebf3;
  --line-dark:rgba(255,255,255,.13);
  --soft:#f6fbf8;
  --shadow:0 24px 70px rgba(6,23,17,.16);
  --shadow-dark:0 34px 100px rgba(0,0,0,.34);
  --container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--navy);
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
.container{width:min(var(--container),calc(100% - 40px));margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(6,23,17,.84);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line-dark);
}
.header-inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:white;
  font-weight:900;
  letter-spacing:-.05em;
  font-size:24px;
}
.brand-logo{
  width:50px;
  height:50px;
  min-width:50px;
  min-height:50px;
  flex:0 0 50px;
  border-radius:50%;
  display:block;
  background-image:url("/assets/img/IntelliPOS_logo.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  box-shadow:0 18px 45px rgba(24,196,125,.32);
  animation:logoBreathe 3.5s ease-in-out infinite;
}
.brand-pos{
  color: var(--green-2);
}
.nav{
  display:flex;
  align-items:center;
  gap:22px;
  color:rgba(255,255,255,.72);
  font-size:14px;
  font-weight:800;
}
.nav a{transition:.2s}
.nav a:hover{color:white}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:-.025em;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
  cursor:pointer;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  position:relative;
  overflow:hidden;
  color:#052016;
  background:linear-gradient(135deg,var(--green-2),var(--green));
  box-shadow:0 18px 42px rgba(24,196,125,.32);
}
.btn-primary:hover{box-shadow:0 24px 60px rgba(24,196,125,.42)}
.btn-primary::after{
  content:"";
  position:absolute;
  inset:0;
  transform:translateX(-120%);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.42),transparent);
  animation:buttonShine 3.4s ease-in-out infinite;
}
.btn-secondary{
  color:white;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.18);
}
.btn-secondary:hover{background:rgba(255,255,255,.12)}

.hero{
  position:relative;
  min-height:760px;
  padding:96px 0 92px;
  color:white;
  overflow:hidden;
  background:
    radial-gradient(circle at 18% 18%,rgba(34,212,135,.22),transparent 31%),
    radial-gradient(circle at 82% 24%,rgba(24,196,125,.16),transparent 30%),
    linear-gradient(135deg,#061711 0%,#09251a 48%,#0d3324 100%);
}
.hero::before{
  content:"IntelliPOS";
  position:absolute;
  right:-120px;
  top:56px;
  font-size:clamp(120px,18vw,260px);
  line-height:.8;
  font-weight:900;
  letter-spacing:-.12em;
  color:rgba(255,255,255,.035);
  pointer-events:none;
  animation:watermarkFloat 8s ease-in-out infinite;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(to bottom,black,transparent 82%);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:58px;
  align-items:center;
}
.hero-grid.balanced{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:stretch;
}
.hero-copy{display:flex;flex-direction:column;gap:14px}

.eyebrow,.kicker{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--green-2);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:13px;
  margin-bottom:14px;
}
.eyebrow::before,.kicker::before{
  content:"";
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--green-2);
  box-shadow:0 0 0 0 rgba(34,212,135,.5);
  animation:pulse 1.8s infinite;
}
h1{
  margin:0 0 22px;
  font-size:clamp(48px,6.6vw,88px);
  line-height:.94;
  letter-spacing:-.078em;
  color:white;
}
.accent-text{
  display:block;
  color:var(--green-2);
  text-shadow:0 16px 70px rgba(34,212,135,.26);
}
.hero-lead{
  max-width:720px;
  color:rgba(255,255,255,.76);
  font-size:clamp(18px,2vw,22px);
  line-height:1.65;
  letter-spacing:-.02em;
  margin:0 0 26px;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:22px}
.price-hero-card{
  display:inline-grid;
  grid-template-columns:auto auto auto;
  align-items:baseline;
  gap:8px 12px;
  margin:0 0 24px;
  padding:18px 20px;
  border:1px solid rgba(34,212,135,.34);
  border-radius:24px;
  background:rgba(255,255,255,.08);
  box-shadow:0 22px 70px rgba(24,196,125,.18);
  backdrop-filter:blur(14px);
  animation:priceGlow 3.2s ease-in-out infinite;
}
.price-hero-card .price-label,
.price-hero-card .price-note{color:rgba(255,255,255,.74);font-weight:800}
.price-hero-card strong{color:var(--green-2);font-size:clamp(32px,4vw,52px);line-height:.9;letter-spacing:-.07em}
.price-hero-card small{grid-column:1/-1;color:rgba(255,255,255,.74);font-weight:800}
.hero-points{
  margin:6px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
  grid-template-columns:1fr;
  max-width:680px;
}
.hero-points li{
  padding-left:22px;
  position:relative;
  color:rgba(255,255,255,.78);
}
.hero-points li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--green-2);
  font-weight:800;
}

.hero-visual{
  background:linear-gradient(180deg,#102a21 0%,#0b2119 100%);
  border:1px solid #1b3a30;
  border-radius:16px;
  padding:18px;
  display:grid;
  gap:14px;
}
.hero-visual-top{display:flex;justify-content:space-between;align-items:center}
.hero-pill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(34,212,135,.12);
  color:var(--green-2);
  border:1px solid rgba(34,212,135,.35);
}
.hero-mock{
  background:#081a14;
  border:1px solid #1b3a30;
  border-radius:12px;
  padding:12px;
}
.hero-row{
  display:flex;
  justify-content:space-between;
  padding:7px 0;
  border-bottom:1px dashed #1b3a30;
  color:#dceee6;
  font-size:14px;
}
.hero-row:last-child{border-bottom:0}
.hero-price{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:10px;
  background:#0d241c;
  border:1px solid #1b3a30;
  border-radius:12px;
  padding:12px;
}
.hero-price strong{
  color:var(--green-2);
  font-size:30px;
  line-height:1;
}

@media (max-width: 980px) {
  .hero-grid.balanced {
    grid-template-columns: 1fr;
  }
}

/* Hero mockup */
.mockup-wrap{position:relative;min-height:550px}
.mockup-wrap::before{
  content:"";
  position:absolute;
  inset:52px -24px 16px 36px;
  border-radius:58px;
  background:linear-gradient(135deg,rgba(34,212,135,.28),rgba(255,255,255,.04));
  filter:blur(34px);
}
.dashboard{
  position:relative;
  z-index:2;
  border:1px solid rgba(255,255,255,.16);
  border-radius:32px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  box-shadow:var(--shadow-dark);
  overflow:hidden;
  transform:perspective(1000px) rotateY(-5deg) rotateX(2deg);
  animation:floatCard 6s ease-in-out infinite;
}
.dash-top{
  height:62px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.74);
}
.dash-brand{font-weight:900;letter-spacing:-.075em;font-size:24px}
.dash-brand span{color:var(--green-dark)}
.dash-badge{
  color:var(--green-dark);
  background:rgba(24,196,125,.1);
  border-radius:999px;
  padding:8px 11px;
  font-size:12px;
  font-weight:900;
  animation:badgePulse 2.4s ease-in-out infinite;
}
.dash-body{display:grid;grid-template-columns:150px 1fr;min-height:424px}
.dash-sidebar{padding:18px;background:#f3fbf6;border-right:1px solid var(--line)}
.dash-nav-item{padding:12px;border-radius:12px;font-size:12px;color:#475467;margin-bottom:7px;font-weight:800}
.dash-nav-item.active{background:var(--green-dark);color:white}
.dash-main{padding:22px}
.dash-title{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px}
.dash-title strong{font-size:22px;letter-spacing:-.04em}
.dash-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-bottom:15px}
.dash-stat{
  background:white;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  box-shadow:0 10px 24px rgba(6,23,17,.06);
  animation:statFloat 5s ease-in-out infinite;
}
.dash-stat:nth-child(2){animation-delay:.4s}
.dash-stat:nth-child(3){animation-delay:.8s}
.dash-stat:nth-child(4){animation-delay:1.2s}
.dash-stat span{color:var(--muted);font-size:11px;font-weight:800}
.dash-stat strong{display:block;margin-top:8px;font-size:26px;letter-spacing:-.05em}
.receipt-preview{background:white;border:1px solid var(--line);border-radius:24px;padding:20px;box-shadow:0 10px 24px rgba(6,23,17,.06)}
.receipt-row{display:flex;justify-content:space-between;gap:18px;padding:11px 0;border-bottom:1px dashed #d8e5dd;color:#344054;font-size:14px}
.receipt-total{
  margin-top:16px;
  padding:16px;
  border-radius:18px;
  color:#052016;
  background:linear-gradient(135deg,var(--green-2),var(--green));
  display:flex;
  justify-content:space-between;
  font-size:18px;
  font-weight:900;
  animation:totalGlow 3s ease-in-out infinite;
}
.floating-card{
  position:absolute;
  z-index:3;
  right:-8px;
  bottom:-100px;
  width:180px;
  border-radius:26px;
  background:#07111f;
  color:white;
  padding:18px;
  border:5px solid #172b22;
  box-shadow:0 28px 70px rgba(0,0,0,.42);
  animation:phoneFloat 5.4s ease-in-out infinite;
}
.floating-card strong{display:block;font-size:24px;letter-spacing:-.06em;margin-bottom:20px}
.floating-card span{display:block;color:var(--green-2);font-size:13px;font-weight:900;margin-bottom:8px}
.floating-card p{color:rgba(255,255,255,.7);line-height:1.5;margin:0;font-size:13px}

/* Sections */
.section{position:relative;padding:88px 0;background:white}
.section.alt{background:#f6fbf8;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.section.dark{background:var(--navy);color:white;overflow:hidden}
.section.dark::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle at 15% 20%,rgba(34,212,135,.18),transparent 24%),
    radial-gradient(circle at 80% 80%,rgba(24,196,125,.12),transparent 24%);
  pointer-events:none;
}
.section.dark .container{position:relative;z-index:2}
.section-head{text-align:center;max-width:790px;margin:0 auto 46px}
h2{margin:0;font-size:clamp(34px,4vw,56px);line-height:1.05;letter-spacing:-.06em}
.section-head p,.section-copy{color:var(--muted);line-height:1.75;font-size:17px}
.section.dark .section-head p,.section.dark .section-copy{color:rgba(255,255,255,.74);}

.simple-steps-grid,.problem-grid,.need-grid,.dont-need-grid,.included-grid,.reference-grid,.industry-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.visual-flow-grid,.features-grid,.seo-grid,.documentation-grid,.seo-text-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.faq-grid,.compare-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}

.simple-step-card,.problem-card,.feature-card,.seo-card,.seo-text-card,.documentation-card,details,.need-card,.included-item,.reference-card,.step{
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:0 12px 35px rgba(6,23,17,.05);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.simple-step-card:hover,.problem-card:hover,.feature-card:hover,.seo-card:hover,.seo-text-card:hover,.documentation-card:hover,.reference-card:hover,.step:hover{
  transform:translateY(-7px);
  border-color:rgba(24,196,125,.42);
  box-shadow:var(--shadow);
}
.simple-step-card h3,.problem-card h3,.feature-card h3,.seo-card h3,.seo-text-card h3,.documentation-card h3{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.35;
  letter-spacing:-.03em;
}
.simple-step-card p,.problem-card p,.feature-card p,.seo-card p,.seo-text-card p,.documentation-card p,details p{
  color:var(--muted);
  line-height:1.7;
  font-size:15px;
  margin:0;
}
.icon{
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  border-radius:17px;
  color:var(--green-dark);
  background:transparent;
  border:1px solid var(--green-dark);
  font-size:24px;
  margin-bottom:20px;
}

/* Animation iframe */
.animation-frame{
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(6,23,17,.18);
  border:1px solid var(--line);
  background:#061711;
}
.animation-frame iframe{
  width:100%;
  height:920px;
  border:0;
  display:block;
}

/* Visual cards */
.visual-card{
  position:relative;
  overflow:hidden;
  padding:28px;
  border-radius:28px;
  background:linear-gradient(180deg,#ffffff,#f8fffb);
  border:1px solid var(--line);
  box-shadow:0 14px 38px rgba(6,23,17,.055);
  transition:transform .25s ease,box-shadow .25s ease;
}
.visual-card:hover{transform:translateY(-7px);box-shadow:var(--shadow)}
.visual-card h3{margin:22px 0 10px;font-size:21px;letter-spacing:-.04em}
.visual-card p{margin:0;color:var(--muted);line-height:1.7}
.visual-illustration{
  position:relative;
  min-height:190px;
  border-radius:24px;
  background:
    radial-gradient(circle at 20% 20%,rgba(34,212,135,.22),transparent 32%),
    linear-gradient(135deg,var(--navy-2),var(--navy-3));
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
}
.visual-illustration::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:28px 28px;
  opacity:.7;
}
.browser-visual{padding:18px}
.visual-window-top{position:relative;z-index:2;display:flex;gap:7px;margin-bottom:24px}
.visual-window-top span{width:11px;height:11px;border-radius:50%;background:rgba(255,255,255,.34)}
.visual-lines{position:relative;z-index:2;display:grid;gap:12px;max-width:78%}
.visual-lines i{
  display:block;
  height:13px;
  border-radius:999px;
  background:rgba(255,255,255,.22);
  animation:lineLoad 2.8s ease-in-out infinite;
  transform-origin:left center;
}
.visual-lines i:nth-child(2){width:74%;animation-delay:.18s}
.visual-lines i:nth-child(3){width:52%;animation-delay:.36s}
.visual-button{
  position:relative;
  z-index:2;
  width:92px;
  height:36px;
  border-radius:999px;
  margin-top:24px;
  background:linear-gradient(135deg,var(--green-2),var(--green));
  box-shadow:0 14px 34px rgba(24,196,125,.32);
  animation:clickPulse 1.8s ease-in-out infinite;
}
.pfr-visual{display:flex;align-items:center;justify-content:center;gap:16px}
.pfr-node{
  position:relative;
  z-index:2;
  width:82px;
  height:82px;
  border-radius:24px;
  display:grid;
  place-items:center;
  color:white;
  font-weight:900;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(10px);
}
.pfr-node.main{
  color:#052016;
  background:linear-gradient(135deg,var(--green-2),var(--green));
  animation:nodePulse 2.2s ease-in-out infinite;
}
.pfr-line{
  position:relative;
  z-index:2;
  width:58px;
  height:4px;
  border-radius:999px;
  background:rgba(34,212,135,.72);
  box-shadow:0 0 22px rgba(34,212,135,.35);
}
.pfr-line::after{
  content:"";
  position:absolute;
  top:50%;
  left:0;
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--green-2);
  transform:translate(-50%,-50%);
  box-shadow:0 0 22px rgba(34,212,135,.8);
  animation:dataDot 1.8s linear infinite;
}
.receipt-visual{display:grid;place-items:center}
.receipt-paper{
  position:relative;
  z-index:2;
  width:130px;
  min-height:150px;
  padding:16px;
  border-radius:16px 16px 24px 24px;
  color:var(--ink);
  background:white;
  box-shadow:0 24px 55px rgba(0,0,0,.24);
  transform:rotate(-3deg);
  animation:receiptPrint 6.5s ease-in-out infinite;
}
.receipt-paper b{display:block;font-size:11px;letter-spacing:-.02em;margin-bottom:14px}
.receipt-paper span{display:block;height:7px;border-radius:999px;background:#dbe7df;margin-bottom:8px}
.receipt-paper span:nth-of-type(2){width:72%}
.receipt-paper span:nth-of-type(3){width:54%}
.receipt-paper strong{
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  margin-top:16px;
  border-radius:10px;
  background:#061711;
  color:white;
  font-size:13px;
  letter-spacing:-.04em;
}

.dont-need-section{background:var(--navy);color:white}
.dont-need-card{
  background:transparent;
  border:0;
  border-bottom:1px solid rgba(255,255,255,.12);
  border-radius:0;
  padding:18px 8px;
  box-shadow:none;
  font-weight:800;
  color:rgba(255,255,255,.84);
}
.need-card,.included-item{display:flex;align-items:center;gap:12px;font-weight:900}

.pricing-section{background:#f6fbf8;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.pricing-box{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:26px;
  align-items:stretch;
  margin-bottom:22px;
}
.pricing-main,.pricing-card{
  border-radius:30px;
  background:white;
  border:1px solid var(--line);
  box-shadow:0 16px 45px rgba(6,23,17,.06);
  padding:32px;
}
.pricing-main h2{margin-bottom:16px;color:var(--ink)}
.pricing-main p{color:var(--muted);font-size:17px;line-height:1.75;margin:0}
.pricing-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  background:linear-gradient(135deg,var(--navy-2),var(--navy-3));
  color:white;
  animation:priceGlow 3.2s ease-in-out infinite;
}
.pricing-card span{color:rgba(255,255,255,.68);font-weight:900}
.pricing-card strong{color:var(--green-2);font-size:48px;line-height:.92;letter-spacing:-.07em;margin:8px 0}
.pricing-card small{color:rgba(255,255,255,.72);font-weight:800;margin-bottom:22px}

.solution-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:50px;align-items:center}
.solution-copy h2{margin-bottom:18px}
.activation-strip{display:flex;flex-wrap:wrap;gap:10px;margin:24px 0 26px}
.activation-strip span{
  padding:10px 13px;
  border-radius:999px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.84);
  font-weight:900;
  font-size:13px;
}
.feature-list{display:grid;grid-template-columns:repeat(3,1fr);gap:15px}
.feature-mini{
  display:flex;
  gap:12px;
  align-items:center;
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:white;
  font-weight:800;
  font-size:14px;
  backdrop-filter:blur(14px);
}
.feature-mini span{color:var(--green-2);font-size:22px}

.compare-card{border-radius:30px;padding:32px;border:1px solid var(--line);box-shadow:0 16px 45px rgba(6,23,17,.06)}
.compare-card.old{background:#fff}
.compare-card.new{color:white;background:linear-gradient(135deg,var(--navy-2),var(--green-dark));border-color:rgba(24,196,125,.28)}
.compare-card h3{margin:0 0 18px;font-size:26px;letter-spacing:-.04em}
.compare-card ul{list-style:none;padding:0;margin:0;display:grid;gap:14px}
.compare-card li{font-weight:850;line-height:1.5;color:var(--muted)}
.compare-card.new li{color:rgba(255,255,255,.86)}

.reference-grid.logo-scroll{
  display:flex;
  gap:24px;
  overflow:hidden;
  /* uklonjen animation odavde, ide na inner wrap */
}

.logo-scroll-inner{
  display:flex;
  gap:24px;
  animation:logoMarquee 22s linear infinite;
  width:max-content;
}

.logo-scroll-inner:hover{
  animation-play-state:paused;
}

@keyframes logoMarquee{
  0%  { transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

.reference-grid.logo-scroll .reference-card{
  flex-shrink:0;
  min-width:200px;
  min-height:100px;
  background:#0d2a1f;
  border:1px solid rgba(34,212,135,.2);
  border-radius:18px;
  color:white;
  font-size:15px;
  font-weight:900;
  letter-spacing:-.02em;
  box-shadow:0 4px 20px rgba(0,0,0,.22);
  transition:background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.reference-grid.logo-scroll .reference-card:hover{
  background:#0f3826
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.reference-grid.logo-scroll .reference-card {
  flex-shrink: 0;
  min-width: 200px;
}

.reference-card{
  min-width:220px;
  min-height:112px;
  display:grid;
  place-items:center;
  text-align:center;
  background:#f6fbf8;
  font-weight:900;
  font-size:18px;
  letter-spacing:-.03em;
}
.industry-card{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.15);
  color:white;
  box-shadow:none;
  padding:24px;
}
.industry-card strong{display:block;margin-top:14px;font-size:18px}
.industry-card p{color:rgba(255,255,255,.7);line-height:1.6;font-size:14px}

.steps-wrap{display:grid;grid-template-columns:.9fr 1.1fr;gap:48px;align-items:start}
.steps-copy{position:sticky;top:110px}
.step-list{display:grid;gap:16px}
.step{display:grid;grid-template-columns:58px 1fr;gap:18px}
.step-number{
  width:58px;
  height:58px;
  border-radius:19px;
  background:linear-gradient(135deg,var(--green-2),var(--green-dark));
  color:#052016;
  display:grid;
  place-items:center;
  font-size:22px;
  font-weight:900;
  margin-bottom:18px;
}
.step h3{margin:0 0 8px;letter-spacing:-.035em}
.step p{margin:0;color:var(--muted);line-height:1.6}

.seo-url{
  display:inline-flex;
  margin-top:16px;
  color:var(--green-dark);
  font-weight:900;
  font-size:13px;
  background:#eaf9f1;
  border-radius:999px;
  padding:7px 10px;
}
summary{cursor:pointer;font-weight:900;letter-spacing:-.02em}
details p{margin-top:14px}

.contact-box{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:0;
  overflow:hidden;
  background:linear-gradient(135deg,var(--green-dark),var(--navy-3));
  color:white;
  border-radius:34px;
  box-shadow:var(--shadow-dark);
}
.contact-copy{padding:46px;position:relative}
.contact-copy::after{
  content:"IP";
  position:absolute;
  right:22px;
  bottom:-42px;
  font-size:170px;
  font-weight:900;
  opacity:.08;
  letter-spacing:-.12em;
}
.contact-copy p{color:rgba(255,255,255,.76);line-height:1.75}
.form-card{margin:18px;padding:28px;border-radius:26px;background:white;color:var(--ink)}
.form-card h3{margin:0 0 16px;letter-spacing:-.04em}
.form-card input,.form-card textarea{
  width:100%;
  border:1px solid #d8e5dd;
  border-radius:15px;
  padding:15px;
  margin-bottom:12px;
  font:inherit;
  outline:none;
}
.form-card input:focus,.form-card textarea:focus{border-color:var(--green);box-shadow:0 0 0 4px rgba(24,196,125,.1)}
.form-card textarea{min-height:120px;resize:vertical}

footer{
  padding:38px 0 20px;
  border-top:1px solid rgba(255,255,255,.1);
  color:rgba(255,255,255,.62);
  background:#04110c;
}
.footer-inner{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:30px;
  padding-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-block h4,
.footer-inner strong{display:block;color:white;margin:0 0 10px}
.footer-block p{margin:0 0 8px;line-height:1.6}
.footer-block a{color:#bbefdb}
.footer-block a:hover{color:white}

.footer-social{display:grid;gap:10px}
.footer-social a{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.78);
  text-decoration:none;
  transition:color .2s ease, transform .2s ease;
}
.footer-social a:hover{color:white;transform:translateX(3px)}

.social-icon{
  width:34px;
  height:34px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,rgba(34,212,135,.25),rgba(13,108,64,.35));
  border:1px solid rgba(180,239,219,.28);
}
.social-icon svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  color:#d8ffee;
}
.footer-social a:nth-child(2) .social-icon svg,
.footer-social a:nth-child(3) .social-icon svg{fill:currentColor;stroke:none}

.footer-bottom{
  padding-top:14px;
  text-align:center;
}
.footer-bottom small{color:rgba(255,255,255,.5)}

.reveal{opacity:1!important;transform:none!important;animation:softRise .8s ease both}

@keyframes pulse{70%{box-shadow:0 0 0 12px rgba(34,212,135,0)}100%{box-shadow:0 0 0 0 rgba(34,212,135,0)}}
@keyframes softRise{from{opacity:.01;transform:translateY(22px) scale(.985)}to{opacity:1;transform:none}}
@keyframes priceGlow{0%,100%{box-shadow:0 22px 70px rgba(24,196,125,.18)}50%{box-shadow:0 28px 90px rgba(24,196,125,.34)}}
@keyframes buttonShine{0%,55%{transform:translateX(-120%)}78%,100%{transform:translateX(120%)}}
@keyframes clickPulse{0%,100%{transform:scale(1);box-shadow:0 14px 34px rgba(24,196,125,.32)}50%{transform:scale(1.06);box-shadow:0 20px 48px rgba(24,196,125,.5)}}
@keyframes lineLoad{0%,100%{transform:scaleX(.72);opacity:.55}50%{transform:scaleX(1);opacity:1}}
@keyframes dataDot{from{left:0;opacity:0}15%{opacity:1}85%{opacity:1}to{left:100%;opacity:0}}
@keyframes nodePulse{0%,100%{transform:scale(1)}50%{transform:scale(1.05)}}
@keyframes receiptPrint{0%, 20%   { transform:rotate(-3deg) translateY(0); } 35%, 65%  { transform:rotate(-1deg) translateY(-8px); } 80%, 100% { transform:rotate(-3deg) translateY(0); }}
@keyframes badgePulse{0%,100%{box-shadow:0 0 0 0 rgba(24,196,125,.18)}50%{box-shadow:0 0 0 8px rgba(24,196,125,.08)}}
@keyframes statFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-5px)}}
@keyframes totalGlow{0%,100%{box-shadow:0 10px 24px rgba(24,196,125,.12)}50%{box-shadow:0 14px 34px rgba(24,196,125,.32)}}
@keyframes logoBreathe{0%,100%{transform:scale(1)}50%{transform:scale(1.06)}}
@keyframes watermarkFloat{0%,100%{transform:translateY(0) rotate(0)}50%{transform:translateY(18px) rotate(-2deg)}}
@keyframes floatCard{0%,100%{transform:perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(0)}50%{transform:perspective(1000px) rotateY(-3deg) rotateX(1deg) translateY(-14px)}}
@keyframes phoneFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
@keyframes logoMarquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

@media (max-width:1050px){
  .nav{display:none}
  .hero-grid,.solution-grid,.steps-wrap,.contact-box,.pricing-box{grid-template-columns:1fr}
  .mockup-wrap{min-height:auto}
  .simple-steps-grid,.problem-grid,.need-grid,.dont-need-grid,.included-grid,.reference-grid,.industry-grid,.features-grid,.visual-flow-grid,.seo-grid,.documentation-grid,.seo-text-grid,.faq-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .compare-grid{grid-template-columns:1fr}
  .steps-copy{position:static}
  .footer-inner{grid-template-columns:1fr}
  .footer-bottom{text-align:left}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important}
}
@media (max-width:640px){
  .container{width:min(100% - 28px,1180px)}
  .hero{min-height:auto;padding:58px 0 68px}
  h1{font-size:clamp(42px,13vw,58px)}
  .hero-points,.simple-steps-grid,.problem-grid,.need-grid,.dont-need-grid,.included-grid,.reference-grid,.industry-grid,.features-grid,.visual-flow-grid,.seo-grid,.documentation-grid,.seo-text-grid,.faq-grid,.feature-list{
    grid-template-columns:1fr;
  }
  .hero-actions{flex-direction:column}
  .price-hero-card{width:100%;grid-template-columns:1fr;align-items:start;gap:6px}
  .price-hero-card strong,.pricing-card strong{font-size:42px}
  .pricing-main,.pricing-card,.compare-card{padding:24px}
  .activation-strip{flex-direction:column}
  .btn{width:100%}
  .dash-body{grid-template-columns:1fr}
  .dash-sidebar{display:none}
  .dash-stats{grid-template-columns:repeat(2,1fr)}
  .dashboard{transform:none;animation:none}
  .floating-card{position:relative;right:auto;bottom:auto;margin:18px auto 0}
  .section{padding:68px 0}
  .contact-copy,.form-card{padding:24px}
  .animation-frame iframe{height:720px}
}

/* === COMPACT LAYOUT OVERRIDE === */
.hero{
  min-height: 680px;
  padding: 72px 0 64px;
}
.hero-grid{ gap: 34px; }
.hero-grid.balanced{ gap: 20px; }
.hero-copy{ gap: 10px; }

h1{
  margin: 0 0 14px;
  line-height: 1.02;
}
.hero-lead{
  margin: 0 0 14px;
  line-height: 1.5;
  font-size: clamp(16px, 1.5vw, 19px);
}
.eyebrow,.kicker{ margin-bottom: 8px; }

.hero-actions{ gap: 10px; margin-bottom: 12px; }
.hero-points{ margin-top: 2px; gap: 6px; }
.hero-points li{ line-height: 1.45; }

.section{
  padding: 64px 0;
}
.section-head{
  margin: 0 auto 28px;
}
h2{
  line-height: 1.1;
}
.section-head p,.section-copy{
  margin-top: 10px;
  line-height: 1.55;
  font-size: 16px;
}

.hero-copy,
.section-head {
  max-width: 760px;
}

.hero-lead,
.section-head p,
.section-copy {
  max-width: 62ch;
}

.hero-points {
  max-width: 58ch;
}

.hero-visual {
  align-content: start;
}

/* grid spacing */
.visual-flow-grid,.features-grid,.seo-grid,.documentation-grid,.seo-text-grid{ gap: 14px; }
.simple-steps-grid,.problem-grid,.need-grid,.dont-need-grid,.included-grid,.reference-grid,.industry-grid{ gap: 12px; }
.faq-grid,.compare-grid{ gap: 14px; }

/* cards tighter */
.simple-step-card,.problem-card,.feature-card,.seo-card,.seo-text-card,.documentation-card,details,.need-card,.included-item,.reference-card,.step{
  padding: 18px;
  border-radius: 18px;
}
.simple-step-card h3,.problem-card h3,.feature-card h3,.seo-card h3,.seo-text-card h3,.documentation-card h3{
  margin: 0 0 6px;
  font-size: 18px;
}
.simple-step-card p,.problem-card p,.feature-card p,.seo-card p,.seo-text-card p,.documentation-card p,details p{
  line-height: 1.55;
  font-size: 14px;
}
.icon{
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  font-size: 20px;
}

/* steps */
.steps-wrap{ gap: 28px; }
.step-list{ gap: 10px; }
.step{ gap: 14px; }
.step-number{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-bottom: 8px;
  font-size: 18px;
}

/* contact */
.contact-copy{ padding: 32px; }
.form-card{ margin: 14px; padding: 20px; }
.form-card input,.form-card textarea{
  padding: 12px;
  margin-bottom: 10px;
}

/* mobile tighter */
@media (max-width:640px){
  .hero{ padding: 46px 0 50px; }
  .section{ padding: 52px 0; }
  .section-head{ margin-bottom: 20px; }
}

.hero-support{
  margin: 0 0 10px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.5;
  max-width: 62ch;
}

.hero-price{
  margin-bottom: 4px;
}
.hero-price-note{
  display: block;
  color: rgba(220,238,230,.78);
  font-size: 12px;
  line-height: 1.4;
}
.hero-plain-list{
  margin: 4px 0 0;
  padding-left: 18px;
  color: rgba(220,238,230,.9);
  font-size: 13px;
  line-height: 1.45;
}
.hero-plain-list li{ margin: 4px 0; }

/* SEO pages — manji H1 da hero ostane kompaktan */
.hero-grid.balanced h1 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
  margin-bottom: 10px;
}
.hero-grid.balanced h1 .accent-text {
  display: inline;
  color: var(--green-2);
  text-shadow: 0 8px 40px rgba(34,212,135,.22);
}

.mobile-menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:none;
  background:transparent;
  cursor:pointer;
  padding:0;
  position:relative;
  z-index:1001;
}

.mobile-menu-toggle span{
  display:block;
  width:26px;
  height:2px;
  background:#fff;
  margin:6px auto;
  border-radius:2px;
  transition:.3s ease;
}

@media (max-width: 980px){

  .mobile-menu-toggle{
    display:block;
  }

  .main-nav{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:#081510;
    padding:90px 24px 24px;
    transition:right .35s ease;
    z-index:1000;
    display:flex;
    flex-direction:column;
    gap:18px;
  }

  .main-nav.active{
    right:0;
  }

  .main-nav a{
    font-size:18px;
    color:#fff;
  }
}

/* === FINAL MOBILE HEADER / HAMBURGER FIX === */
.mobile-menu-toggle{
  width:44px;
  height:44px;
  min-width:44px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  border-radius:14px;
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  padding:0;
  position:relative;
  z-index:1003;
  cursor:pointer;
}

.mobile-menu-toggle span{
  width:20px;
  height:2px;
  background:#fff;
  border-radius:999px;
  display:block;
  transition:transform .25s ease, opacity .2s ease;
  margin:0;
  transform-origin:center;
}

.mobile-menu-toggle.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2){
  opacity:0;
}

.mobile-menu-toggle.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(4px);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
  z-index:999;
}

.mobile-nav-overlay.active{
  opacity:1;
  pointer-events:auto;
}

@media (max-width:1050px){
  .site-header{
    z-index:1000;
  }

  .header-inner{
    min-height:68px;
    gap:12px;
  }

  .brand{
    min-width:0;
    flex:1 1 auto;
  }

  .brand-logo{
    width:46px;
    height:46px;
    min-width:46px;
    min-height:46px;
    flex-basis:46px;
  }

  .header-inner > .btn{
    display:none !important;
  }

  .mobile-menu-toggle{
    display:flex;
    flex:0 0 44px;
  }

  .nav{
    position:fixed;
    top:0;
    right:-100%;
    width:min(82vw,310px);
    height:100vh;
    background:#081510;
    padding:92px 24px 28px;
    display:flex !important;
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
    transition:right .3s ease;
    z-index:1002;
    border-left:1px solid rgba(255,255,255,.12);
    box-shadow:-30px 0 80px rgba(0,0,0,.34);
  }

  .nav.active{
    right:0;
  }

  .nav a{
    color:#fff;
    font-size:18px;
    line-height:1.35;
    width:100%;
    padding:8px 0;
  }

  body.mobile-menu-open{
    overflow:hidden;
  }
}

@media (max-width:420px){
  .brand{
    font-size:20px;
    gap:9px;
  }

  .brand-logo{
    width:42px;
    height:42px;
    min-width:42px;
    min-height:42px;
    flex-basis:42px;
  }

  .mobile-menu-toggle{
    width:42px;
    height:42px;
    min-width:42px;
  }
}
.nav-dropdown{
  position:relative;
}

.nav-dropdown-toggle{
  background:none;
  border:none;
  color:inherit;
  font:inherit;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:6px;
  padding:0;
}

.dropdown-arrow{
  font-size:12px;
}

.nav-dropdown-menu{
  position:absolute;
  top:calc(100% + 14px);
  left:0;
  min-width:260px;
  background:#111827;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:12px;
  display:flex;
  flex-direction:column;
  gap:4px;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.25s ease;
  z-index:1000;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.nav-dropdown-menu a{
  padding:12px 14px;
  border-radius:12px;
  text-decoration:none;
  color:#fff;
  transition:.2s ease;
}

.nav-dropdown-menu a:hover{
  background:rgba(255,255,255,.08);
}

.nav-dropdown:hover .nav-dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* === SEO LANDING PAGES — IntelliPOS aligned additions === */
.section-head.left{
  text-align:left;
  margin-left:0;
  margin-right:0;
}
.section-head.center{
  text-align:center;
}
.text-link{
  color:var(--green-dark);
  font-weight:900;
  border-bottom:1px solid rgba(15,122,79,.28);
}
.text-link:hover{
  color:#075f3d;
  border-bottom-color:rgba(15,122,79,.58);
}
.hero-grid.seo-hero-grid{
  grid-template-columns:1.08fr .92fr;
  gap:34px;
  align-items:center;
}
.seo-badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:6px 0 4px;
}
.seo-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  color:rgba(255,255,255,.86);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  font-size:13px;
  font-weight:900;
}
.seo-badge::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--green-2);
  box-shadow:0 0 18px rgba(34,212,135,.65);
}
.seo-hero-grid .hero-visual{
  border-radius:30px;
  padding:22px;
  background:
    radial-gradient(circle at 20% 10%,rgba(34,212,135,.12),transparent 32%),
    linear-gradient(180deg,#102a21 0%,#0b2119 100%);
  box-shadow:var(--shadow-dark);
}
.ecommerce-flow{
  display:grid;
  gap:12px;
}
.ecommerce-flow-step{
  display:grid;
  grid-template-columns:42px 1fr auto;
  gap:12px;
  align-items:center;
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.11);
}
.ecommerce-flow-step b{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  color:#052016;
  background:linear-gradient(135deg,var(--green-2),var(--green));
  font-size:14px;
}
.ecommerce-flow-step span{
  color:rgba(255,255,255,.74);
  font-size:13px;
  font-weight:800;
}
.ecommerce-flow-step strong{
  color:white;
  display:block;
  margin-top:3px;
  letter-spacing:-.03em;
}
.ecommerce-flow-step em{
  color:var(--green-2);
  font-style:normal;
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
}
.seo-intro-layout{
  display:grid;
  grid-template-columns:.84fr 1.16fr;
  gap:22px;
  align-items:start;
}
.seo-note-card{
  border-radius:28px;
  padding:28px;
  background:linear-gradient(135deg,var(--navy-2),var(--navy-3));
  color:white;
  box-shadow:var(--shadow);
}
.seo-note-card h3{
  color:white;
  margin:0 0 12px;
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.05em;
}
.seo-note-card p{
  color:rgba(255,255,255,.76);
  line-height:1.7;
  margin:0 0 18px;
}
.seo-note-list{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}
.seo-note-list li{
  position:relative;
  padding-left:24px;
  color:rgba(255,255,255,.86);
  line-height:1.55;
  font-weight:750;
}
.seo-note-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--green-2);
  font-weight:900;
}
.seo-copy-card{
  border-radius:28px;
  background:white;
  border:1px solid var(--line);
  padding:30px;
  box-shadow:0 16px 45px rgba(6,23,17,.06);
}
.seo-copy-card p{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.78;
  font-size:16px;
}
.seo-copy-card p:last-child{margin-bottom:0}
.process-timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  counter-reset:process;
}
.process-step{
  position:relative;
  min-height:230px;
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:0 12px 35px rgba(6,23,17,.05);
}
.process-step::before{
  counter-increment:process;
  content:"0" counter(process);
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  color:#052016;
  background:linear-gradient(135deg,var(--green-2),var(--green));
  font-weight:900;
  margin-bottom:18px;
}
.process-step h3{
  margin:0 0 10px;
  font-size:19px;
  letter-spacing:-.035em;
}
.process-step p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
  font-size:15px;
}
.seo-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.seo-dark-card{
  border-radius:30px;
  padding:30px;
  color:white;
  background:
    radial-gradient(circle at 18% 18%,rgba(34,212,135,.15),transparent 34%),
    linear-gradient(135deg,var(--navy-2),var(--navy-3));
  border:1px solid rgba(255,255,255,.1);
  box-shadow:var(--shadow-dark);
}
.seo-dark-card h3{
  margin:0 0 14px;
  color:white;
  font-size:26px;
  letter-spacing:-.045em;
}
.seo-dark-card p,
.seo-dark-card li{
  color:rgba(255,255,255,.76);
}
.seo-dark-card ul{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}
.seo-dark-card li{
  position:relative;
  padding-left:24px;
  line-height:1.55;
  font-weight:800;
}
.seo-dark-card li::before{
  content:"•";
  position:absolute;
  left:4px;
  color:var(--green-2);
}
.seo-light-card{
  border-radius:30px;
  padding:30px;
  background:#f6fbf8;
  border:1px solid var(--line);
}
.seo-light-card h3{
  margin:0 0 14px;
  font-size:26px;
  letter-spacing:-.045em;
}
.seo-light-card p{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.72;
}
.seo-light-card p:last-child{margin-bottom:0}
.linked-topic-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.linked-topic{
  position:relative;
  display:block;
  padding:24px;
  border-radius:24px;
  background:white;
  border:1px solid var(--line);
  box-shadow:0 12px 35px rgba(6,23,17,.05);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.linked-topic:hover{
  transform:translateY(-7px);
  border-color:rgba(24,196,125,.42);
  box-shadow:var(--shadow);
}
.linked-topic strong{
  display:block;
  margin-bottom:8px;
  color:var(--ink);
  font-size:18px;
  letter-spacing:-.03em;
}
.linked-topic p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}
.linked-topic span{
  display:inline-flex;
  margin-top:16px;
  color:var(--green-dark);
  font-weight:900;
}
.faq-list{
  max-width:920px;
  margin:0 auto;
  display:grid;
  gap:14px;
}
.faq-list details{
  padding:22px 24px;
}
.faq-list summary{
  list-style:none;
  display:flex;
  justify-content:space-between;
  gap:16px;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::after{
  content:"+";
  color:var(--green-dark);
  font-weight:900;
}
.faq-list details[open] summary::after{content:"−"}
.cta-section{
  background:
    radial-gradient(circle at 18% 18%,rgba(34,212,135,.20),transparent 30%),
    linear-gradient(135deg,var(--navy),var(--navy-3)) !important;
  color:white;
}
.cta-section h2{color:white}
.cta-section .section-head p{color:rgba(255,255,255,.74)}
.hero-actions.center{
  justify-content:center;
}
.nav-dropdown-menu a[aria-current="page"],
.nav a[aria-current="page"]{
  color:white;
  background:rgba(34,212,135,.10);
}

@media (max-width:1050px){
  .hero-grid.seo-hero-grid,
  .seo-intro-layout,
  .seo-split{
    grid-template-columns:1fr;
  }
  .process-timeline,
  .linked-topic-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .nav-dropdown{
    width:100%;
  }
  .nav-dropdown-toggle{
    width:100%;
    justify-content:space-between;
    color:#fff;
    font-size:18px;
    padding:8px 0;
  }
  .nav-dropdown-menu{
    position:static;
    min-width:0;
    width:100%;
    opacity:1;
    visibility:visible;
    transform:none;
    margin-top:4px;
    padding:6px 0 4px 14px;
    background:transparent;
    border:0;
    box-shadow:none;
    display:grid;
    gap:2px;
  }
  .nav-dropdown-menu a{
    font-size:15px;
    color:rgba(255,255,255,.78);
    padding:8px 10px;
  }
}
@media (max-width:640px){
  .hero-grid.seo-hero-grid h1{
    font-size:clamp(36px,11vw,52px);
  }
  .seo-badge-row{
    gap:8px;
  }
  .seo-badge{
    width:100%;
    justify-content:flex-start;
  }
  .ecommerce-flow-step{
    grid-template-columns:38px 1fr;
  }
  .ecommerce-flow-step em{
    grid-column:2;
  }
  .seo-copy-card,
  .seo-note-card,
  .seo-dark-card,
  .seo-light-card{
    padding:22px;
    border-radius:24px;
  }
  .process-timeline,
  .linked-topic-grid{
    grid-template-columns:1fr;
  }
  .process-step{
    min-height:auto;
  }
}

/* === SERVICE SEO HERO — USLUŽNE DELATNOSTI === */
.service-hero{
  min-height:720px;
  padding:84px 0 78px;
  background:
    radial-gradient(circle at 14% 22%,rgba(34,212,135,.22),transparent 30%),
    radial-gradient(circle at 86% 18%,rgba(255,255,255,.08),transparent 28%),
    radial-gradient(circle at 76% 78%,rgba(24,196,125,.16),transparent 32%),
    linear-gradient(135deg,#061711 0%,#09251a 48%,#0d3324 100%);
}
.service-hero::before{
  content:"USLUGE";
  right:-70px;
  top:84px;
  font-size:clamp(96px,15vw,220px);
  letter-spacing:-.1em;
}
.service-hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:54px;
  align-items:center;
}
.service-hero-copy h1{
  font-size:clamp(42px,5.2vw,74px);
  line-height:.98;
  letter-spacing:-.075em;
}
.service-hero-copy .accent-text{
  display:block;
}
.service-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:24px 0 18px;
}
.service-hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.service-hero-tags span{
  color:rgba(255,255,255,.82);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  padding:9px 12px;
  font-weight:900;
  font-size:13px;
}
.service-hero-stage{
  position:relative;
  min-height:560px;
  border-radius:38px;
  border:1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.045)),
    rgba(255,255,255,.04);
  box-shadow:var(--shadow-dark);
  overflow:hidden;
  backdrop-filter:blur(14px);
}
.service-hero-stage::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:42px 42px;
  mask-image:radial-gradient(circle at center,black,transparent 78%);
}
.service-orbit{
  position:absolute;
  width:360px;
  height:360px;
  right:68px;
  top:86px;
  border:1px dashed rgba(34,212,135,.28);
  border-radius:50%;
  animation:serviceOrbit 18s linear infinite;
}
.service-orbit::before,
.service-orbit::after{
  content:"";
  position:absolute;
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--green-2);
  box-shadow:0 0 24px rgba(34,212,135,.75);
}
.service-orbit::before{left:20px;top:58px}
.service-orbit::after{right:34px;bottom:42px}
.service-day-card{
  position:absolute;
  z-index:3;
  width:178px;
  border-radius:24px;
  padding:16px;
  background:rgba(255,255,255,.94);
  color:var(--ink);
  border:1px solid rgba(255,255,255,.28);
  box-shadow:0 20px 55px rgba(0,0,0,.24);
  animation:serviceCardFloat 5s ease-in-out infinite;
}
.service-day-card span{
  display:inline-flex;
  color:var(--green-dark);
  background:#eaf9f1;
  border-radius:999px;
  padding:5px 8px;
  font-size:12px;
  font-weight:900;
  margin-bottom:10px;
}
.service-day-card strong{
  display:block;
  font-size:16px;
  line-height:1.25;
  letter-spacing:-.035em;
  margin-bottom:7px;
}
.service-day-card em{
  color:var(--muted);
  font-style:normal;
  font-weight:900;
  font-size:13px;
}
.service-day-card-1{left:28px;top:56px;animation-delay:.1s}
.service-day-card-2{right:38px;top:42px;animation-delay:.8s}
.service-day-card-3{left:44px;bottom:86px;animation-delay:1.3s}
.service-terminal-card{
  position:absolute;
  z-index:4;
  left:50%;
  top:50%;
  width:320px;
  transform:translate(-50%,-50%);
  border-radius:30px;
  padding:18px;
  color:white;
  background:linear-gradient(180deg,#0f2a20,#071913);
  border:1px solid rgba(34,212,135,.24);
  box-shadow:0 30px 90px rgba(0,0,0,.38);
  animation:serviceTerminalGlow 3.4s ease-in-out infinite;
}
.terminal-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
}
.terminal-top span{font-weight:900;letter-spacing:-.05em;font-size:22px}
.terminal-top b{
  color:var(--green-2);
  border:1px solid rgba(34,212,135,.26);
  background:rgba(34,212,135,.1);
  border-radius:999px;
  padding:6px 9px;
  font-size:11px;
}
.terminal-screen{
  background:#05120d;
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:18px;
  min-height:150px;
}
.screen-line{
  display:block;
  height:11px;
  width:72%;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  margin-bottom:12px;
  animation:serviceLineLoad 2.2s ease-in-out infinite;
  transform-origin:left center;
}
.screen-line.wide{width:94%}
.screen-line.short{width:48%}
.screen-status{
  margin-top:20px;
  color:#052016;
  background:linear-gradient(135deg,var(--green-2),var(--green));
  border-radius:15px;
  padding:12px;
  text-align:center;
  font-weight:900;
  animation:serviceStatusBlink 2s ease-in-out infinite;
}
.terminal-flow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-top:14px;
  color:rgba(255,255,255,.72);
  font-size:12px;
  font-weight:900;
}
.terminal-flow i{
  flex:1;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(34,212,135,.15),rgba(34,212,135,.85));
  position:relative;
}
.terminal-flow i::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--green-2);
  transform:translateY(-50%);
  box-shadow:0 0 18px rgba(34,212,135,.8);
}
.service-receipt-card{
  position:absolute;
  z-index:5;
  right:42px;
  bottom:44px;
  width:150px;
  min-height:210px;
  padding:18px;
  border-radius:18px 18px 28px 28px;
  background:white;
  color:var(--ink);
  box-shadow:0 28px 70px rgba(0,0,0,.32);
  animation:serviceReceiptPop 4.8s ease-in-out infinite;
}
.receipt-brand{
  font-size:11px;
  font-weight:900;
  letter-spacing:.04em;
  margin-bottom:14px;
}
.service-receipt-card span{
  display:block;
  height:8px;
  background:#dbe7df;
  border-radius:999px;
  margin-bottom:8px;
}
.service-receipt-card span.short{width:58%}
.qr-box{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:#061711;
  color:white;
  font-weight:900;
  margin:16px 0 12px;
}
.service-receipt-card strong{
  color:var(--green-dark);
  font-size:12px;
}
.service-price-bubble{
  position:absolute;
  z-index:5;
  left:210px;
  bottom:34px;
  min-width:170px;
  border-radius:24px;
  padding:16px 18px;
  color:white;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(34,212,135,.28);
  box-shadow:0 22px 60px rgba(24,196,125,.16);
  backdrop-filter:blur(14px);
}
.service-price-bubble span,
.service-price-bubble small{
  display:block;
  color:rgba(255,255,255,.68);
  font-weight:900;
  font-size:12px;
}
.service-price-bubble strong{
  display:block;
  color:var(--green-2);
  font-size:25px;
  letter-spacing:-.05em;
  margin:4px 0;
}
@keyframes serviceOrbit{
  to{transform:rotate(360deg)}
}
@keyframes serviceCardFloat{
  0%,100%{transform:translateY(0) rotate(0)}
  50%{transform:translateY(-12px) rotate(-1.5deg)}
}
@keyframes serviceTerminalGlow{
  0%,100%{box-shadow:0 30px 90px rgba(0,0,0,.38)}
  50%{box-shadow:0 34px 110px rgba(24,196,125,.28)}
}
@keyframes serviceLineLoad{
  0%,100%{transform:scaleX(.62);opacity:.55}
  50%{transform:scaleX(1);opacity:1}
}
@keyframes serviceStatusBlink{
  0%,100%{filter:saturate(1);transform:scale(1)}
  50%{filter:saturate(1.25);transform:scale(1.025)}
}
@keyframes serviceReceiptPop{
  0%,100%{transform:translateY(0) rotate(3deg)}
  50%{transform:translateY(-12px) rotate(1deg)}
}
@media (max-width:1050px){
  .service-hero-grid{
    grid-template-columns:1fr;
    gap:32px;
  }
  .service-hero-stage{
    min-height:520px;
  }
}
@media (max-width:640px){
  .service-hero{
    padding:52px 0 56px;
  }
  .service-hero-copy h1{
    font-size:clamp(38px,11vw,54px);
  }
  .service-hero-actions{
    flex-direction:column;
  }
  .service-hero-stage{
    min-height:620px;
    border-radius:28px;
  }
  .service-orbit{
    width:260px;
    height:260px;
    right:-40px;
    top:120px;
  }
  .service-terminal-card{
    width:calc(100% - 34px);
    top:280px;
  }
  .service-day-card{
    width:155px;
    padding:14px;
  }
  .service-day-card-1{left:16px;top:22px}
  .service-day-card-2{right:16px;top:112px}
  .service-day-card-3{left:18px;bottom:36px}
  .service-receipt-card{
    right:18px;
    bottom:36px;
    width:132px;
    min-height:184px;
    padding:15px;
  }
  .service-price-bubble{
    left:18px;
    bottom:244px;
    min-width:150px;
  }
}

/* === FIELD HERO — GRAĐEVINSKE FIRME / TERENSKI RAD === */
.hero-field{
  min-height:720px;
  padding:76px 0 72px;
  background:
    radial-gradient(circle at 16% 18%,rgba(34,212,135,.22),transparent 30%),
    radial-gradient(circle at 80% 22%,rgba(255,255,255,.08),transparent 28%),
    radial-gradient(circle at 72% 84%,rgba(24,196,125,.16),transparent 28%),
    linear-gradient(135deg,#061711 0%,#09251a 48%,#0d3324 100%);
}
.hero-field::before{
  content:"TEREN";
  right:-90px;
  top:70px;
  font-size:clamp(110px,18vw,250px);
  letter-spacing:-.11em;
}
.field-hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:48px;
  align-items:center;
}
.field-hero-copy h1{
  font-size:clamp(38px,4.9vw,70px);
  line-height:1;
  letter-spacing:-.075em;
  margin-bottom:18px;
}
.field-hero-copy .accent-text{display:block}
.field-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:30px 0 26px;
}
.field-hero-checks{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
  max-width:620px;
}
.field-hero-checks li{
  position:relative;
  color:#dceee6;
  background:rgba(255,255,255,.075);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:13px 15px 13px 38px;
  font-weight:850;
  line-height:1.35;
  backdrop-filter:blur(10px);
}
.field-hero-checks li::before{
  content:"✓";
  position:absolute;
  left:15px;
  top:13px;
  color:var(--green-2);
  font-weight:900;
}
.field-hero-visual{
  position:relative;
  min-height:620px;
  max-width:660px;
  margin-left:auto;
}
.field-stage-bg{
  position:absolute;
  inset:42px 28px 34px 42px;
  border-radius:42px;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px),
    radial-gradient(circle at 42% 30%,rgba(34,212,135,.18),transparent 30%),
    rgba(255,255,255,.045);
  background-size:42px 42px,42px 42px,auto,auto;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow-dark);
  backdrop-filter:blur(14px);
}
.field-map-card,
.field-device-card,
.field-receipt-card,
.field-price-badge,
.field-mini-card{
  position:absolute;
  z-index:2;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 90px rgba(0,0,0,.28);
  backdrop-filter:blur(18px);
}
.field-map-card{
  left:0;
  top:18px;
  width:390px;
  min-height:292px;
  border-radius:34px;
  padding:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.13),rgba(255,255,255,.07));
  animation:fieldFloatOne 6.4s ease-in-out infinite;
}
.field-map-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  color:white;
  margin-bottom:14px;
}
.field-map-top strong{font-size:16px;letter-spacing:-.02em}
.field-map-top span{
  color:var(--green-2);
  font-size:12px;
  font-weight:900;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(34,212,135,.12);
  border:1px solid rgba(34,212,135,.26);
}
.field-map{
  position:relative;
  min-height:155px;
  border-radius:26px;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    radial-gradient(circle at 70% 34%,rgba(34,212,135,.18),transparent 20%),
    linear-gradient(135deg,#071912,#0d2a20);
  background-size:34px 34px,34px 34px,auto,auto;
  border:1px solid rgba(255,255,255,.11);
}
.map-route{
  position:absolute;
  left:20%;
  top:58%;
  width:58%;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(34,212,135,.12),var(--green-2),rgba(34,212,135,.12));
  transform:rotate(-18deg);
  box-shadow:0 0 28px rgba(34,212,135,.38);
}
.map-route::after{
  content:"";
  position:absolute;
  top:50%;
  left:0;
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--green-2);
  transform:translate(-50%,-50%);
  box-shadow:0 0 28px rgba(34,212,135,.88);
  animation:routeDot 2.3s linear infinite;
}
.map-pin{
  position:absolute;
  z-index:3;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:78px;
  height:32px;
  padding:0 11px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  color:#052016;
  background:linear-gradient(135deg,var(--green-2),var(--green));
}
.map-pin::before{
  content:"";
  position:absolute;
  left:50%;
  bottom:-6px;
  width:12px;
  height:12px;
  border-radius:3px;
  background:var(--green);
  transform:translateX(-50%) rotate(45deg);
}
.pin-one{left:12%;top:58%;animation:pinPulse 2.4s ease-in-out infinite}
.pin-two{right:10%;top:28%;background:white;animation:pinPulse 2.4s ease-in-out infinite .5s}
.map-grid-dot{position:absolute;width:9px;height:9px;border-radius:50%;background:rgba(255,255,255,.28)}
.d1{left:22%;top:28%}.d2{right:24%;bottom:22%}.d3{left:48%;top:46%}
.field-job-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:12px;
}
.field-job-card div{
  padding:12px;
  border-radius:18px;
  color:white;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}
.field-job-card span{display:block;color:rgba(255,255,255,.62);font-size:12px;font-weight:900}
.field-job-card strong{display:block;margin-top:7px;font-size:14px;line-height:1.25;letter-spacing:-.025em}
.field-device-card{
  right:18px;
  top:160px;
  width:300px;
  border-radius:32px;
  padding:14px;
  background:#07140f;
  animation:fieldFloatTwo 6.2s ease-in-out infinite .3s;
}
.device-header{display:flex;align-items:center;gap:10px;color:white;padding:6px 4px 12px}
.device-header span{width:12px;height:12px;border-radius:50%;background:var(--green-2);box-shadow:0 0 0 8px rgba(34,212,135,.13)}
.device-header strong{flex:1;font-size:14px}.device-header em{font-style:normal;color:var(--green-2);font-size:11px;font-weight:900}
.device-screen{border-radius:24px;padding:18px;min-height:218px;background:white;color:var(--ink)}
.device-screen .screen-line{display:block;height:12px;width:74%;border-radius:999px;background:#dbe7df;margin-bottom:11px;animation:screenLoad 2.8s ease-in-out infinite;transform-origin:left center}
.device-screen .screen-line.wide{width:92%}.device-screen .screen-line.short{width:48%}
.field-progress{display:grid;gap:8px;margin-top:22px}
.field-progress span{
  position:relative;
  display:flex;
  align-items:center;
  min-height:34px;
  padding:0 12px 0 32px;
  border-radius:999px;
  color:#17543a;
  background:#eaf9f1;
  font-size:12px;
  font-weight:900;
}
.field-progress span::before{content:"";position:absolute;left:12px;width:10px;height:10px;border-radius:50%;background:var(--green);box-shadow:0 0 0 0 rgba(24,196,125,.24);animation:progressBlink 2.2s ease-in-out infinite}
.field-progress span:nth-child(2)::before{animation-delay:.35s}.field-progress span:nth-child(3)::before{animation-delay:.7s}.field-progress span:nth-child(4)::before{animation-delay:1.05s}
.field-receipt-card{
  left:32px;
  bottom:86px;
  width:168px;
  border-radius:28px;
  padding:18px;
  color:var(--ink);
  background:white;
  transform:rotate(-5deg);
  animation:receiptField 5.8s ease-in-out infinite;
}
.field-receipt-card span{display:block;color:var(--muted);font-size:12px;font-weight:900;line-height:1.35}
.field-receipt-card strong{display:block;margin-top:6px;color:var(--green-dark);font-size:25px;letter-spacing:-.06em;line-height:1}
.qr-mini{display:grid;grid-template-columns:repeat(3,1fr);gap:4px;width:70px;height:70px;margin-top:14px;padding:6px;border-radius:13px;background:#061711}
.qr-mini i{border-radius:3px;background:white;opacity:.86}.qr-mini i:nth-child(2),.qr-mini i:nth-child(4),.qr-mini i:nth-child(8){opacity:.28}
.field-price-badge{
  right:76px;
  bottom:24px;
  width:240px;
  border-radius:26px;
  padding:18px;
  color:white;
  background:linear-gradient(135deg,var(--green-dark),var(--navy-3));
  animation:priceGlow 3.2s ease-in-out infinite;
}
.field-price-badge span,.field-price-badge small{display:block;color:rgba(255,255,255,.72);font-weight:900;font-size:12px}
.field-price-badge strong{display:block;margin:7px 0 3px;color:var(--green-2);font-size:32px;line-height:1;letter-spacing:-.07em}
.field-mini-card{
  width:158px;
  border-radius:22px;
  padding:15px 16px;
  color:white;
  background:rgba(7,20,15,.92);
  border:1px solid rgba(34,212,135,.20);
  box-shadow:0 22px 60px rgba(0,0,0,.25);
}
.field-mini-card span{
  display:block;
  color:rgba(255,255,255,.66);
  font-size:11px;
  font-weight:900;
  line-height:1.25;
  text-transform:uppercase;
  letter-spacing:.055em;
}
.field-mini-card strong{
  display:block;
  margin-top:8px;
  color:#fff;
  font-size:15px;
  line-height:1.28;
  letter-spacing:-.025em;
}
.field-mini-one{
  left:370px;
  bottom:220px;
  animation:fieldFloatOne 6.8s ease-in-out infinite .4s;
}
.field-mini-two{
  right:268px;
  bottom:0;
  animation:fieldFloatTwo 6.8s ease-in-out infinite .8s;
}
.form-status{display:none;margin:0 0 20px 0}
@keyframes routeDot{0%{left:0;opacity:0}12%{opacity:1}88%{opacity:1}100%{left:100%;opacity:0}}
@keyframes pinPulse{0%,100%{transform:translateY(0);box-shadow:0 12px 30px rgba(24,196,125,.18)}50%{transform:translateY(-5px);box-shadow:0 18px 42px rgba(24,196,125,.34)}}
@keyframes screenLoad{0%,100%{transform:scaleX(.72);opacity:.55}50%{transform:scaleX(1);opacity:1}}
@keyframes progressBlink{0%,100%{box-shadow:0 0 0 0 rgba(24,196,125,.28)}50%{box-shadow:0 0 0 8px rgba(24,196,125,.08)}}
@keyframes receiptField{0%,100%{transform:rotate(-5deg) translateY(0)}50%{transform:rotate(-2deg) translateY(-12px)}}
@keyframes fieldFloatOne{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
@keyframes fieldFloatTwo{0%,100%{transform:translateY(0)}50%{transform:translateY(10px)}}
@media (max-width:1050px){
  .field-hero-grid{grid-template-columns:1fr;gap:34px}
  .field-hero-visual{max-width:680px;margin:0 auto;min-height:640px;width:100%}
}
@media (max-width:720px){
  .hero-field{padding:50px 0 56px;min-height:auto}
  .field-hero-copy h1{font-size:clamp(34px,11vw,52px)}
  .field-hero-actions{flex-direction:column;margin-top:26px}
  .field-hero-checks{grid-template-columns:1fr}
  .field-hero-visual{min-height:auto;display:grid;gap:14px;max-width:none}
  .field-stage-bg{display:none}
  .field-map-card,.field-device-card,.field-receipt-card,.field-price-badge,.field-mini-card{
    position:relative;
    inset:auto;
    left:auto;right:auto;top:auto;bottom:auto;
    width:100%;
    transform:none;
    animation:fieldMobileFloat 5s ease-in-out infinite;
  }
  .field-device-card{animation-delay:.2s}.field-receipt-card{animation-delay:.4s}.field-price-badge{animation-delay:.6s}.field-mini-card{animation-delay:.8s}
  .field-map-card{min-height:auto}.field-map{min-height:180px}.field-job-card{grid-template-columns:1fr}.field-price-badge{text-align:left}
}
@keyframes fieldMobileFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}
/* === FIELD HERO CLEAN FINAL FIX === */
.hero-field .container{
  width:min(var(--container),calc(100% - 40px));
}

.hero-field,
.field-hero-grid{
  overflow:hidden;
}

.field-hero-visual{
  width:100%;
  max-width:660px;
  margin-left:auto;
  overflow:visible;
}

.field-map-card,
.field-device-card,
.field-receipt-card,
.field-price-badge,
.field-mini-card{
  max-width:100%;
}

@media (max-width:1180px){
  .field-hero-grid{
    grid-template-columns:1fr .98fr;
    gap:30px;
  }

  .field-hero-visual{
    max-width:610px;
    transform:scale(.94);
    transform-origin:center right;
  }
}

@media (max-width:1050px){
  .field-hero-grid{
    grid-template-columns:1fr;
    gap:42px;
  }

  .field-hero-copy{
    padding-right:0;
  }

  .field-hero-visual{
    max-width:660px;
    min-height:620px;
    margin:0 auto;
    transform:none;
  }
}

@media (max-width:720px){
  .hero-field .container{
    width:min(100% - 28px,1180px);
  }

  .field-hero-visual{
    min-height:auto;
    display:grid;
    gap:14px;
    max-width:100%;
    overflow:visible;
  }

  .field-stage-bg{
    display:none;
  }

  .field-map-card,
  .field-device-card,
  .field-receipt-card,
  .field-price-badge,
  .field-mini-card{
    position:relative;
    inset:auto;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    width:100%;
    transform:none;
    animation:fieldMobileFloat 5s ease-in-out infinite;
  }

  .field-device-card{animation-delay:.2s}
  .field-receipt-card{animation-delay:.4s}
  .field-price-badge{animation-delay:.6s}
  .field-mini-card{animation-delay:.8s}

  .field-map-card{
    min-height:auto;
  }

  .field-map{
    min-height:180px;
  }

  .field-job-card,
  .field-hero-checks{
    grid-template-columns:1fr;
  }
}

/* === ONLINE CASH REGISTER HERO — ONLINE FISKALNA KASA === */
.online-cash-hero{
  min-height:720px;
  padding:82px 0 76px;
  background:
    radial-gradient(circle at 16% 22%,rgba(34,212,135,.23),transparent 31%),
    radial-gradient(circle at 84% 22%,rgba(255,255,255,.08),transparent 27%),
    radial-gradient(circle at 72% 82%,rgba(24,196,125,.16),transparent 30%),
    linear-gradient(135deg,#061711 0%,#09251a 48%,#0d3324 100%);
}
.online-cash-hero::before{
  content:"ONLINE";
  right:-88px;
  top:76px;
  font-size:clamp(110px,17vw,245px);
  letter-spacing:-.11em;
}
.online-cash-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:50px;
  align-items:center;
}
.online-cash-copy h1{
  font-size:clamp(40px,5vw,74px);
  line-height:1;
  letter-spacing:-.076em;
}
.online-cash-copy .accent-text{
  display:block;
}
.online-cash-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:28px 0 24px;
}
.online-cash-benefits{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  max-width:640px;
}
.online-cash-benefits span{
  position:relative;
  color:#dceee6;
  background:rgba(255,255,255,.075);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:13px 15px 13px 38px;
  font-weight:850;
  line-height:1.35;
  backdrop-filter:blur(10px);
}
.online-cash-benefits span::before{
  content:"✓";
  position:absolute;
  left:15px;
  top:13px;
  color:var(--green-2);
  font-weight:900;
}
.online-cash-visual{
  position:relative;
  min-height:600px;
  max-width:650px;
  margin-left:auto;
}
.cash-glow{
  position:absolute;
  inset:42px 28px 42px 38px;
  border-radius:42px;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px),
    radial-gradient(circle at 45% 28%,rgba(34,212,135,.18),transparent 32%),
    rgba(255,255,255,.045);
  background-size:42px 42px,42px 42px,auto,auto;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow-dark);
  backdrop-filter:blur(14px);
}
.cash-browser-card{
  position:absolute;
  z-index:3;
  left:0;
  top:54px;
  width:520px;
  border-radius:34px;
  padding:18px;
  color:var(--ink);
  background:rgba(255,255,255,.94);
  border:1px solid rgba(255,255,255,.34);
  box-shadow:0 34px 100px rgba(0,0,0,.34);
  animation:cashBrowserFloat 6.2s ease-in-out infinite;
}
.cash-browser-top{
  display:flex;
  align-items:center;
  gap:14px;
  padding:4px 2px 16px;
}
.browser-dots{
  display:flex;
  gap:6px;
}
.browser-dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#c7d7ce;
}
.cash-browser-top strong{
  flex:1;
  font-size:16px;
  letter-spacing:-.03em;
}
.cash-browser-top em{
  font-style:normal;
  color:var(--green-dark);
  background:#eaf9f1;
  border:1px solid rgba(24,196,125,.18);
  border-radius:999px;
  padding:7px 10px;
  font-size:11px;
  font-weight:900;
}
.cash-screen-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:14px;
}
.cash-items-panel,
.cash-status-panel{
  border-radius:24px;
  padding:18px;
  background:#f6fbf8;
  border:1px solid #dcebe3;
}
.panel-label{
  color:var(--green-dark);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:12px;
}
.cash-item-row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
  border-bottom:1px dashed #cdded5;
  color:#344054;
  font-size:13px;
  font-weight:800;
}
.cash-item-row strong{
  color:var(--ink);
  white-space:nowrap;
}
.cash-total-row{
  margin-top:16px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  padding:16px;
  border-radius:18px;
  color:#052016;
  background:linear-gradient(135deg,var(--green-2),var(--green));
  font-weight:900;
  animation:cashTotalGlow 3s ease-in-out infinite;
}
.cash-total-row strong{
  font-size:24px;
  letter-spacing:-.055em;
  white-space:nowrap;
}
.cash-status-panel{
  display:grid;
  align-content:center;
  justify-items:center;
  text-align:center;
  background:linear-gradient(180deg,#071913,#0d2a20);
  border-color:rgba(34,212,135,.18);
  color:white;
}
.status-ring{
  width:112px;
  height:112px;
  border-radius:32px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  background:
    linear-gradient(#071913,#071913) padding-box,
    conic-gradient(from 0deg,var(--green-2),rgba(34,212,135,.1),var(--green-2)) border-box;
  border:4px solid transparent;
  animation:cashQrPulse 3.4s ease-in-out infinite;
}
.status-ring span{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:14px;
  color:#061711;
  background:white;
  font-weight:900;
}
.status-lines{
  width:100%;
  display:grid;
  gap:8px;
  margin-bottom:16px;
}
.status-lines i{
  height:9px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  animation:cashLineLoad 2.4s ease-in-out infinite;
  transform-origin:left center;
}
.status-lines i:nth-child(2){width:78%;animation-delay:.2s}
.status-lines i:nth-child(3){width:58%;animation-delay:.4s}
.status-success{
  width:100%;
  border-radius:15px;
  padding:12px;
  color:#052016;
  background:linear-gradient(135deg,var(--green-2),var(--green));
  font-size:13px;
  font-weight:900;
}
.cash-floating,
.cash-price-card{
  position:absolute;
  z-index:4;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 90px rgba(0,0,0,.28);
  backdrop-filter:blur(18px);
}
.cash-floating{
  width:170px;
  border-radius:22px;
  padding:16px;
  color:white;
  background:rgba(7,20,15,.9);
  border-color:rgba(34,212,135,.18);
}
.cash-floating span,
.cash-price-card span,
.cash-price-card small{
  display:block;
  color:rgba(255,255,255,.66);
  font-size:12px;
  font-weight:900;
  line-height:1.25;
}
.cash-floating strong{
  display:block;
  margin-top:8px;
  color:#fff;
  font-size:15px;
  line-height:1.25;
  letter-spacing:-.025em;
}
.cash-floating-one{
  right:0;
  top:24px;
  animation:cashFloatOne 5.6s ease-in-out infinite .2s;
}
.cash-floating-two{
  left:42px;
  bottom:74px;
  animation:cashFloatTwo 5.8s ease-in-out infinite .5s;
}
.cash-price-card{
  right:54px;
  bottom:10px;
  width:245px;
  border-radius:26px;
  padding:18px;
  color:white;
  background:linear-gradient(135deg,var(--green-dark),var(--navy-3));
  animation:priceGlow 3.2s ease-in-out infinite;
}
.cash-price-card strong{
  display:block;
  margin:7px 0 3px;
  color:var(--green-2);
  font-size:32px;
  line-height:1;
  letter-spacing:-.07em;
}
@keyframes cashBrowserFloat{
  0%,100%{transform:translateY(0) rotate(0)}
  50%{transform:translateY(-12px) rotate(-1deg)}
}
@keyframes cashFloatOne{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(10px)}
}
@keyframes cashFloatTwo{
  0%,100%{transform:translateY(0) rotate(-2deg)}
  50%{transform:translateY(-10px) rotate(0)}
}
@keyframes cashTotalGlow{
  0%,100%{box-shadow:0 12px 30px rgba(24,196,125,.16)}
  50%{box-shadow:0 18px 44px rgba(24,196,125,.34)}
}
@keyframes cashQrPulse{
  0%,100%{transform:scale(1);filter:saturate(1)}
  50%{transform:scale(1.04);filter:saturate(1.28)}
}
@keyframes cashLineLoad{
  0%,100%{transform:scaleX(.64);opacity:.58}
  50%{transform:scaleX(1);opacity:1}
}
@media (max-width:1050px){
  .online-cash-grid{
    grid-template-columns:1fr;
    gap:38px;
  }
  .online-cash-visual{
    max-width:680px;
    margin:0 auto;
    width:100%;
    min-height:620px;
  }
}
@media (max-width:720px){
  .online-cash-hero{
    padding:52px 0 58px;
    min-height:auto;
  }
  .online-cash-copy h1{
    font-size:clamp(36px,11vw,54px);
  }
  .online-cash-actions{
    flex-direction:column;
  }
  .online-cash-benefits{
    grid-template-columns:1fr;
  }
  .online-cash-visual{
    min-height:auto;
    display:grid;
    gap:14px;
    max-width:none;
  }
  .cash-glow{
    display:none;
  }
  .cash-browser-card,
  .cash-floating,
  .cash-price-card{
    position:relative;
    inset:auto;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    width:100%;
    transform:none;
    animation:cashMobileFloat 5s ease-in-out infinite;
  }
  .cash-floating-one{animation-delay:.2s}
  .cash-floating-two{animation-delay:.4s}
  .cash-price-card{animation-delay:.6s}
  .cash-screen-grid{
    grid-template-columns:1fr;
  }
  .cash-total-row{
    align-items:flex-start;
    flex-direction:column;
  }
}
@keyframes cashMobileFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}
/* ONLINE CASH HERO — overflow fix */

.online-cash-hero{
  overflow:hidden;
}

.online-cash-visual{
  width:100%;
  max-width:620px;
  margin-left:auto;
  margin-right:0;
  overflow:hidden;
}

.online-cash-stage{
  width:100%;
  max-width:100%;
  overflow:hidden;
}

.online-cash-browser,
.online-cash-receipt,
.online-cash-status,
.online-cash-price{
  max-width:100%;
}

@media (max-width:1050px){
  .online-cash-grid{
    grid-template-columns:1fr;
  }

  .online-cash-visual{
    max-width:680px;
    margin:34px auto 0;
  }
}

@media (max-width:760px){
  .online-cash-visual{
    overflow:visible;
  }

  .online-cash-stage{
    min-height:auto;
    display:grid;
    gap:14px;
    overflow:visible;
  }

  .online-cash-browser,
  .online-cash-receipt,
  .online-cash-status,
  .online-cash-price{
    position:relative;
    inset:auto;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    width:100%;
    transform:none;
  }
}
/* === VPFR / LPFR HERO — FINAL VERSION === */
/* Zalepi ovaj blok na sam kraj glavnog styles.css fajla */

.vpfr-hero{
  min-height:720px;
  padding:82px 0 76px;
  overflow:hidden;
  background:
    radial-gradient(circle at 14% 22%,rgba(34,212,135,.23),transparent 31%),
    radial-gradient(circle at 84% 20%,rgba(255,255,255,.08),transparent 27%),
    radial-gradient(circle at 72% 82%,rgba(24,196,125,.16),transparent 30%),
    linear-gradient(135deg,#061711 0%,#09251a 48%,#0d3324 100%);
}

.vpfr-hero::before{
  content:"VPFR LPFR";
  right:-110px;
  top:72px;
  font-size:clamp(90px,14vw,210px);
  letter-spacing:-.1em;
}

.vpfr-hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:48px;
  align-items:center;
}

.vpfr-hero-copy h1{
  font-size:clamp(40px,5vw,74px);
  line-height:1;
  letter-spacing:-.076em;
}

.vpfr-hero-copy .accent-text{
  display:block;
}

.vpfr-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:28px 0 24px;
}

.vpfr-hero-checks{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  max-width:640px;
  margin:0;
}

.vpfr-hero-checks span{
  position:relative;
  color:#dceee6;
  background:rgba(255,255,255,.075);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:13px 15px 13px 38px;
  font-weight:850;
  line-height:1.35;
  backdrop-filter:blur(10px);
}

.vpfr-hero-checks span::before{
  content:"✓";
  position:absolute;
  left:15px;
  top:13px;
  color:var(--green-2);
  font-weight:900;
}

.vpfr-hero-visual{
  position:relative;
  width:100%;
  max-width:650px;
  min-height:600px;
  margin-left:auto;
  overflow:visible;
}

.vpfr-stage-bg{
  position:absolute;
  inset:42px 28px 42px 38px;
  border-radius:42px;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px),
    radial-gradient(circle at 45% 28%,rgba(34,212,135,.18),transparent 32%),
    rgba(255,255,255,.045);
  background-size:42px 42px,42px 42px,auto,auto;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow-dark);
  backdrop-filter:blur(14px);
}

.vpfr-center-card,
.vpfr-mode-card,
.vpfr-receipt-card,
.vpfr-price-badge{
  position:absolute;
  z-index:3;
  box-shadow:0 28px 90px rgba(0,0,0,.28);
  backdrop-filter:blur(18px);
}

.vpfr-center-card{
  left:50%;
  top:50%;
  width:330px;
  transform:translate(-50%,-50%);
  border-radius:32px;
  padding:18px;
  color:white;
  background:linear-gradient(180deg,#0f2a20,#071913);
  border:1px solid rgba(34,212,135,.24);
  animation:vpfrCenterGlow 3.8s ease-in-out infinite;
}

.vpfr-center-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.vpfr-center-top strong{
  font-size:20px;
  letter-spacing:-.05em;
}

.vpfr-center-top span{
  color:var(--green-2);
  border:1px solid rgba(34,212,135,.26);
  background:rgba(34,212,135,.1);
  border-radius:999px;
  padding:7px 10px;
  font-size:11px;
  font-weight:900;
  white-space:nowrap;
}

.vpfr-screen{
  background:#05120d;
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:18px;
}

.vpfr-line{
  display:block;
  height:11px;
  width:72%;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  margin-bottom:12px;
  animation:vpfrLineLoad 2.4s ease-in-out infinite;
  transform-origin:left center;
}

.vpfr-line.wide{width:94%}
.vpfr-line.short{width:48%}

.vpfr-total{
  margin-top:18px;
  padding:16px;
  border-radius:18px;
  color:#052016;
  background:linear-gradient(135deg,var(--green-2),var(--green));
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  font-weight:900;
  animation:vpfrTotalGlow 3s ease-in-out infinite;
}

.vpfr-total span{font-size:12px}

.vpfr-total strong{
  font-size:22px;
  line-height:1;
  letter-spacing:-.055em;
  white-space:nowrap;
}

.vpfr-flow-labels{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-top:14px;
  color:rgba(255,255,255,.72);
  font-size:12px;
  font-weight:900;
}

.vpfr-flow-labels i{
  flex:1;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(34,212,135,.15),rgba(34,212,135,.85));
  position:relative;
}

.vpfr-flow-labels i::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--green-2);
  transform:translateY(-50%);
  box-shadow:0 0 18px rgba(34,212,135,.8);
}

.vpfr-mode-card{
  width:185px;
  min-height:150px;
  border-radius:26px;
  padding:18px;
  color:white;
  background:rgba(7,20,15,.9);
  border:1px solid rgba(34,212,135,.18);
}

.vpfr-mode-card span{
  display:block;
  color:rgba(255,255,255,.66);
  font-size:12px;
  font-weight:900;
  line-height:1.25;
  text-transform:uppercase;
  letter-spacing:.055em;
}

.vpfr-mode-card strong{
  display:block;
  margin:8px 0;
  color:var(--green-2);
  font-size:34px;
  line-height:1;
  letter-spacing:-.07em;
}

.vpfr-mode-card p{
  margin:0;
  color:rgba(255,255,255,.74);
  font-size:13px;
  line-height:1.45;
  font-weight:750;
}

.vpfr-mode-online{
  left:0;
  top:56px;
  animation:vpfrFloatOne 5.8s ease-in-out infinite .1s;
}

.vpfr-mode-local{
  right:0;
  top:72px;
  animation:vpfrFloatTwo 6.1s ease-in-out infinite .35s;
}

.vpfr-receipt-card{
  left:38px;
  bottom:72px;
  width:168px;
  border-radius:28px;
  padding:18px;
  color:var(--ink);
  background:white;
  transform:rotate(-5deg);
  animation:vpfrReceiptFloat 5.8s ease-in-out infinite;
}

.vpfr-receipt-card span{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-weight:900;
  line-height:1.35;
}

.vpfr-receipt-card strong{
  display:block;
  margin-top:6px;
  color:var(--green-dark);
  font-size:14px;
  letter-spacing:-.02em;
  line-height:1.25;
}

.vpfr-qr{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:4px;
  width:70px;
  height:70px;
  margin-top:14px;
  padding:6px;
  border-radius:13px;
  background:#061711;
}

.vpfr-qr i{
  border-radius:3px;
  background:white;
  opacity:.86;
}

.vpfr-qr i:nth-child(2),
.vpfr-qr i:nth-child(4),
.vpfr-qr i:nth-child(8){
  opacity:.28;
}

.vpfr-price-badge{
  right:54px;
  bottom:16px;
  width:245px;
  border-radius:26px;
  padding:18px;
  color:white;
  background:linear-gradient(135deg,var(--green-dark),var(--navy-3));
  animation:priceGlow 3.2s ease-in-out infinite;
}

.vpfr-price-badge span,
.vpfr-price-badge small{
  display:block;
  color:rgba(255,255,255,.72);
  font-weight:900;
  font-size:12px;
}

.vpfr-price-badge strong{
  display:block;
  margin:7px 0 3px;
  color:var(--green-2);
  font-size:32px;
  line-height:1;
  letter-spacing:-.07em;
}

@keyframes vpfrCenterGlow{
  0%,100%{box-shadow:0 30px 90px rgba(0,0,0,.38)}
  50%{box-shadow:0 34px 110px rgba(24,196,125,.28)}
}

@keyframes vpfrLineLoad{
  0%,100%{transform:scaleX(.64);opacity:.58}
  50%{transform:scaleX(1);opacity:1}
}

@keyframes vpfrTotalGlow{
  0%,100%{box-shadow:0 12px 30px rgba(24,196,125,.16)}
  50%{box-shadow:0 18px 44px rgba(24,196,125,.34)}
}

@keyframes vpfrFloatOne{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

@keyframes vpfrFloatTwo{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(10px)}
}

@keyframes vpfrReceiptFloat{
  0%,100%{transform:rotate(-5deg) translateY(0)}
  50%{transform:rotate(-2deg) translateY(-12px)}
}

@media (max-width:1180px){
  .vpfr-hero-grid{
    grid-template-columns:1fr .98fr;
    gap:30px;
  }

  .vpfr-hero-visual{
    max-width:610px;
    transform:scale(.94);
    transform-origin:center right;
  }
}

@media (max-width:1050px){
  .vpfr-hero-grid{
    grid-template-columns:1fr;
    gap:42px;
  }

  .vpfr-hero-visual{
    max-width:660px;
    min-height:620px;
    margin:0 auto;
    transform:none;
  }
}

@media (max-width:720px){
  .vpfr-hero{
    padding:52px 0 58px;
    min-height:auto;
  }

  .vpfr-hero-copy h1{
    font-size:clamp(36px,11vw,54px);
  }

  .vpfr-hero-actions{
    flex-direction:column;
  }

  .vpfr-hero-checks{
    grid-template-columns:1fr;
  }

  .vpfr-hero-visual{
    min-height:auto;
    display:grid;
    gap:14px;
    max-width:100%;
    overflow:visible;
  }

  .vpfr-stage-bg{
    display:none;
  }

  .vpfr-center-card,
  .vpfr-mode-card,
  .vpfr-receipt-card,
  .vpfr-price-badge{
    position:relative;
    inset:auto;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    width:100%;
    transform:none;
    animation:vpfrMobileFloat 5s ease-in-out infinite;
  }

  .vpfr-mode-online{animation-delay:.2s}
  .vpfr-mode-local{animation-delay:.4s}
  .vpfr-receipt-card{animation-delay:.6s}
  .vpfr-price-badge{animation-delay:.8s}

  .vpfr-total{
    align-items:flex-start;
    flex-direction:column;
  }
}

@keyframes vpfrMobileFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}
/* === WEB ESIR HERO — dodatak za web-esir.html === */

.web-esir-hero{
  min-height:720px;
  padding:82px 0 76px;
  overflow:hidden;
  background:
    radial-gradient(circle at 16% 22%,rgba(34,212,135,.23),transparent 31%),
    radial-gradient(circle at 84% 22%,rgba(255,255,255,.08),transparent 27%),
    radial-gradient(circle at 72% 82%,rgba(24,196,125,.16),transparent 30%),
    linear-gradient(135deg,#061711 0%,#09251a 48%,#0d3324 100%);
}

.web-esir-hero::before{
  content:"WEB ESIR";
  right:-105px;
  top:76px;
  font-size:clamp(95px,15vw,230px);
  letter-spacing:-.11em;
}

.web-esir-hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:50px;
  align-items:center;
}

.web-esir-copy h1{
  font-size:clamp(40px,5vw,74px);
  line-height:1;
  letter-spacing:-.076em;
}

.web-esir-copy .accent-text{
  display:block;
}

.web-esir-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:28px 0 24px;
}

.web-esir-checks{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  max-width:640px;
}

.web-esir-checks span{
  position:relative;
  color:#dceee6;
  background:rgba(255,255,255,.075);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:13px 15px 13px 38px;
  font-weight:850;
  line-height:1.35;
  backdrop-filter:blur(10px);
}

.web-esir-checks span::before{
  content:"✓";
  position:absolute;
  left:15px;
  top:13px;
  color:var(--green-2);
  font-weight:900;
}

.web-esir-visual{
  position:relative;
  width:100%;
  max-width:650px;
  min-height:600px;
  margin-left:auto;
  overflow:visible;
}

.web-esir-stage-bg{
  position:absolute;
  inset:42px 28px 42px 38px;
  border-radius:42px;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px),
    radial-gradient(circle at 45% 28%,rgba(34,212,135,.18),transparent 32%),
    rgba(255,255,255,.045);
  background-size:42px 42px,42px 42px,auto,auto;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow-dark);
  backdrop-filter:blur(14px);
}

.web-browser-card,
.web-flow-card,
.web-receipt-card,
.web-price-card{
  position:absolute;
  z-index:3;
  box-shadow:0 28px 90px rgba(0,0,0,.28);
  backdrop-filter:blur(18px);
}

.web-browser-card{
  left:0;
  top:52px;
  width:520px;
  border-radius:34px;
  padding:18px;
  color:var(--ink);
  background:rgba(255,255,255,.94);
  border:1px solid rgba(255,255,255,.34);
  box-shadow:0 34px 100px rgba(0,0,0,.34);
  animation:webBrowserFloat 6.2s ease-in-out infinite;
}

.web-browser-top{
  display:flex;
  align-items:center;
  gap:14px;
  padding:4px 2px 16px;
}

.web-browser-dots{
  display:flex;
  gap:6px;
}

.web-browser-dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#c7d7ce;
}

.web-browser-top strong{
  flex:1;
  font-size:16px;
  letter-spacing:-.03em;
}

.web-browser-top em{
  font-style:normal;
  color:var(--green-dark);
  background:#eaf9f1;
  border:1px solid rgba(24,196,125,.18);
  border-radius:999px;
  padding:7px 10px;
  font-size:11px;
  font-weight:900;
}

.web-app-layout{
  display:grid;
  grid-template-columns:118px 1fr;
  gap:14px;
}

.web-app-sidebar{
  display:grid;
  gap:8px;
  align-content:start;
  padding:14px;
  border-radius:22px;
  background:#f3fbf6;
  border:1px solid #dcebe3;
}

.web-app-sidebar span{
  padding:10px;
  border-radius:12px;
  color:#667085;
  font-size:12px;
  font-weight:900;
}

.web-app-sidebar span.active{
  color:white;
  background:var(--green-dark);
}

.web-app-screen{
  min-height:270px;
  border-radius:24px;
  padding:18px;
  background:#f6fbf8;
  border:1px solid #dcebe3;
}

.web-panel-label{
  color:var(--green-dark);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:14px;
}

.web-form-line{
  height:12px;
  width:72%;
  border-radius:999px;
  background:#dbe7df;
  margin-bottom:12px;
  animation:webLineLoad 2.4s ease-in-out infinite;
  transform-origin:left center;
}

.web-form-line.wide{width:94%}
.web-form-line.short{width:48%}

.web-doc-type-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  margin:20px 0 16px;
}

.web-doc-type-row span{
  display:grid;
  place-items:center;
  min-height:38px;
  border-radius:14px;
  color:#17543a;
  background:#eaf9f1;
  font-size:12px;
  font-weight:900;
}

.web-total-box{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  padding:16px;
  border-radius:18px;
  color:#052016;
  background:linear-gradient(135deg,var(--green-2),var(--green));
  font-weight:900;
  animation:webTotalGlow 3s ease-in-out infinite;
}

.web-total-box span{
  font-size:12px;
}

.web-total-box strong{
  font-size:24px;
  line-height:1;
  letter-spacing:-.055em;
  white-space:nowrap;
}

.web-flow-card{
  width:168px;
  border-radius:22px;
  padding:16px;
  color:white;
  background:rgba(7,20,15,.9);
  border:1px solid rgba(34,212,135,.18);
}

.web-flow-card span{
  display:block;
  color:rgba(255,255,255,.66);
  font-size:11px;
  font-weight:900;
  line-height:1.25;
  text-transform:uppercase;
  letter-spacing:.055em;
}

.web-flow-card strong{
  display:block;
  margin-top:8px;
  color:#fff;
  font-size:15px;
  line-height:1.28;
  letter-spacing:-.025em;
}

.web-flow-one{
  right:0;
  top:30px;
  animation:webFloatOne 5.8s ease-in-out infinite .1s;
}

.web-flow-two{
  right:18px;
  top:228px;
  animation:webFloatTwo 6.1s ease-in-out infinite .35s;
}

.web-flow-three{
  left:42px;
  bottom:86px;
  animation:webFloatOne 6.3s ease-in-out infinite .55s;
}

.web-receipt-card{
  right:62px;
  bottom:102px;
  width:150px;
  border-radius:28px;
  padding:18px;
  color:var(--ink);
  background:white;
  transform:rotate(4deg);
  animation:webReceiptFloat 5.8s ease-in-out infinite;
}

.web-receipt-card span{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-weight:900;
  line-height:1.35;
}

.web-receipt-card strong{
  display:block;
  margin-top:6px;
  color:var(--green-dark);
  font-size:20px;
  letter-spacing:-.055em;
  line-height:1;
}

.web-qr{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:4px;
  width:66px;
  height:66px;
  margin-top:14px;
  padding:6px;
  border-radius:13px;
  background:#061711;
}

.web-qr i{
  border-radius:3px;
  background:white;
  opacity:.86;
}

.web-qr i:nth-child(2),
.web-qr i:nth-child(4),
.web-qr i:nth-child(8){
  opacity:.28;
}

.web-price-card{
  right:40px;
  bottom:0;
  width:245px;
  border-radius:26px;
  padding:18px;
  color:white;
  background:linear-gradient(135deg,var(--green-dark),var(--navy-3));
  animation:priceGlow 3.2s ease-in-out infinite;
}

.web-price-card span,
.web-price-card small{
  display:block;
  color:rgba(255,255,255,.72);
  font-weight:900;
  font-size:12px;
}

.web-price-card strong{
  display:block;
  margin:7px 0 3px;
  color:var(--green-2);
  font-size:32px;
  line-height:1;
  letter-spacing:-.07em;
}

@keyframes webBrowserFloat{
  0%,100%{transform:translateY(0) rotate(0)}
  50%{transform:translateY(-12px) rotate(-1deg)}
}

@keyframes webLineLoad{
  0%,100%{transform:scaleX(.64);opacity:.58}
  50%{transform:scaleX(1);opacity:1}
}

@keyframes webTotalGlow{
  0%,100%{box-shadow:0 12px 30px rgba(24,196,125,.16)}
  50%{box-shadow:0 18px 44px rgba(24,196,125,.34)}
}

@keyframes webFloatOne{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

@keyframes webFloatTwo{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(10px)}
}

@keyframes webReceiptFloat{
  0%,100%{transform:rotate(4deg) translateY(0)}
  50%{transform:rotate(1deg) translateY(-12px)}
}

@media (max-width:1180px){
  .web-esir-hero-grid{
    grid-template-columns:1fr .98fr;
    gap:30px;
  }

  .web-esir-visual{
    max-width:610px;
    transform:scale(.94);
    transform-origin:center right;
  }
}

@media (max-width:1050px){
  .web-esir-hero-grid{
    grid-template-columns:1fr;
    gap:42px;
  }

  .web-esir-visual{
    max-width:660px;
    min-height:620px;
    margin:0 auto;
    transform:none;
  }
}

@media (max-width:720px){
  .web-esir-hero{
    padding:52px 0 58px;
    min-height:auto;
  }

  .web-esir-copy h1{
    font-size:clamp(36px,11vw,54px);
  }

  .web-esir-actions{
    flex-direction:column;
  }

  .web-esir-checks{
    grid-template-columns:1fr;
  }

  .web-esir-visual{
    min-height:auto;
    display:grid;
    gap:14px;
    max-width:100%;
    overflow:visible;
  }

  .web-esir-stage-bg{
    display:none;
  }

  .web-browser-card,
  .web-flow-card,
  .web-receipt-card,
  .web-price-card{
    position:relative;
    inset:auto;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    width:100%;
    transform:none;
    animation:webMobileFloat 5s ease-in-out infinite;
  }

  .web-flow-one{animation-delay:.2s}
  .web-flow-two{animation-delay:.4s}
  .web-flow-three{animation-delay:.6s}
  .web-receipt-card{animation-delay:.8s}
  .web-price-card{animation-delay:1s}

  .web-app-layout{
    grid-template-columns:1fr;
  }

  .web-app-sidebar{
    grid-template-columns:repeat(2,1fr);
  }

  .web-doc-type-row{
    grid-template-columns:1fr;
  }

  .web-total-box{
    align-items:flex-start;
    flex-direction:column;
  }
}

@keyframes webMobileFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}
