/* ═══════════════════════════════════════════════════════════
   ES-Event v10 — Premium Dark + Green · Optimized
   ═══════════════════════════════════════════════════════════ */

/* Font import removed — loaded via <link> in HTML for performance */

:root {
  --black: #04060A;
  --dark1: #080D12;
  --dark2: #0C1219;
  --dark3: #111820;
  --green: #05F072;
  --green2: #00C656;
  --green3: #007A36;
  --white: #FFFFFF;
  --offwhite: #E8EEF4;
  --muted: rgba(232, 238, 244, .5);
  --faded: rgba(232, 238, 244, .2);
  --border: rgba(255, 255, 255, .06);
  --g-rgb: 5, 240, 114;
  --head: 'Syne', sans-serif;
  --body: 'Plus Jakarta Sans', sans-serif;
  --e1: cubic-bezier(.16, 1, .3, 1);
  --e2: cubic-bezier(.34, 1.56, .64, 1);
}

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

html {
  overflow-x: hidden;
}

body {
  font-family: var(--body);
  background: var(--black);
  color: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
}

input,
textarea {
  font-family: inherit;
}

::selection {
  background: var(--green);
  color: #000;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

html {
  touch-action: manipulation;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--green);
}

/* CURSOR — disabled, using system cursor */
.cur-dot,
.cur-ring {
  display: none !important;
}

/* ═══════════════ LOADER ═══════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity .8s var(--e1), visibility .8s;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader__logo {
  font-family: var(--head);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -.04em;
  clip-path: inset(0);
}

.loader__logo span {
  color: var(--green);
}

.loader__track {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, .06);
  border-radius: 1px;
  overflow: hidden;
}

.loader__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green2), var(--green));
  border-radius: 1px;
  animation: lbar 1.4s var(--e1) forwards;
}

@keyframes lbar {
  to {
    width: 100%;
  }
}

/* ═══════════════ HEADER ═══════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 20px 0;
  transition: padding .4s, background .4s, border-color .4s;
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(4, 6, 10, .88);
  backdrop-filter: blur(28px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.logo__mark {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: var(--green);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: transform .3s var(--e2), box-shadow .3s;
}

.logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  box-sizing: border-box;
  filter: brightness(0%);
  position: relative;
  z-index: 1;
}

.logo:hover .logo__mark {
  transform: rotate(-5deg) scale(1.08);
  box-shadow: 0 0 24px rgba(var(--g-rgb), .4);
}

.logo__name {
  font-family: var(--head);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.1;
}

.logo__name small {
  font-size: .48rem;
  color: var(--faded);
  display: block;
  font-weight: 400;
  font-family: var(--body);
  letter-spacing: .5px;
}

.logo__text {
  font-family: var(--head);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.1;
}

.logo__text small {
  font-size: .48rem;
  color: var(--faded);
  display: block;
  font-weight: 400;
  font-family: var(--body);
  letter-spacing: .5px;
}

.nav {
  display: flex;
  gap: 2px;
}

.nav__link {
  padding: 8px 17px;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .25s, background .25s;
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.nav__link.active {
  color: var(--green);
}

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

.header__phone {
  font-size: .8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}

.header__phone:hover {
  color: var(--green);
}

.header__phone i {
  color: var(--green);
  font-size: .65rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: all .3s;
}

.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 790;
  background: var(--dark1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform .55s var(--e1);
}

.mobile-menu.open {
  transform: none;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mobile-menu nav a {
  font-family: var(--head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--muted);
  padding: 4px 20px;
  transition: color .3s;
  text-align: center;
}

.mobile-menu nav a:hover {
  color: var(--green);
}

.mobile-menu__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: .9rem;
  color: var(--green);
}

.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: .9rem;
  color: var(--muted);
}

.mobile-menu__contacts a {
  color: var(--green);
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .86rem;
  transition: background .35s var(--e1), transform .35s var(--e1), box-shadow .35s var(--e1), border-color .35s var(--e1), color .35s var(--e1);
  letter-spacing: .01em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--green {
  background: var(--green);
  color: #000;
}

.btn--green:hover {
  background: #0fff7a;
  box-shadow: 0 10px 40px rgba(var(--g-rgb), .4);
  transform: translateY(-2px);
}

.btn--outline {
  border: 1.5px solid rgba(255, 255, 255, .15);
  color: var(--white);
}

.btn--outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn--dark {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border: 1px solid var(--border);
}

.btn--dark:hover {
  background: rgba(255, 255, 255, .14);
}

.btn--lg {
  padding: 18px 46px;
  font-size: .95rem;
}

.btn--sm {
  padding: 10px 22px;
  font-size: .8rem;
}

.btn--block {
  width: 100%;
  justify-content: center;
  border-radius: 14px;
}

.btn i {
  font-size: .75rem;
  transition: transform .3s;
}

.btn:hover i {
  transform: translateX(4px);
}

.page-enter {
  animation: pgIn .5s var(--e1);
}

@keyframes pgIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.page-top {
  padding-top: 100px;
}

/* ═══════════════════════════════════════════════════
   HERO — FULL VIEWPORT (100vh, always visible)
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Always-visible dark gradient — shows even without video */
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(var(--g-rgb), .08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 60%, rgba(0, 50, 30, .3) 0%, transparent 55%),
    linear-gradient(160deg, #060D0F 0%, #04060A 50%, #060C10 100%);
}

