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

/* Skip-to-content link (a11y) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 100000;
  padding: 12px 24px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus {
  top: 0;
}

:root {
  --green: #05AA3D;
  --green-dark: #048a32;
  --green-pale: #e8f8ed;
  --orange: #FF8A00;
  --ink: #1a1a1a;
  --ink-mid: #3d3d3d;
  --muted: #6e7b6f;
  --bg: #fff;
  --bg-warm: #faf9f6;
  --bg-section: #f4f9f5;
  --border: #e2ede5;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden
}

/* REVEAL */
.reveal, .reveal-l, .reveal-r {
  opacity: 1;
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1)
}

.reveal {
  transform: none
}

.reveal-l {
  transform: none
}

.reveal-r {
  transform: none
}

.reveal.on, .reveal-l.on, .reveal-r.on {
  opacity: 1;
  transform: none
}

.d1 {
  transition-delay: .08s
}

.d2 {
  transition-delay: .16s
}

.d3 {
  transition-delay: .24s
}

.d4 {
  transition-delay: .32s
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow .3s
}

nav.scrolled {
  box-shadow: 0 4px 28px rgba(0, 0, 0, .07)
}

/* Animated logo */
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-logo img {
  height: 38px;
  width: auto;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.nav-logo:hover img {
  transform: scale(1.1) rotate(-5deg);
}

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

.nav-links a {
  color: var(--ink-mid);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all .18s;
  position: relative
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s
}

.nav-links a:not(.nav-cta):hover {
  color: var(--green);
  background: var(--green-pale)
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1)
}

.nav-cta {
  background: var(--green-pale) !important;
  color: var(--green-dark) !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  padding: 10px 22px !important;
  border: 1.5px solid rgba(5, 170, 61, .25) !important;
  transition: all .2s !important
}

.nav-cta:hover {
  background: var(--green) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
  border-color: var(--green) !important
}

.nav-vp {
  background: var(--orange) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  padding: 10px 22px !important;
  box-shadow: 0 4px 16px rgba(255, 138, 0, .3);
  transition: all .2s !important
}

.nav-vp:hover {
  background: #e07a00 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 7px 22px rgba(255, 138, 0, .42) !important
}

/* LANGUAGE PICKER */
.lang-picker {
  position: relative;
  display: flex;
  align-items: center
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  transition: all .18s;
  user-select: none
}

.lang-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale)
}

.lang-btn .lang-flag {
  font-size: 16px
}

.lang-btn .lang-arrow {
  font-size: 10px;
  opacity: .5;
  transition: transform .2s
}

.lang-picker.open .lang-arrow {
  transform: rotate(180deg)
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
  min-width: 160px;
  padding: 6px;
  z-index: 200;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}

.lang-picker.open .lang-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-mid);
  cursor: pointer;
  transition: all .15s;
  text-decoration: none
}

.lang-option:hover {
  background: var(--green-pale);
  color: var(--green)
}

.lang-option.active {
  color: var(--green);
  font-weight: 700;
  background: var(--green-pale)
}

.lang-option .lo-flag {
  font-size: 18px
}

.lang-option .lo-name {
  flex: 1
}

.lang-option .lo-check {
  color: var(--green);
  font-size: 12px;
  opacity: 0
}

.lang-option.active .lo-check {
  opacity: 1
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.35) 40%,
    rgba(0,0,0,.50) 100%
  );
  z-index: 1
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: 140px 48px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  animation: fadeUp .7s ease both
}

.trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg);
  border: 1.5px solid #dde;
  color: var(--ink-mid);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 8px;
  letter-spacing: .04em;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}

.trust-tag .ti {
  font-size: 15px
}

.trust-sep {
  width: 1px;
  height: 18px;
  background: var(--border)
}

.badge-dot {
  display: none
}

@keyframes pulse {
  0%, 100% {
    opacity: 1
  }
  50% {
    opacity: .5
  }
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1.05;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  animation: fadeUp .7s .1s ease both;
  text-shadow: 0 2px 20px rgba(0,0,0,.3)
}

.line-orange {
  color: var(--orange);
  font-style: italic;
  display: block
}

.line-green {
  color: var(--green);
  display: block
}

.line-green::after {
  content: '|';
  color: var(--green);
  font-style: normal;
  font-size: .8em;
  margin-left: 2px;
  animation: blink 1.1s step-end infinite
}

