/* ── TOKENS ── */
:root {
  --bg: #07050f; --s1: #0c0916; --s2: #11101e; --s3: #161428;
  --r: #ff2d55; --o: #ff7730; --c: #00d4ff; --p: #c084fc; --g: #00e676;
  --txt: #f4f4fc; --mid: #a0a0c8; --low: #55557a;
  --border: rgba(255,255,255,.06);
  --ease: cubic-bezier(.16,1,.3,1);
  --ease-back: cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--txt);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

/* ── MOBILE GLOW ── */
.mobile-glow {
  display: none; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 140% 55% at 50% -5%, rgba(120,45,255,.18) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 5% 85%, rgba(255,45,85,.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 95% 60%, rgba(60,25,180,.1) 0%, transparent 50%);
}
@media (max-width: 768px) { .mobile-glow { display: block; } }

/* ── MOBILE NAV ── */
.mob-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(7,5,15,.98); backdrop-filter: blur(32px);
  z-index: 490; flex-direction: column; align-items: center;
  justify-content: center; gap: 34px;
}
.mob-nav.o { display: flex; }
.mob-nav a {
  color: var(--txt); text-decoration: none;
  font-family: 'Syne', sans-serif; font-size: clamp(2rem,7vw,2.6rem);
  font-weight: 800; opacity: 0; transform: translateY(20px); transition: color .3s;
}
.mob-nav.o a { animation: navIn .4s var(--ease) forwards; }
.mob-nav.o a:nth-child(1) { animation-delay: .05s; }
.mob-nav.o a:nth-child(2) { animation-delay: .1s; }
.mob-nav.o a:nth-child(3) { animation-delay: .15s; }
.mob-nav.o a:nth-child(4) { animation-delay: .2s; }
.mob-nav.o a:nth-child(5) { animation-delay: .25s; }
@keyframes navIn { to { opacity: 1; transform: translateY(0); } }
.mob-nav a:hover { color: var(--r); }

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 14px 48px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; transition: background .4s;
}
header.sc {
  background: rgba(7,5,15,.96); backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px); border-bottom: 1px solid var(--border);
}
.header-logo {
  display: flex; align-items: center; flex-shrink: 0; text-decoration: none;
}
.header-logo img {
  height: 36px; width: auto;
  filter: drop-shadow(0 0 10px rgba(255,45,85,.3)); transition: filter .3s;
}
.header-logo:hover img { filter: drop-shadow(0 0 18px rgba(255,45,85,.6)); }
nav { display: flex; align-items: center; gap: 22px; }
nav a {
  color: rgba(200,200,230,.65); text-decoration: none;
  font-size: .82rem; font-weight: 500; letter-spacing: .02em; transition: color .3s;
  position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--r), var(--o));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
nav a:hover { color: var(--txt); }
nav a:hover::after { transform: scaleX(1); }
nav a.active { color: var(--r); }
.ham {
  display: none; flex-direction: column; gap: 6px; cursor: pointer;
  z-index: 600; padding: 11px 12px; background: rgba(130,50,255,.25);
  backdrop-filter: blur(20px); border-radius: 12px;
  border: 1px solid rgba(130,50,255,.4); transition: background .3s;
}
.ham:hover { background: rgba(130,50,255,.4); }
.ham span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 3px; transition: all .3s; }
.ham.o span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.ham.o span:nth-child(2) { opacity: 0; }
.ham.o span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── PAGE HERO ── */
.page-hero {
  min-height: 38vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 120px 24px 60px; position: relative; z-index: 1;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(120,45,255,.14) 0%, transparent 60%);
}
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.05;
  margin-bottom: 14px; color: var(--txt);
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--r), var(--o), var(--p));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero p {
  color: var(--mid); font-size: clamp(.9rem, 1.8vw, 1rem);
  line-height: 1.7; max-width: 460px;
}

/* ── LABELS ── */
.slbl {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .7rem; color: var(--r); text-transform: uppercase;
  letter-spacing: .15em; margin-bottom: 14px;
}
.slbl::before { content: ''; width: 26px; height: 1px; background: linear-gradient(90deg, var(--r), var(--o)); }
.sttl {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.05; margin-bottom: 12px;
}