/* Animated mesh grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(5, 240, 114, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 240, 114, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 20%, transparent 80%);
}

/* VIDEO BG — overlaid on top of gradient */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
}

/* Gradient overlay */
.hero__grad {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(4, 6, 10, .4) 0%, rgba(4, 6, 10, .05) 35%, rgba(4, 6, 10, .85) 80%, var(--black) 100%),
    linear-gradient(90deg, rgba(4, 6, 10, .8) 0%, rgba(4, 6, 10, .2) 55%, transparent 100%);
}

/* Scanlines */
.hero__scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 0, 0, .06) 3px, rgba(0, 0, 0, .06) 4px);
}

.hero .container {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  height: 100%;
  padding-top: 80px;
}

.hero__l {
  max-width: 540px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 28px;
}

.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--green);
  flex-shrink: 0;
}

h1.hero__h {
  font-family: var(--head);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.05em;
  margin-bottom: 22px;
}

h1.hero__h .g {
  color: var(--green);
  display: block;
}

.hero__p {
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 34px;
}

.hero__price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(var(--g-rgb), .12);
  border-radius: 14px;
  width: fit-content;
}

.hero__price-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  font-weight: 600;
}

/* PRICE NUMBER — Plus Jakarta Sans 800, not Syne (cleaner, more readable) */
.hero__price-num {
  font-family: var(--body);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.02em;
}

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

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero – 3D robot floating on right */
.hero__r {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero__img {
  width: 100%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .6));
  animation: fl 7s ease-in-out infinite;
}

@keyframes fl {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(-18px) rotate(.8deg)
  }
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero__orb-1 {
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(var(--g-rgb), .18) 0%, transparent 65%);
  filter: blur(50px);
  animation: op 5s ease-in-out infinite;
}

.hero__orb-2 {
  width: 200px;
  height: 200px;
  top: 0;
  right: -20px;
  background: radial-gradient(circle, rgba(var(--g-rgb), .1) 0%, transparent 70%);
  filter: blur(40px);
  animation: op 6s ease-in-out infinite reverse;
}

@keyframes op {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .7
  }

  50% {
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 1
  }
}

/* Stats row */
.hero__stats {
  display: flex;
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}

.hero__stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--border);
  padding: 0 20px;
}

.hero__stat:last-child {
  border-right: none;
}

/* Price & stat numbers: Plus Jakarta Sans 800 — clean, no angular Syne */
.hero__stat-n {
  font-family: var(--body);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  letter-spacing: -.03em;
}

.hero__stat-l {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--faded);
  margin-top: 6px;
}

/* ═════════════════════════════════════════════════════
   MARQUEE
   ═════════════════════════════════════════════════════ */
.mq {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark1);
  padding: 12px 0;
}

.mq__inner {
  display: flex;
  width: max-content;
  animation: mqs 40s linear infinite;
}

.mq__track {
  display: flex;
  flex-shrink: 0;
}

.mq__item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-family: var(--head);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--faded);
  white-space: nowrap;
}

.mq__dot {
  color: var(--green);
  font-size: .5rem;
}

@keyframes mqs {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ═════════════════════════════════════════════════════
   PRODUCT SHOWCASE SECTIONS — like CryptoWallet style
   Each product: full-width section, alternating layout,
   massive 3D PNG breaking out, big bg ghost text
   ═════════════════════════════════════════════════════ */
.showcase {
  position: relative;
  padding: clamp(52px, 7vw, 90px) 0;
  overflow: hidden;
}

.showcase:nth-child(even) {
  background: var(--dark1);
}

/* Ghost big text background */
.showcase__ghost {
  position: absolute;
  font-family: var(--head);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 900;
  letter-spacing: -.05em;
  pointer-events: none;
  user-select: none;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .05);
  white-space: nowrap;
  z-index: 0;
  line-height: 1;
  width: 100%;
  text-align: center;
}

.showcase__ghost--top {
  top: -2rem;
}

.showcase__ghost--bottom {
  bottom: -2rem;
}

.showcase__ghost--left {
  left: 0;
}