@keyframes blink {
  0%, 100% {
    opacity: 1
  }
  50% {
    opacity: 0
  }
}

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 430px;
  margin-bottom: 36px;
  animation: fadeUp .7s .18s ease both
}

.hero-sub strong {
  color: var(--ink);
  font-weight: 600
}

.hero-stats {
  list-style: none;
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 0 0 36px;
  animation: fadeUp .7s .18s ease both
}

.hero-stat {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.3;
  text-align: center
}

.hero-stat strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px
}

@media (max-width:600px) {
  .hero-stats { flex-direction: column; gap: 8px }
  .hero-stat { display: flex; align-items: center; gap: 8px; text-align: left }
  .hero-stat strong { display: inline; font-size: 17px; margin-bottom: 0 }
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp .7s .26s ease both
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: all .22s;
  box-shadow: 0 6px 24px rgba(5, 170, 61, .3);
  position: relative;
  overflow: hidden
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .18);
  transform: translateX(-101%);
  transition: transform .35s ease
}

.btn-primary:hover::before {
  transform: translateX(0)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(5, 170, 61, .36)
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: all .22s
}

.btn-secondary:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,.22);
  transform: translateY(-2px)
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px)
  }
  to {
    opacity: 1;
    transform: none
  }
}

/* STATS BAR */
.stats-bar {
  background: var(--green);
  display: flex
}

.stat-item {
  flex: 1;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, .15);
  text-align: center;
  cursor: default;
  position: relative;
  overflow: hidden
}

.stat-item:last-child {
  border-right: none
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .1);
  transform: translateY(100%);
  transition: transform .35s ease
}

.stat-item:hover::before {
  transform: translateY(0)
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  position: relative
}

.stat-num span {
  color: rgba(255, 255, 255, .6);
  font-size: 18px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400
}

.stat-lbl {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
  position: relative
}

/* ══ PRODUCTION LINE ══ */
.prod-line {
  background: #162214;
  overflow: hidden;
  padding: 0;
  position: relative;
  height: 130px
}

.belt {
  position: relative;
  width: 100%;
  height: 130px;
  overflow: hidden
}

.belt-track {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  height: 14px;
  background: repeating-linear-gradient(90deg, #2d4a32 0px, #2d4a32 24px, #1f3625 24px, #1f3625 32px);
  animation: beltMove 1.2s linear infinite;
}

@keyframes beltMove {
  from {
    background-position: 0 0
  }
  to {
    background-position: 32px 0
  }
}

.belt-support {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: #0a1a0d;
  border-top: 2px solid #2a4a2e
}

.belt-wheel {
  position: absolute;
  bottom: 7px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #4a7a52, #1a3a20);
  border: 2px solid #3a6040;
  animation: wheelSpin 1.2s linear infinite
}

@keyframes wheelSpin {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg)
  }
}

.belt-crates {
  position: absolute;
  bottom: 30px;
  left: 0;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  animation: crates 16s linear infinite;
  white-space: nowrap
}

@keyframes crates {
  from {
    transform: translateX(0)
  }
  to {
    transform: translateX(-50%)
  }
}

/* ── RPC PLASTIC CRATE — redesigned to match CASHETICA ── */
.rpc {
  position: relative;
  flex-shrink: 0;
  display: inline-block
}

.rpc-lg {
  width: 88px;
  height: 62px
}

.rpc-sm {
  width: 62px;
  height: 48px
}

/* Body (front face) */
.rpc-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 78%;
  border-radius: 2px 2px 3px 3px;
  overflow: hidden
}

/* Top rim (folding lip) */
.rpc-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24%;
  border-radius: 2px 2px 0 0;
  overflow: hidden
}