/* ── PRICING WRAPPER ── */
.pricing { position: relative; z-index: 1; padding-bottom: 80px; }
.pricing-inner { max-width: 1200px; margin: 0 auto; padding: 0 52px; }

/* ── CATEGORY CARDS ── */
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-bottom: 52px;
}
.cat-card {
  position: relative; overflow: hidden;
  background: var(--s2); border: 1px solid var(--border);
  border-radius: 18px; padding: 24px 20px;
  display: flex; flex-direction: column; gap: 14px;
  cursor: pointer; transition: all .35s var(--ease);
  text-align: left;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--cat-col) 8%, transparent), transparent);
  opacity: 0; transition: opacity .35s;
}
.cat-card:hover, .cat-card.active {
  border-color: color-mix(in srgb, var(--cat-col) 50%, transparent);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--cat-col) 15%, transparent);
}
.cat-card:hover::before, .cat-card.active::before { opacity: 1; }
.cat-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: color-mix(in srgb, var(--cat-col) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--cat-col) 30%, transparent);
  display: flex; align-items: center; justify-content: center;
}
.cat-icon svg { width: 22px; height: 22px; color: var(--cat-col); }
.cat-info { flex: 1; }
.cat-num { display: block; font-size: .62rem; color: var(--low); letter-spacing: .12em; margin-bottom: 4px; }
.cat-name { display: block; font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800; color: var(--txt); margin-bottom: 5px; }
.cat-desc { display: block; font-size: .72rem; color: var(--mid); line-height: 1.4; }
.cat-arrow { color: color-mix(in srgb, var(--cat-col) 60%, transparent); transition: transform .3s var(--ease); }
.cat-arrow svg { width: 18px; height: 18px; }
.cat-card:hover .cat-arrow, .cat-card.active .cat-arrow { transform: translateX(4px); color: var(--cat-col); }
.cat-active-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cat-col), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.cat-card.active .cat-active-bar { transform: scaleX(1); }