.showcase__ghost--right {
  right: 0;
}

/* Section inner grid */
.showcase__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase__inner.rev {
  direction: rtl;
}

.showcase__inner.rev>* {
  direction: ltr;
}

/* Text side */
.showcase__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 20px;
}

.showcase__tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--green);
}

.showcase__h {
  font-family: var(--head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}

.showcase__h span {
  color: var(--green);
}

.showcase__desc {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 28px;
}

.showcase__price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(var(--g-rgb), .08);
  border: 1px solid rgba(var(--g-rgb), .15);
  border-radius: 12px;
  padding: 10px 20px;
  margin-bottom: 28px;
}

.showcase__price {
  font-family: var(--body);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.02em;
}

.showcase__unit {
  font-size: .72rem;
  color: var(--muted);
}

.showcase__pnote {
  display: inline-block;
  font-size: .65rem;
  color: var(--green);
  background: rgba(5, 240, 114, .08);
  border: 1px solid rgba(5, 240, 114, .12);
  padding: 3px 12px;
  border-radius: 50px;
  margin-top: 4px;
  margin-bottom: 8px;
}

.showcase__feats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.showcase__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: var(--offwhite);
}

.showcase__feat::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(var(--g-rgb), .1);
  border: 1px solid rgba(var(--g-rgb), .2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2.5 7l3 3 6-6' stroke='%2305F072' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.showcase__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Visual side — the 3D floating PNG */
.showcase__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.showcase__img-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase__img {
  width: 95%;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .5));
  animation: fl 6s ease-in-out infinite;
  transition: filter .4s;
}

.showcase__img:hover {
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .6)) drop-shadow(0 0 40px rgba(var(--g-rgb), .25));
}

/* Orb behind product */
.showcase__orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(circle, rgba(var(--g-rgb), .16) 0%, transparent 65%);
  filter: blur(48px);
  animation: op2 5s ease-in-out infinite;
}

@keyframes op2 {

  0%,
  100% {
    opacity: .6;
    transform: translate(-50%, -50%) scale(1)
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1)
  }
}

/* ═══════════════════════════════
   WHY US — BENTO
   ═══════════════════════════════ */
.why {
  padding: clamp(80px, 10vw, 130px) 0;
}

.why__head {
  text-align: center;
  margin-bottom: 60px;
}

.why__label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.why__label::before,
.why__label::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--green);
}

.why__h {
  font-family: var(--head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}

.why__h span {
  color: var(--green);
}

.why__sub {
  font-size: .9rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.bcard {
  padding: 28px 24px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: border-color .4s var(--e1), transform .4s var(--e1), box-shadow .4s var(--e1);
  position: relative;
  overflow: hidden;
}

.bcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--g-rgb), .05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}

.bcard:hover {
  border-color: rgba(var(--g-rgb), .18);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.bcard:hover::before {
  opacity: 1;
}

.bcard__ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--g-rgb), .08);
  border: 1px solid rgba(var(--g-rgb), .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: .95rem;
  margin-bottom: 18px;
}

.bcard h3 {
  font-family: var(--head);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bcard p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════
   PARTNERS — VISIBLE LOGOS
   ═══════════════════════════════ */
.partners {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--dark1);
}

.partners__head {
  text-align: center;
  margin-bottom: 48px;
}

.logos-g {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.logo-t {
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 12px;
  /* Constant white bg — never changes (prevents flash on mouseout) */
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  /* Only transition border/shadow/transform — NOT background */
  transition: border-color .3s, box-shadow .3s, transform .3s;
  overflow: hidden;
}

.logo-t img {
  max-height: 44px;
  max-width: 88%;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: .85;
  transition: opacity .3s;
  mix-blend-mode: multiply;
}

.logo-t span {
  font-size: .62rem;
  color: rgba(0, 0, 0, .45);
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  display: none;
}

.logo-t img.broken {
  display: none;
}

.logo-t img.broken+span {
  display: block !important;
}

.logo-t:hover {
  /* background NOT changed — stays rgba(255,255,255,.92) */
  border-color: rgba(var(--g-rgb), .45);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .35), 0 0 0 2px rgba(var(--g-rgb), .15);
}

.logo-t:hover img {
  opacity: 1;
}

/* ═══════════════════════════════
   CTA BAND — dark premium card
   ═══════════════════════════════ */
.ctaband {
  padding: clamp(60px, 8vw, 100px) 0;
}

.ctaband__inner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: clamp(40px, 5vw, 62px) clamp(28px, 4vw, 60px);
  background: var(--dark2);
  border: 1px solid rgba(var(--g-rgb), .14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* left accent bar */
.ctaband__inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green) 0%, var(--green2) 100%);
  border-radius: 3px 0 0 3px;
}