/* Green */
.rpc-g .rpc-body {
  background: linear-gradient(175deg, #0cc950 0%, #05AA3D 40%, #038a30 100%);
  box-shadow: inset 2px 0 0 rgba(255, 255, 255, .08), inset -2px 0 0 rgba(0, 0, 0, .12), 0 3px 12px rgba(5, 170, 61, .4)
}

.rpc-g .rpc-top {
  background: linear-gradient(175deg, #10e858 0%, #08c044 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 -1px 0 rgba(0, 0, 0, .15)
}

/* Orange */
.rpc-o .rpc-body {
  background: linear-gradient(175deg, #ffb842 0%, #FF8A00 40%, #d47200 100%);
  box-shadow: inset 2px 0 0 rgba(255, 255, 255, .1), inset -2px 0 0 rgba(0, 0, 0, .15), 0 3px 12px rgba(255, 138, 0, .4)
}

.rpc-o .rpc-top {
  background: linear-gradient(175deg, #ffc64a 0%, #ffaa22 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 -1px 0 rgba(0, 0, 0, .15)
}

/* Ventilation grid pattern on body — small squares */
.rpc-body::before {
  content: '';
  position: absolute;
  top: 28%;
  bottom: 8%;
  left: 10%;
  right: 10%;
  background: repeating-linear-gradient(90deg, transparent 0px, transparent 7px, rgba(0, 0, 0, .32) 7px, rgba(0, 0, 0, .32) 9px) 0 0 / 9px 100%,
  repeating-linear-gradient(0deg, transparent 0px, transparent 5px, rgba(0, 0, 0, .32) 5px, rgba(0, 0, 0, .32) 7px) 0 0 / 100% 7px;
  border-radius: 1px;
}

/* Horizontal stacking ridge */
.rpc-body::after {
  content: '';
  position: absolute;
  top: 18%;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(0, 0, 0, .15);
  border-top: 1px solid rgba(255, 255, 255, .06)
}

/* Top rim — folding edge with notches */
.rpc-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 15%, rgba(0, 0, 0, .12) 15.5%, rgba(0, 0, 0, .12) 16%, transparent 16.5%, transparent 84%, rgba(0, 0, 0, .12) 84%, rgba(0, 0, 0, .12) 84.5%, transparent 85%);
}

/* Top rim bottom edge shadow */
.rpc-top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 0, 0, .18)
}

/* Handle — arch cutout on the side */
.rpc-handle {
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 55%;
  border-radius: 4px 4px 0 0;
  border: 2px solid rgba(255, 255, 255, .28);
  border-bottom: none;
  background: rgba(0, 0, 0, .25)
}

/* Side reinforcement ridges */
.rpc-grip-l, .rpc-grip-r {
  position: absolute;
  width: 4px;
  bottom: 0;
  top: 20%;
  border-radius: 2px;
  background: rgba(0, 0, 0, .2)
}

.rpc-grip-l {
  left: 4px
}

.rpc-grip-r {
  right: 4px
}

/* Stacked/flat variant */
.rpc-flat {
  opacity: .7
}

.rpc-flat .rpc-body {
  height: 100%;
  border-radius: 2px
}

.rpc-flat .rpc-top {
  display: none
}

.rpc-flat .rpc-handle, .rpc-flat .rpc-grip-l, .rpc-flat .rpc-grip-r {
  display: none
}

.rpc-flat .rpc-body::after {
  display: none
}

.rpc-flat .rpc-body::before {
  top: 15%;
  bottom: 15%;
  left: 8%;
  right: 8%
}

.rpc-lg.rpc-flat {
  height: 14px
}

.rpc-sm.rpc-flat {
  height: 10px
}

/* SECTION COMMON */
.sec-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--orange);
  margin-bottom: 12px
}

.sec-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px
}

.sec-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 56px
}

/* FEATURES — 3-col layout: cards | image | cards */
.features-section {
  padding: 96px 72px;
  background: #fff
}

.feat-layout {
  display: grid;
  grid-template-columns:1fr auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1180px;
  margin: 52px auto 0
}

.feat-col {
  display: flex;
  flex-direction: column;
  gap: 24px
}

/* Feature card */
.fc {
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px 24px;
  transition: all .32s cubic-bezier(.22, 1, .36, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.fc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1)
}

.fc:hover {
  background: #fff;
  border-color: rgba(5, 170, 61, .3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(5, 170, 61, .1)
}

.fc:hover::before {
  transform: scaleY(1)
}

.fc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.fc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-pale);
  border: 1.5px solid rgba(5, 170, 61, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
  flex-shrink: 0;
}

.fc:hover .fc-icon {
  transform: scale(1.18) rotate(-6deg)
}

.fc-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.fc-text {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.65
}

.fc-text strong {
  color: var(--ink-mid);
  font-weight: 600
}