/* ── PRICING GROUPS ── */
.pricing-group { display: none; }
.pricing-group.active { display: block; animation: fadeSlideIn .4s var(--ease); }
@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ── PRICE GRID ── */
.price-grid { display: grid; gap: 20px; }
.price-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ── PRICE CARD ── */
.price-card {
  position: relative; overflow: hidden;
  background: var(--s2); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 28px;
  transition: all .4s var(--ease); display: flex; flex-direction: column; gap: 0;
}
.price-card:hover {
  border-color: rgba(140,60,255,.35);
  box-shadow: 0 20px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(140,60,255,.15);
  transform: translateY(-4px);
}
.price-card.price-pop {
  background: linear-gradient(145deg, rgba(140,60,255,.12), rgba(255,45,85,.06));
  border-color: rgba(140,60,255,.4);
  box-shadow: 0 0 0 1px rgba(140,60,255,.25), 0 24px 48px rgba(140,60,255,.12);
}
.price-badge {
  display: inline-flex; font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  color: var(--mid); margin-bottom: 18px; width: fit-content;
}
.pop-badge {
  background: linear-gradient(90deg, rgba(140,60,255,.2), rgba(255,45,85,.12));
  border-color: rgba(140,60,255,.4); color: var(--p);
}
.price-title {
  font-family: 'Syne', sans-serif; font-size: 1.35rem;
  font-weight: 800; color: var(--txt); margin-bottom: 10px;
}
.price-desc {
  font-size: .88rem; color: var(--mid); line-height: 1.65;
  margin-bottom: 24px; flex: 1;
}
.price-val { margin-bottom: 24px; }
.price-main {
  display: block; font-family: 'Syne', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--txt); line-height: 1.1;
}
.price-main small { font-size: .9rem; color: var(--mid); font-weight: 400; }
.price-eur { display: block; font-size: .8rem; color: var(--low); margin-top: 4px; }
.price-tva { display: block; font-size: .72rem; color: var(--low); margin-top: 2px; }
.price-feats {
  list-style: none; margin-bottom: 26px; display: flex; flex-direction: column; gap: 9px;
}
.price-feats li {
  font-size: .88rem; color: var(--mid); padding-left: 18px; position: relative; line-height: 1.4;
}
.price-feats li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--g); font-size: .75rem; font-weight: 700;
}
.price-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; border-radius: 100px; font-weight: 700;
  font-size: .9rem; text-decoration: none; border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06); color: var(--txt);
  transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.price-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(140,60,255,.15), rgba(255,45,85,.08));
  opacity: 0; transition: opacity .3s;
}
.price-btn:hover { border-color: rgba(140,60,255,.5); transform: translateY(-2px); color: #fff; }
.price-btn:hover::before { opacity: 1; }
.price-btn-pop {
  background: linear-gradient(135deg, #8c3cff, #ff2d55);
  border-color: transparent; color: #fff;
  box-shadow: 0 6px 20px rgba(140,60,255,.35);
}
.price-btn-pop:hover { box-shadow: 0 12px 32px rgba(140,60,255,.5); transform: translateY(-3px); }
.price-btn-pop::before { display: none; }

/* ── EQUIPMENT ── */
.equipment-section {
  margin-top: 72px; padding: 52px;
  background: linear-gradient(135deg, rgba(140,60,255,.04), rgba(0,212,255,.03));
  border: 1px solid var(--border); border-radius: 24px;
}
.equip-head { text-align: center; margin-bottom: 44px; }
.equip-title {
  font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800; letter-spacing: -.04em; margin-bottom: 10px;
}
.equip-sub { color: var(--mid); font-size: .95rem; line-height: 1.7; max-width: 480px; margin: 0 auto; }
.equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.equip-card {
  background: var(--s2); border: 1px solid var(--border); border-radius: 16px;
  padding: 26px 22px; transition: all .35s var(--ease);
}
.equip-card:hover { border-color: rgba(0,212,255,.3); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,0,0,.3); }
.equip-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0,212,255,.08); border: 1px solid rgba(0,212,255,.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.equip-icon svg { width: 22px; height: 22px; color: var(--c); }
.equip-card h4 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.equip-card p { font-size: .84rem; color: var(--mid); line-height: 1.6; }

/* ── PRICING FOOTER ── */
.pricing-footer {
  margin-top: 60px; text-align: center; padding: 52px;
  background: linear-gradient(135deg, rgba(140,60,255,.06), rgba(255,45,85,.04));
  border: 1px solid var(--border); border-radius: 24px;
}
.pricing-footer p { color: var(--mid); font-size: .95rem; margin-bottom: 24px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #25D366, #0f9b58);
  color: #fff; text-decoration: none; padding: 15px 34px;
  border-radius: 100px; font-weight: 700; font-size: .95rem;
  letter-spacing: .02em; box-shadow: 0 0 22px rgba(37,211,102,.28);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 38px rgba(37,211,102,.45); }

/* ── FOOTER ── */
footer {
  padding: 40px 52px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; position: relative; z-index: 1;
}
.foot-logo-small { width: 100px; height: auto; opacity: .7; }
.foot-copy { color: var(--low); font-size: .8rem; }
.foot-back {
  color: var(--mid); text-decoration: none; font-size: .85rem; font-weight: 500;
  padding: 8px 18px; border-radius: 100px; border: 1px solid var(--border);
  background: rgba(255,255,255,.04); transition: all .3s;
}
.foot-back:hover { border-color: rgba(140,60,255,.4); color: var(--p); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pricing-inner { padding: 0 32px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  header { padding: 12px 20px; }
  nav { display: none; }
  .ham { display: flex; }
  .pricing-inner { padding: 0 20px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .price-grid-3 { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: 1fr; }
  .equipment-section { padding: 32px 20px; }
  .pricing-footer { padding: 32px 20px; }
  footer { padding: 28px 20px; flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { flex-direction: row; align-items: center; }
}