/* subtle orb */
.ctaband__inner::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  width: 300px;
  height: 300px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--g-rgb), .07) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.ctaband__text {
  position: relative;
  z-index: 1;
}

.ctaband__h {
  font-family: var(--head);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.03em;
}

.ctaband__s {
  font-size: .84rem;
  color: var(--muted);
  margin-top: 8px;
}

.ctaband .btn--cta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  background: var(--green);
  color: #000;
  border-radius: 50px;
  padding: 15px 36px;
  font-weight: 700;
  font-size: .86rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .35s;
  font-family: var(--body);
  width: fit-content;
}

.ctaband .btn--cta i {
  font-size: .72rem;
  transition: transform .3s;
}

.ctaband .btn--cta:hover {
  background: #0fff7a;
  box-shadow: 0 10px 36px rgba(var(--g-rgb), .35);
  transform: translateY(-2px);
}

.ctaband .btn--cta:hover i {
  transform: translateX(4px);
}

/* CTA arrows */
.ctaband__arrows {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.ctaband__arrow {
  width: 90px;
  height: auto;
  pointer-events: none;
  margin-top: -45px;
}

.ctaband__arrow--left {
  transform: scaleY(-1);
  animation: arrowBounceL 1.5s ease-in-out infinite;
}

.ctaband__arrow--right {
  transform: scale(-1, -1);
  animation: arrowBounceR 1.5s ease-in-out infinite;
}

@keyframes arrowBounceL {

  0%,
  100% {
    transform: scaleY(-1) translateY(0);
  }

  50% {
    transform: scaleY(-1) translateY(-10px);
  }
}

@keyframes arrowBounceR {

  0%,
  100% {
    transform: scale(-1, -1) translateY(0);
  }

  50% {
    transform: scale(-1, -1) translateY(-10px);
  }
}

/* ═══════════════════════════════
   PRODUCT DETAIL PAGE
   ═══════════════════════════════ */
.pdh {
  padding: 120px 0 60px;
  background: var(--dark1);
  position: relative;
  overflow: hidden;
}

.pdh .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pdh__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.pdh__orb {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--g-rgb), .15) 0%, transparent 70%);
  filter: blur(60px);
}

.pdh__img {
  max-height: 380px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, .5));
  animation: fl 7s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.pdh__bc {
  font-size: .76rem;
  color: var(--faded);
  margin-bottom: 14px;
}

.pdh__bc a {
  color: var(--green);
}

.pdh__name {
  font-family: var(--head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
  margin-bottom: 14px;
}

.pdh__short {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.pdh__price {
  font-family: var(--body);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.03em;
}

.pdh__unit {
  font-size: .88rem;
  color: var(--muted);
  margin-left: 6px;
}

.pdh__note {
  font-size: .78rem;
  color: var(--faded);
  margin: 6px 0 24px;
}

.pdh__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pdb {
  padding: clamp(48px, 6vw, 80px) 0;
}

.pdb .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.pdb h3 {
  font-family: var(--head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.pdb__desc {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 28px;
}

.pdb__video {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.pdb__video iframe,
.pdb__video video {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.pdb__feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.pdb__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(var(--g-rgb), .04);
  border: 1px solid rgba(var(--g-rgb), .08);
  border-radius: 12px;
  font-size: .82rem;
  color: var(--green);
  font-weight: 500;
}

.pdb__feat i {
  font-size: .55rem;
}

.sticky-box {
  position: sticky;
  top: 100px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
}

.sticky-box__p {
  font-family: var(--body);
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.03em;
}

.sticky-box__u {
  font-size: .78rem;
  color: var(--faded);
  margin-bottom: 18px;
  display: block;
}

.sticky-box .btn {
  margin-bottom: 10px;
}

.sticky-box__ul {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-box__li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  color: var(--muted);
}

.sticky-box__li i {
  color: var(--green);
  font-size: .55rem;
}

.specs {
  margin-top: 18px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--dark3);
}

.spec-r {
  display: flex;
  justify-content: space-between;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  font-size: .82rem;
}

.spec-r:last-child {
  border-bottom: none;
}

.spec-r span:first-child {
  color: var(--muted);
}

.spec-r span:last-child {
  font-weight: 600;
}

/* ═══════════════════════════════
   CONTACTS — fullscreen premium split
   ═══════════════════════════════ */
.contacts-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 70px;
  /* header offset */
}

/* LEFT — info panel with green gradient accent */
.contacts-left {
  position: relative;
  overflow: hidden;
  background: var(--dark1);
  padding: 60px clamp(28px, 5vw, 72px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 70px);
}

/* Decorative green orb */
.contacts-left::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--g-rgb), .1) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}