/* Right-col cards: icon on right side */
.feat-col.right .fc {
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

/* Center image */
.feat-img-wrap {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Image Slider */
.feat-img-slider {
  width: 300px;
  height: 400px;
  border-radius: 20px;
  background: var(--bg-section);
  border: 2px dashed rgba(5, 170, 61, .25);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all .2s;
}

.feat-img-slider:hover {
  border-color: var(--green);
  background: var(--green-pale)
}

.feat-img-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  padding: 8px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.feat-img-slider img.active {
  opacity: 1;
}

/* PDF Katalog button */
.pdf-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 14px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--ink);
  transition: all .22s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.pdf-btn:hover {
  border-color: var(--green);
  background: var(--green-pale);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(5, 170, 61, .12)
}

.pdf-btn svg:first-child {
  color: var(--green);
  flex-shrink: 0
}

/* tooltip */
.tt-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.tt-q {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  flex-shrink: 0;
  transition: background .2s;
}

.tt-q:hover {
  background: rgba(255, 255, 255, .28)
}

.tt-box {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  width: 240px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .22);
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s, transform .2s;
  transform: translateX(-50%) translateY(6px);
  z-index: 50;
}

.tt-wrap:hover .tt-box, .tt-q:focus + .tt-box {
  opacity: 1;
  transform: translateX(-50%) translateY(0)
}

.tt-box::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #fff
}

.tt-box-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px
}

.tt-box-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55
}

.tt-box-ex {
  margin-top: 8px;
  padding: 8px 10px;
  background: var(--green-pale);
  border-radius: 8px;
  font-size: 11.5px;
  color: var(--green-dark);
  font-weight: 600
}

/* SAVINGS CALCULATOR */
.calc-section {
  background: var(--ink);
  padding: 96px 72px
}

.calc-section .sec-label {
  color: var(--orange)
}

.calc-section .sec-title {
  color: #fff
}

.calc-section .sec-sub {
  color: rgba(255, 255, 255, .5)
}

.calc-inner {
  display: grid;
  grid-template-columns:1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.sl-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px
}

.sl-label span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .65)
}

.sl-label strong {
  font-size: 14px;
  font-weight: 800;
  color: #fff
}

.sl-desc {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 10px;
  line-height: 1.5
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, .14);
  border-radius: 3px;
  outline: none;
  cursor: pointer
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #fff;
  box-shadow: 0 2px 14px rgba(5, 170, 61, .55);
  transition: transform .15s
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.25)
}

.calc-result {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  padding: 32px;
  text-align: center
}

.cr-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 4px
}

.cr-big {
  font-family: 'Fraunces', serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1)
}

.cr-big.pop {
  transform: scale(1.1)
}

.cr-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 20px
}

.cr-breakdown {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.cr-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, .5)
}

.cr-row strong {
  color: #fff
}

.cr-row.hi strong {
  color: var(--green);
  font-size: 14px
}

.calc-note {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(5, 170, 61, .08);
  border: 1px solid rgba(5, 170, 61, .2);
  border-radius: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.55
}

.calc-note strong {
  color: var(--green)
}

/* COMPARISON TABLE */
.compare-section {
  padding: 96px 72px;
  background: #fff
}

.compare-wrap {
  max-width: 1080px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, .05);
  margin-top: 48px
}

.compare-scroll-hint {
  display: none;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px
}

.compare-table th {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--bg-section);
  color: var(--muted);
  text-align: left;
  border-bottom: 1.5px solid var(--border)
}

.compare-table th:first-child {
  font-size: 14px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: .04em;
}

.compare-table th.our {
  background: var(--green);
  color: #fff;
  text-align: center
}

.compare-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  transition: background .15s
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--ink-mid);
}

.compare-table tr:last-child td {
  border-bottom: none
}

.compare-table td.our {
  background: #f0faf3;
  color: var(--ink);
  font-weight: 600;
  text-align: center;
  border-left: 1.5px solid rgba(5, 170, 61, .15);
  border-right: 1.5px solid rgba(5, 170, 61, .15)
}

.compare-table tr:last-child td.our {
  border-bottom: 1.5px solid rgba(5, 170, 61, .15)
}

.compare-table tr:hover td {
  background: #fafafa
}

.compare-table tr:hover td.our {
  background: #e8f7ed
}

.tick {
  color: var(--green);
  font-weight: 700;
  font-size: 16px
}

.cross {
  color: #ccc
}

.green-val {
  color: var(--green);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 17px
}

/* VIDEO STRIP */
.video-strip {
  display: grid;
  grid-template-columns:3fr 2fr;
  min-height: 520px
}

.vs-left {
  position: relative;
  background: #111;
  overflow: hidden
}

.video-placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
  position: relative;
  background: linear-gradient(135deg, #0a1f0e 0%, #1a3a20 50%, #0f2a15 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer
}

.video-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 2px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all .3s;
  backdrop-filter: blur(4px);
  z-index: 2
}

.video-placeholder:hover .video-play {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.1)
}

.video-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase
}

.video-duration {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  font-family: monospace
}

.video-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, .1)
}

.video-bar-fill {
  height: 100%;
  background: var(--green);
  width: 0%;
  transition: width .1s linear
}

.vs-right {
  background: var(--orange);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px;
  position: relative;
  overflow: hidden
}

.vs-right::before, .vs-right::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06)
}

.vs-right::before {
  width: 320px;
  height: 320px;
  top: -100px;
  right: -80px;
  animation: blob 7s ease-in-out infinite alternate
}

.vs-right::after {
  width: 200px;
  height: 200px;
  bottom: -70px;
  left: -50px;
  animation: blob 9s ease-in-out infinite alternate-reverse
}

@keyframes blob {
  from {
    transform: scale(1)
  }
  to {
    transform: scale(1.25) translate(20px, 15px)
  }
}

.vs-right .sec-label {
  color: rgba(255, 255, 255, .7);
  position: relative
}

.vs-right .sec-title {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(28px, 3vw, 42px);
  position: relative
}

.vs-right p {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--orange);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  width: fit-content;
  transition: all .22s;
  position: relative
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .18)
}

/* REFERENCES / TESTIMONIALS HYBRID */
.refs-section {
  padding: 96px 72px;
  background: var(--bg-section);
  display: none /* privremeno sakriveno — otkriti kad partneri daju odobrenje za objavu */
}

.refs-grid {
  display: grid;
  grid-template-columns:repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px
}

.ref-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.ref-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s
}

.ref-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(5, 170, 61, .1);
  border-color: rgba(5, 170, 61, .25)
}

.ref-card:hover::before {
  transform: scaleX(1)
}

.ref-company {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border)
}

.ref-logo {
  width: 80px;
  height: 52px;
  border-radius: 10px;
  background: var(--bg-section);
  border: 1.5px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .05em;
  flex-shrink: 0;
  cursor: pointer;
  transition: all .2s;
  overflow: hidden;
  text-align: center;
  line-height: 1.3;
  padding: 4px;
}

.ref-logo:hover {
  border-color: var(--green);
  background: var(--green-pale)
}

.ref-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px
}

.ref-company-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink)
}

.ref-company-type {
  font-size: 12px;
  color: var(--muted)
}

.ref-quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 60px;
  color: var(--green-pale);
  line-height: .8;
  position: absolute;
  top: 20px;
  right: 22px
}

.ref-text {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--ink-mid);
  font-style: italic;
  margin-bottom: 16px;
  position: relative
}

.ref-person {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink)
}

.ref-role {
  font-size: 12px;
  color: var(--muted)
}

/* USE CASES */
.usecases-section {
  padding: 96px 72px;
  background: var(--ink)
}

.usecases-section .sec-label {
  color: var(--orange)
}

.usecases-section .sec-title {
  color: #fff
}

.usecases-section .sec-sub {
  color: rgba(255, 255, 255, .5)
}

.uc-grid {
  display: grid;
  grid-template-columns:repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px
}

.flip {
  height: 220px;
  perspective: 1000px;
  cursor: pointer
}

.flip-in {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.22, 1, .36, 1)
}

.flip.flipped .flip-in {
  transform: rotateY(180deg)
}

/* Click hint */
.flip-hint {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .05em;
  pointer-events: none;
  transition: opacity .3s
}

.flip.flipped .flip-hint {
  opacity: 0
}

.ff, .fb {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden
}

.ff {
  background: #1e3a24;
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0
}

.fb {
  background: var(--green);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch
}

/* image placeholder inside card */
.uc-img-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  font-weight: 600;
  letter-spacing: .06em;
  text-align: center;
  line-height: 1.7;
  transition: all .2s;
}


.uc-img-ph .ph-icon {
  font-size: 26px;
  margin-bottom: 6px;
  opacity: .4
}

.uc-img-ph input {
  display: none
}

.uc-img-loaded {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .65
}

.uc-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, .72) 100%);
  padding: 10px 16px 14px;
}