.contacts-left__eyebrow {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.contacts-left__eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--green);
}

.contacts-left__h {
  font-family: var(--head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .95;
  margin-bottom: 18px;
}

.contacts-left__h span {
  color: var(--green);
  display: block;
}

.contacts-left__sub {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 380px;
}

/* Info rows */
.cinfo {
  display: flex;
  flex-direction: column;
}

.cinfo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .25s;
}

.cinfo-row:first-child {
  border-top: 1px solid var(--border);
}

.cinfo-row:hover {
  padding-left: 4px;
}

.cinfo-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 11px;
  flex-shrink: 0;
  background: rgba(var(--g-rgb), .08);
  border: 1px solid rgba(var(--g-rgb), .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: .88rem;
  transition: background .3s, border-color .3s;
}

.cinfo-row:hover .cinfo-icon {
  background: rgba(var(--g-rgb), .14);
  border-color: rgba(var(--g-rgb), .25);
}

.cinfo-text strong {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--faded);
  display: block;
  margin-bottom: 3px;
  font-weight: 700;
}

.cinfo-text a,
.cinfo-text span {
  font-size: .9rem;
  color: var(--offwhite);
  font-weight: 500;
  transition: color .2s;
}

.cinfo-text a:hover {
  color: var(--green);
}

/* Socials row */
.contacts-social {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}

.csoc {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--muted);
  transition: all .3s;
}

.csoc:hover {
  background: rgba(var(--g-rgb), .1);
  border-color: rgba(var(--g-rgb), .25);
  color: var(--green);
}

/* RIGHT — form */
.contacts-right {
  background: var(--black);
  padding: 60px clamp(28px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 70px);
}

.contacts-right h3 {
  font-family: var(--head);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}

.contacts-right p.form-intro {
  font-size: .86rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.field {
  position: relative;
  margin-bottom: 14px;
}

.field__input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  border: 1.5px solid rgba(255, 255, 255, .08);
  color: var(--offwhite);
  font-size: .88rem;
  outline: none;
  transition: all .25s;
}

.field__input:focus {
  border-color: var(--green);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 0 0 3px rgba(var(--g-rgb), .1);
}

.field__label {
  position: absolute;
  top: 15px;
  left: 16px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .3);
  pointer-events: none;
  transition: all .2s;
  padding: 0 4px;
  background: transparent;
}

.field__input:focus~.field__label,
.field__input:not(:placeholder-shown)~.field__label {
  top: -9px;
  font-size: .62rem;
  color: var(--green);
  background: var(--black);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-note {
  font-size: .72rem;
  color: var(--faded);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

.fsuccess {
  display: none;
  text-align: center;
  padding: 32px 20px;
}

.fsuccess.show {
  display: block;
}

.fsuccess i {
  font-size: 3rem;
  color: var(--green);
  display: block;
  margin-bottom: 14px;
}

/* ═══════════════════════════════
   FOOTER — proper 4-col grid
   ═══════════════════════════════ */
.footer {
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
  background: var(--dark1);
}

.footer__g {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 24px 48px;
  margin-bottom: 48px;
  align-items: start;
}

.footer__brand .logo {
  margin-bottom: 14px;
}

.footer__brand p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 230px;
  margin-bottom: 20px;
}

.footer__brand-socials {
  display: flex;
  gap: 8px;
}

.footer__soc {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--muted);
  transition: all .3s;
}

.footer__soc:hover {
  background: rgba(var(--g-rgb), .08);
  border-color: rgba(var(--g-rgb), .2);
  color: var(--green);
}