.uc-name {
  font-size: clamp(15px, 1.4vw, 22px);
  font-weight: 700;
  color: #fff
}

.fb-text {
  font-size: clamp(13px, 1.2vw, 18px);
  color: rgba(255, 255, 255, .9);
  line-height: 1.6
}

/* FAQ */
.faq-section {
  padding: 96px 72px;
  background: var(--bg-warm)
}

.faq-grid {
  display: grid;
  grid-template-columns:1fr 1fr;
  gap: 16px;
  margin-top: 52px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto
}

.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .2s
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(5, 170, 61, .07)
}

.faq-q {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .2s;
  user-select: none
}

.faq-q:hover {
  background: var(--green-pale)
}

.faq-q .arr {
  font-size: 18px;
  color: var(--green);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
  flex-shrink: 0
}

.faq-item.open .faq-q {
  background: var(--green-pale)
}

.faq-item.open .arr {
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px
}

.faq-item.open .faq-a {
  max-height: 260px;
  padding: 0 24px 20px
}

/* QUOTE FORM */
.quote-section {
  padding: 80px 72px;
  background: var(--bg-section)
}

.quote-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns:1fr 1.15fr;
  gap: 64px;
  align-items: start
}

.quote-perks {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform .2s
}

.perk:hover {
  transform: translateX(7px)
}

.perk-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1)
}

.perk:hover .perk-icon {
  transform: scale(1.18) rotate(-8deg)
}

.perk-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px
}

.perk-sub {
  font-size: 13px;
  color: var(--muted)
}

.quote-form-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 8px 48px rgba(5, 170, 61, .08)
}

.form-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border)
}

.form-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover
}

.form-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink)
}

.form-sub {
  font-size: 13px;
  color: var(--muted)
}

.fsl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 8px;
  display: block
}

.form-row {
  display: grid;
  grid-template-columns:1fr 1fr;
  gap: 10px
}

.ff2 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px
}

.ff2 label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid)
}

.ff2 input, .ff2 select, .ff2 textarea {
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg-warm);
  transition: border-color .2s, box-shadow .2s, transform .15s;
  outline: none;
  -webkit-appearance: none;
  appearance: none
}

.ff2 input:focus, .ff2 select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(5, 170, 61, .1);
  background: #fff;
  transform: translateY(-1px)
}

.ff2 input::placeholder {
  color: #aab8ac
}

.ff2 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e7b6f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer
}

.prod-row {
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px 12px;
  margin-bottom: 10px;
  transition: border-color .2s, box-shadow .2s;
  display: grid;
  grid-template-columns:72px 1fr;
  gap: 0 14px;
  align-items: start
}

.prod-row:focus-within {
  border-color: rgba(5, 170, 61, .35);
  box-shadow: 0 0 0 3px rgba(5, 170, 61, .06)
}

.prod-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: #fff;
  border: 1.5px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
  transition: all .2s;
  grid-row: 1/3;
  position: relative;
  overflow: hidden
}

.prod-img:hover {
  border-color: var(--green);
  background: var(--green-pale);
  transform: scale(1.04)
}

.img-lbl {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-top: 3px
}

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

.prod-info {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap
}

.prod-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink)
}

.prod-dims {
  font-size: 11px;
  color: var(--muted)
}

.color-tabs {
  display: flex;
  gap: 5px;
  flex-wrap: wrap
}

.ctab {
  cursor: pointer
}

.ctab input[type=radio] {
  display: none
}

.cbtn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  transition: all .18s;
  white-space: nowrap
}

.cbtn:hover {
  transform: translateY(-1px)
}

.ctab input:checked + .cbtn {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale);
  box-shadow: 0 0 0 3px rgba(5, 170, 61, .1)
}

.cdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0
}

.pal-row {
  display: flex;
  align-items: center;
  gap: 10px
}

.pal-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto
}

.pal-wrap label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mid);
  white-space: nowrap
}

.pal-input {
  width: 80px;
  padding: 7px 10px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  text-align: center;
  background: #fff;
  outline: none;
  transition: all .2s
}

.pal-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(5, 170, 61, .1);
  transform: scale(1.05)
}

.pal-calc {
  flex: 1;
  background: var(--green-pale);
  border: 1px solid rgba(5, 170, 61, .2);
  border-radius: 9px;
  padding: 7px 12px;
  font-size: 12px;
  color: var(--green-dark);
  font-weight: 600;
  min-height: 34px;
  display: flex;
  align-items: center;
  transition: all .2s
}

.calc-zero {
  color: var(--muted);
  font-weight: 400
}

.truck-note {
  background: #fff8ec;
  border: 1.5px solid rgba(255, 138, 0, .25);
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.5;
  margin-bottom: 12px
}

.truck-note a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none
}

.truck-note a:hover {
  text-decoration: underline
}

.cb-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s;
  margin-bottom: 16px
}

.cb-wrap:hover {
  border-color: rgba(5, 170, 61, .3);
  background: var(--green-pale)
}

.cb-wrap input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer
}

.cb-lbl {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4
}

.cb-lbl span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px
}

.del-fields {
  background: #fff9f0;
  border: 1.5px solid rgba(255, 138, 0, .25);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
  animation: slideIn .3s cubic-bezier(.22, 1, .36, 1)
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px)
  }
  to {
    opacity: 1;
    transform: none
  }
}

.del-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 12px
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  margin-top: 8px;
  box-shadow: 0 6px 24px rgba(255, 138, 0, .3);
  position: relative;
  overflow: hidden
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .18);
  transform: translateX(-101%);
  transition: transform .35s ease
}

.form-submit:hover::before {
  transform: translateX(0)
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(255, 138, 0, .42)
}

.form-submit:active {
  transform: translateY(0)
}

.form-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px
}

/* NAV CARDS */
.nav-cards-section {
  padding: 80px 72px;
  background: var(--bg-section);
}

.nav-cards-grid {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.nav-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  border-radius: 20px;
  background: #fff;
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: all .3s cubic-bezier(.22, 1, .36, 1);
  position: relative;
  overflow: hidden;
}

.nav-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--muted);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s
}

.nav-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .09);
  border-color: rgba(0, 0, 0, .15)
}

.nav-card:hover::before {
  transform: scaleX(1)
}

.nav-card-green::before {
  background: var(--green)
}

.nav-card-green:hover {
  border-color: rgba(5, 170, 61, .3);
  box-shadow: 0 20px 56px rgba(5, 170, 61, .1)
}

.nc-icon {
  font-size: 36px;
  margin-bottom: 16px
}

.nc-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px
}

.nc-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1
}

.nc-arrow {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green)
}

.nav-card-green .nc-arrow {
  color: var(--green)
}

/* FOOTER */
footer {
  background: #0f1f12;
  padding: 64px 72px 0
}

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

.footer-brand {
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px
}

.footer-logo-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 3px 12px rgba(5, 170, 61, .3)
}

.footer-logo-img {
  height: 38px
}

.footer-tagline {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .35);
  line-height: 1.6;
  max-width: 220px;
  margin-bottom: 20px
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 16px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .2s
}

.footer-links a:hover {
  color: var(--green)
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.5
}

.footer-contact-item a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: color .2s
}

.footer-contact-item a:hover {
  color: var(--green)
}

.fci-icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px
}

/* Cert icons row */
.footer-certs-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px
}

.cert-icon-ph {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1.5px dashed rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .3);
  text-align: center;
  line-height: 1.3;
  cursor: pointer;
  transition: all .25s;
  gap: 3px;
}

.cert-icon-ph:hover {
  border-color: var(--green);
  background: rgba(5, 170, 61, .1);
  color: var(--green)
}

.cert-icon-ph .ci-emoji {
  font-size: 22px;
  display: block
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .07);
  margin: 0 -72px
}

.footer-bottom {
  padding: 20px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .22)
}

.footer-bottom a {
  color: rgba(255, 255, 255, .3);
  text-decoration: none;
  transition: color .2s
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, .6)
}

/* EU footer box */
.footer-eu-box {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 16px;
  margin-top: 4px;
  position: relative;
  overflow: hidden
}

.footer-eu-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #003399, #FFCC00)
}

.footer-eu-icon {
  font-size: 22px;
  margin-bottom: 10px
}

.footer-eu-box p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7
}

/* LANGUAGE PICKER */
.lang-picker {
  position: relative;
  display: flex;
  align-items: center
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  transition: all .18s;
  user-select: none
}

.lang-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale)
}

.lang-btn .lang-flag {
  font-size: 16px
}

.lang-btn .lang-arrow {
  font-size: 10px;
  opacity: .5;
  transition: transform .2s
}