.footer__col h5 {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer__col li {
  margin-bottom: 10px;
}

.footer__col a {
  font-size: .82rem;
  color: var(--muted);
  transition: color .2s;
  display: block;
  line-height: 1.4;
}

.footer__col a:hover {
  color: var(--green);
}

.footer__col .contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.footer__col .contact-row i {
  color: var(--green);
  font-size: .65rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer__col .contact-row a {
  color: var(--muted);
  display: inline;
}

.footer__col .contact-row a:hover {
  color: var(--green);
}

/* Bottom strip */
.footer__sep {
  height: 1px;
  background: var(--border);
  margin: 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: .72rem;
  color: rgba(255, 255, 255, .25);
}

.footer__bottom a {
  color: rgba(255, 255, 255, .25);
  transition: color .2s;
}

.footer__bottom a:hover {
  color: var(--green);
}

/* ═══════════════════════════════
   TERMS
   ═══════════════════════════════ */
.terms-wrap {
  max-width: 700px;
}

.terms-wrap h2 {
  font-family: var(--head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  margin: 28px 0 12px;
}

.terms-wrap h2:first-child {
  margin-top: 0;
}

.terms-wrap li {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.7;
}

.terms-wrap ul,
.terms-wrap ol {
  padding-left: 18px;
  margin-bottom: 14px;
}

/* ═══════════════════════════════
   MODAL + TOAST
   ═══════════════════════════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(10px);
}

.modal__content {
  position: relative;
  z-index: 1;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  max-width: 540px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
  transform: scale(.96) translateY(14px);
  transition: transform .4s var(--e2);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .6);
}

.modal.show .modal__content {
  transform: none;
}

.toasts {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 13px 18px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .5);
  animation: tst .35s var(--e2);
}

.toast.ok {
  border-left: 3px solid var(--green);
}

.toast.ok i {
  color: var(--green);
}

.toast.err {
  border-left: 3px solid #ef4444;
}

.toast.err i {
  color: #ef4444;
}

.toast.out {
  animation: tsto .25s forwards;
}

@keyframes tst {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
}

@keyframes tsto {
  to {
    opacity: 0;
    transform: translateX(120%);
  }
}

/* ═══════════════════════════════
   REVEAL ANIMATION
   ═══════════════════════════════ */
.rv {
  opacity: 0;
  transform: translateY(30px);
}

.rv.in {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--e1), transform .7s var(--e1);
}

/* ═══════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════ */
.sec-gap {
  padding: clamp(64px, 8vw, 110px) 0;
}

.sec-gap--sm {
  padding: clamp(40px, 6vw, 80px) 0;
}

.sec-gap--alt {
  background: var(--dark1);
}

.s-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.s-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--green);
}

.s-title {
  font-family: var(--head);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.02;
  margin-bottom: 14px;
}

.s-title em {
  font-style: normal;
  color: var(--green);
}

.s-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 460px;
}

.s-head {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.s-head--c {
  text-align: center;
}

.s-head--c .s-desc,
.s-head--c .s-label {
  margin: 0 auto 18px;
  justify-content: center;
}

/* ═══════════════════════════════
   PRODUCT DETAIL HERO — Cinematic
   ═══════════════════════════════ */
.pd-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  background: var(--black);
}

.pd-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pd-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .25;
}

.pd-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 6, 10, .85) 0%, rgba(4, 6, 10, .5) 50%, rgba(4, 6, 10, .3) 100%),
    linear-gradient(180deg, rgba(4, 6, 10, .5) 0%, transparent 30%, rgba(4, 6, 10, .9) 90%, var(--black) 100%);
}

/* Two-column grid */
.pd-hero__content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  min-height: 100vh;
}

/* LEFT — text */
.pd-hero__left {
  max-width: 520px;
}

.pd-hero__bc {
  font-size: .72rem;
  color: rgba(255, 255, 255, .35);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.pd-hero__bc a {
  color: rgba(255, 255, 255, .4);
  transition: color .2s;
}

.pd-hero__bc a:hover {
  color: var(--green);
}

.pd-hero__bc i {
  font-size: .5rem;
  opacity: .4;
}

.pd-hero__bc span {
  color: var(--green);
}

.pd-hero__name {
  font-family: var(--head);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 18px;
}

.pd-hero__short {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.pd-hero__price-row {
  margin-bottom: 6px;
}

.pd-hero__price {
  font-family: var(--head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--green);
}

.pd-hero__unit {
  font-size: .9rem;
  color: var(--faded);
  margin-left: 8px;
}

.pd-hero__note {
  display: inline-block;
  font-size: .7rem;
  color: var(--green);
  background: rgba(5, 240, 114, .08);
  border: 1px solid rgba(5, 240, 114, .15);
  padding: 4px 14px;
  border-radius: 50px;
  margin-top: 2px;
  margin-bottom: 6px;
  letter-spacing: .5px;
}

.pd-hero__tiers {
  margin: 16px 0 6px;
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 340px;
}

.pd-hero__tiers-title {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.pd-hero__tiers-title i {
  font-size: .6rem;
}

.pd-hero__tiers-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pd-hero__tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: background .2s, padding .2s;
}

.pd-hero__tier:last-child {
  border-bottom: none;
}

.pd-hero__tier:hover {
  background: rgba(5, 240, 114, .04);
  border-radius: 8px;
  margin: 0 -8px;
  padding: 9px 8px;
}

.pd-hero__tier-time {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
}

.pd-hero__tier-price {
  font-size: .88rem;
  font-weight: 700;
  color: var(--green);
}

.pd-hero__btns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* RIGHT — product image */
.pd-hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
}

.pd-hero__glow {
  position: absolute;
  width: 90%;
  height: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(var(--g-rgb), .1) 0%, transparent 55%);
  filter: blur(60px);
  pointer-events: none;
}