.lang-picker.open .lang-arrow {
  transform: rotate(180deg)
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
  min-width: 160px;
  padding: 6px;
  z-index: 200;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}

.lang-picker.open .lang-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-mid);
  cursor: pointer;
  transition: all .15s;
  text-decoration: none
}

.lang-option:hover {
  background: var(--green-pale);
  color: var(--green)
}

.lang-option.active {
  color: var(--green);
  font-weight: 700;
  background: var(--green-pale)
}

.lang-option .lo-flag {
  font-size: 18px
}

.lang-option .lo-name {
  flex: 1
}

.lang-option .lo-check {
  color: var(--green);
  font-size: 12px;
  opacity: 0
}

.lang-option.active .lo-check {
  opacity: 1
}

/* cursor */
#spot {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 170, 61, .04) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(.3)
  }
  50% {
    transform: scale(1.12)
  }
  75% {
    transform: scale(.95)
  }
  100% {
    opacity: 1;
    transform: scale(1)
  }
}

.burger-menu {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  nav {
    padding: 0 20px
  }

  .nav-links-container {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 10px 20px;
  }

  .nav-links-container.open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links li {
    margin-bottom: 10px;
  }

  .burger-menu {
    display: block;
    cursor: pointer;
  }

  .burger-bar {
    width: 25px;
    height: 3px;
    background-color: var(--ink);
    margin: 5px 0;
    transition: 0.4s;
  }

  .burger-menu.open .burger-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .burger-menu.open .burger-bar:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.open .burger-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero {
    min-height: 100vh
  }

  .hero-content {
    padding: 120px 24px 60px;
    max-width: 100%
  }

  .features-section {
    padding: 64px 28px
  }

  .feat-layout {
    grid-template-columns:1fr;
    gap: 20px
  }

  .feat-img-wrap {
    order: -1;
    width: 100%
  }

  .feat-img-ph {
    width: 100%;
    height: 220px
  }

  /* Slider responsive */
  .feat-img-slider {
    width: 100%;
    height: 220px;
  }

  .feat-col.right .fc-icon {
    margin-left: 0
  }

  .calc-section, .compare-section, .refs-section, .usecases-section, .faq-section, .quote-section, .nav-cards-section {
    padding: 64px 28px
  }

  .calc-inner {
    grid-template-columns:1fr
  }

  .video-strip {
    grid-template-columns:1fr
  }

  .vs-left {
    min-height: 320px
  }

  .video-placeholder {
    min-height: 320px
  }

  .refs-grid {
    grid-template-columns:1fr
  }

  .compare-scroll-hint {
    display: block
  }

  .compare-table th:first-child,
  .compare-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #fff
  }

  .compare-table th:first-child {
    background: var(--bg-section);
    z-index: 2
  }

  .compare-table tr:hover td:first-child {
    background: #fafafa
  }

  .uc-grid {
    grid-template-columns:1fr 1fr
  }

  /* Mobile flip cards: disable 3D, use crossfade instead */
  .flip-in {
    -webkit-transform-style: flat;
    transform-style: flat
  }

  .flip.flipped .flip-in {
    transform: none
  }

  .ff, .fb {
    -webkit-backface-visibility: visible;
    backface-visibility: visible
  }

  .ff {
    transition: opacity .3s;
    z-index: 2
  }

  .flip.flipped .ff {
    opacity: 0;
    z-index: 1
  }

  .fb {
    transform: none;
    opacity: 0;
    transition: opacity .3s;
    z-index: 1
  }

  .flip.flipped .fb {
    opacity: 1;
    z-index: 2
  }

  .faq-grid {
    grid-template-columns:1fr
  }

  .quote-inner {
    grid-template-columns:1fr
  }

  .form-row {
    grid-template-columns:1fr
  }

  .nav-cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns:1fr;
    gap: 32px
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center
  }

  footer {
    padding: 48px 28px 28px
  }

  .footer-divider {
    margin: 0 -28px
  }

  #spot {
    display: none
  }
}

@media (min-width: 1400px) {
  .uc-name {
    font-size: 22px;
  }

  .fb-text {
    font-size: 18px;
  }

  .flip {
    height: 260px;
  }
}

@media (min-width: 1800px) {
  .uc-name {
    font-size: 26px;
  }

  .fb-text {
    font-size: 20px;
  }

  .flip {
    height: 300px;
  }
}

.no-interaction {
  pointer-events: none;
  user-select: none;
}