.pd-hero__img {
  max-height: 85vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .5)) drop-shadow(0 0 40px rgba(var(--g-rgb), .06));
  animation: pd-float 5s ease-in-out infinite;
}

@keyframes pd-float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.01);
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Professional Multi-Breakpoint System
   ═══════════════════════════════════════════════════ */

/* ── Tablet / Small Desktop ≤1100px ─── */
@media (max-width: 1100px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__l {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
  }

  .hero__price-row {
    justify-content: center;
  }

  .hero__btns {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__r {
    max-width: 380px;
    margin: 0 auto;
  }

  .hero__img {
    max-height: 320px;
  }

  .showcase__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr !important;
  }

  .showcase__visual {
    min-height: 260px;
    order: -1;
  }

  .showcase__img {
    max-height: 320px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
  }

  .pdh .container {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .pdh__visual {
    min-height: 280px;
  }

  .pdb .container {
    grid-template-columns: 1fr;
  }

  .sticky-box {
    position: static;
  }

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

  .pd-hero__left {
    max-width: 100%;
    text-align: center;
  }

  .pd-hero__bc {
    justify-content: center;
  }

  .pd-hero__btns {
    justify-content: center;
  }

  .pd-hero__right {
    min-height: 300px;
    order: -1;
  }

  .pd-hero__img {
    max-height: 50vh;
  }

  .showcase__ghost {
    -webkit-text-stroke: 1px rgba(255, 255, 255, .025);
    font-size: clamp(3rem, 8vw, 7rem);
  }

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

  .logos-g {
    grid-template-columns: repeat(4, 1fr);
  }

  .contacts-page {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contacts-left {
    padding: 120px 32px 48px;
  }

  .contacts-right {
    padding: 48px 32px 80px;
  }

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

  .ctaband__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }
}

/* ── Mobile ≤768px ─── */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header__phone span {
    display: none;
  }

  .header__right .btn--sm {
    display: none;
  }

  .header {
    padding: 0 16px;
  }

  .mobile-menu {
    overscroll-behavior: contain;
  }

  .mobile-menu a {
    font-size: 1.8rem;
  }

  .page-top {
    padding-top: 76px;
  }

  .hero {
    padding-top: 90px;
    min-height: 100svh;
  }

  .hero .container {
    padding: 0 20px;
  }

  .hero__eyebrow {
    font-size: .58rem;
  }

  .hero__h {
    font-size: clamp(2.2rem, 8vw, 3.6rem);
    letter-spacing: -.04em;
    text-wrap: balance;
  }

  .hero__p {
    font-size: .88rem;
  }

  .hero__btns {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero__btns .btn--lg {
    padding: 13px 22px;
    font-size: .82rem;
  }

  .hero__r {
    display: none;
  }

  .hero__stat-n {
    font-size: 1.6rem;
  }

  .hero__stat-l {
    font-size: .55rem;
  }

  .showcase {
    padding: clamp(36px, 6vw, 60px) 0;
  }

  .showcase__h {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    text-wrap: balance;
  }

  .showcase__img {
    max-height: 280px;
    width: auto;
    max-width: 85%;
  }

  .ctaband__arrows {
    gap: 8px;
  }

  .ctaband__arrow {
    width: 50px;
  }

  .ctaband .btn--cta {
    width: auto !important;
    padding: 14px 32px !important;
  }

  .showcase__ghost {
    display: none;
  }

  .bento {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bcard {
    padding: 24px;
  }

  .logos-g {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .logo-t {
    height: 70px;
    padding: 10px 8px;
  }

  .logo-t img {
    max-height: 34px;
  }

  .contacts-left {
    padding: 100px 20px 40px;
  }

  .contacts-right {
    padding: 40px 20px 60px;
  }

  .contacts-left__h {
    font-size: 2.2rem;
    text-wrap: balance;
  }

  .pdh {
    padding: 100px 0 48px;
    min-height: auto !important;
  }

  .pdb__feats {
    grid-template-columns: 1fr;
  }

  .pd-hero {
    min-height: auto;
  }

  .pd-hero__content {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .pd-hero__right {
    min-height: 220px;
  }

  .pd-hero__img {
    max-height: 40vh;
  }

  .pd-hero__name {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    text-wrap: balance;
  }

  .pd-hero__short {
    font-size: .88rem;
  }

  .footer__g {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer__brand p {
    display: none;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .ctaband__h {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    text-wrap: balance;
  }

  .cur-dot,
  .cur-ring {
    display: none;
  }

  body {
    cursor: auto;
  }

  button {
    cursor: pointer;
  }

  .mq__item {
    font-size: .68rem;
    gap: 18px;
    padding: 0 18px;
  }

  .sec-gap {
    padding: clamp(48px, 7vw, 80px) 0;
  }

  .why {
    padding: clamp(60px, 8vw, 90px) 0;
  }

  .why__h {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

/* ── Mobile Portrait ≤580px ─── */
@media (max-width: 580px) {
  .logo__name small {
    display: none;
  }

  .logo__text small {
    display: none;
  }

  .hero__h {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero__stats {
    flex-direction: column;
  }

  .hero__stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
  }

  .hero__stat:last-child {
    border-bottom: none;
  }

  .hero__price-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__price-sep {
    display: none;
  }

  .showcase__btns {
    flex-direction: column;
  }

  .showcase__btns .btn {
    width: 100%;
    justify-content: center;
  }

  .showcase__desc {
    font-size: .85rem;
  }

  .logos-g {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .logo-t {
    height: 64px;
  }

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

  .footer {
    padding: 48px 0 0;
  }

  .contacts-left {
    padding: 90px 16px 32px;
  }

  .contacts-right {
    padding: 32px 16px 60px;
  }

  .contacts-left__h {
    font-size: 2rem;
    line-height: 1.1;
  }

  .contacts-left__sub {
    font-size: .85rem;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }

  .field__input {
    font-size: 1rem;
  }

  /* prevent iOS zoom on focus */
  .ctaband .btn--cta {
    width: 100%;
    justify-content: center;
  }

  .pdh__name {
    font-size: 1.8rem;
  }

  .pdh__btns {
    flex-direction: column;
  }

  .pdh__btns .btn--lg {
    width: 100%;
    justify-content: center;
  }

  .pd-hero__right {
    min-height: 180px;
  }

  .pd-hero__img {
    max-height: 35vh;
  }

  .pd-hero__btns {
    flex-direction: column;
    width: 100%;
  }

  .pd-hero__btns .btn {
    width: 100%;
    justify-content: center;
  }

  .pd-hero__name {
    font-size: 1.6rem;
  }

  .pd-hero__price {
    font-size: 1.6rem;
  }

  .pd-hero__bc {
    font-size: .65rem;
    flex-wrap: wrap;
  }

  .bcard__ico {
    width: 40px;
    height: 40px;
    font-size: .85rem;
  }

  .mobile-menu a {
    font-size: 1.5rem;
  }
}

/* ── Small Phone ≤420px ─── */
@media (max-width: 420px) {
  .container {
    padding: 0 14px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero__h {
    font-size: clamp(1.85rem, 10vw, 2.6rem);
  }

  .hero__eyebrow {
    display: none;
  }

  .logo-t {
    height: 58px;
    padding: 8px 6px;
  }

  .logo-t img {
    max-height: 28px;
  }

  .btn--lg {
    padding: 13px 20px;
    font-size: .8rem;
  }

  .s-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .why__h {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .cinfo-row {
    font-size: .8rem;
  }

  .form-note {
    font-size: .68rem;
  }

  .toasts {
    right: 0;
    left: 0;
    padding: 0 12px;
  }

  .toast {
    font-size: .77rem;
  }

  .pd-hero__right {
    min-height: 150px;
  }

  .pd-hero__img {
    max-height: 30vh;
  }

  .pd-hero__bc {
    display: none;
  }
}

/* ── Tiny Phone ≤360px ─── */
@media (max-width: 360px) {
  .hero__h {
    font-size: 1.75rem;
  }

  .hero__btns {
    flex-direction: column;
  }

  .hero__btns .btn {
    width: 100%;
    justify-content: center;
  }

  .logo-t {
    height: 52px;
  }

  .footer__col h5 {
    font-size: .54rem;
  }

  .footer__col a,
  .footer__col .contact-row {
    font-size: .74rem;
  }

  .showcase__h {
    font-size: 1.3rem;
  }

  .showcase__price {
    font-size: 1rem;
  }
}

/* ── Touch devices ─── */
@media (hover: none) {
  .showcase__img {
    transform: none !important;
  }

  .btn:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .logo-t:hover {
    transform: none !important;
    box-shadow: none;
    border-color: rgba(255, 255, 255, .15);
  }

  .bcard:hover {
    transform: none !important;
  }
}

/* ── Large screens ≥1440px ─── */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }

  .hero__h {
    font-size: 5.5rem;
  }

  .showcase__h {
    font-size: 3rem;
  }

  .pd-hero__name {
    font-size: 4.5rem;
  }
}

/* ── Safe area (notched phones) ─── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer__bottom {
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }

  .mobile-menu {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ── Fotobudka image scale ─── */
.fotobudka {
  transform: scale(1.7) !important;
}
@media (max-width: 1100px) {
  .fotobudka {
    transform: scale(1.3) !important;
  }
}
@media (max-width: 768px) {
  .fotobudka {
    transform: scale(1.1) !important;
  }
}