/* ═══════════════════════════════════════════
   EVIX Platform — Prezentare client
   style.css
═══════════════════════════════════════════ */

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

:root {
  --bg:         #070d1a;
  --bg2:        #0b1220;
  --glass:      rgba(255,255,255,.04);
  --glass2:     rgba(255,255,255,.07);
  --border:     rgba(255,255,255,.07);
  --border2:    rgba(255,255,255,.13);
  --cyan:       #38bdf8;
  --cyan-dim:   rgba(56,189,248,.12);
  --cyan-dim2:  rgba(56,189,248,.20);
  --purple:     #a78bfa;
  --purple-dim: rgba(167,139,250,.12);
  --green:      #4ade80;
  --green-dim:  rgba(74,222,128,.10);
  --amber:      #fbbf24;
  --amber-dim:  rgba(251,191,36,.10);
  --red:        #f87171;
  --red-dim:    rgba(248,113,113,.10);
  --text:       #f1f5f9;
  --text2:      #94a3b8;
  --muted:      #64748b;
  --dim:        #334155;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100% }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.15; font-weight: 800; text-wrap: balance }
a { color: inherit; text-decoration: none }

/* ── Canvas background ── */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

/* All content above canvas */
.nav, main, footer { position: relative; z-index: 1 }

/* ── Progress bar ── */
#progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 300;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  width: 0%; transition: width .08s linear;
  pointer-events: none;
}

/* ── Layout ── */
.container { max-width: 980px; margin: 0 auto; padding: 0 28px }
.section { padding: 88px 0 }
.section--alt { background: rgba(11,18,32,.7); backdrop-filter: blur(2px) }
.divider { height: 1px; background: var(--border) }

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 60px; display: flex; align-items: center;
  padding: 0 28px; gap: 20px;
  transition: background .25s, border-color .25s, box-shadow .25s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,13,26,.92);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

.nav__logo {
  display: flex; align-items: center; flex-shrink: 0;
}
.nav__logo img, .nav__logo svg {
  height: 28px; width: auto;
}

.nav__links {
  display: flex; gap: 2px; flex: 1; justify-content: center;
  list-style: none;
}
.nav__links a {
  color: var(--text2); font-size: 13px; font-weight: 500;
  padding: 6px 12px; border-radius: 7px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--text); background: var(--glass2) }

.nav__cta {
  font-size: 13px; font-weight: 700; color: var(--bg) !important;
  background: var(--cyan) !important;
  padding: 7px 18px !important; border-radius: 100px !important;
  transition: opacity .15s !important;
  flex-shrink: 0;
}
.nav__cta:hover { opacity: .88 !important; background: var(--cyan) !important }

/* Mobile burger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text2); border-radius: 1px;
  transition: transform .25s, opacity .25s;
}

@media (max-width: 700px) {
  .nav__links {
    position: fixed; top: 60px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(7,13,26,.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 20px;
    display: none;
  }
  .nav__links.open { display: flex }
  .nav__links a { padding: 10px 14px; font-size: 15px }
  .nav__cta { display: none }
  .nav__burger { display: flex }
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding: 96px 28px 80px; position: relative; overflow: hidden;
}

.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 85% 50% at 50% -5%,  rgba(56,189,248,.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 80%, rgba(167,139,250,.06) 0%, transparent 55%);
}

.hero__content { position: relative; max-width: 980px; margin: 0 auto; width: 100% }

.hero__logo {
  margin-bottom: 32px;
}
.hero__logo img, .hero__logo svg {
  height: 36px; width: auto;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan-dim); border: 1px solid rgba(56,189,248,.22);
  border-radius: 100px; padding: 5px 14px;
  font-size: 11px; font-weight: 700; color: var(--cyan);
  letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 24px;
}
.hero__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

.hero__title {
  font-size: clamp(38px, 8vw, 72px); font-weight: 900;
  letter-spacing: -2px; margin-bottom: 22px; line-height: 1.05;
}
.hero__hi { color: var(--cyan) }

.hero__sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--text2);
  max-width: 540px; margin-bottom: 48px; line-height: 1.8;
}

.hero__stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  border-top: 1px solid var(--border); padding-top: 36px;
}
.hs__num {
  font-size: 32px; font-weight: 900; color: var(--cyan);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.hs__lbl { font-size: 12px; color: var(--muted); margin-top: 5px }

.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: var(--dim); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  pointer-events: none;
}
.scroll-cue__arr {
  width: 14px; height: 14px;
  border-right: 2px solid var(--dim); border-bottom: 2px solid var(--dim);
  transform: rotate(45deg) translateY(-3px);
  animation: arr 1.7s ease-in-out infinite;
}
@keyframes arr { 0%,100%{transform:rotate(45deg) translateY(-3px); opacity:.35} 50%{transform:rotate(45deg) translateY(3px); opacity:.9} }

/* ══════════════════════════════════
   SECTION HEADERS
══════════════════════════════════ */
.s-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--cyan); margin-bottom: 12px; display: block;
}
.s-title { font-size: clamp(24px, 4.5vw, 40px); font-weight: 800; margin-bottom: 16px }
.s-desc  { color: var(--text2); font-size: 15px; max-width: 520px; line-height: 1.8 }

/* ══════════════════════════════════
   FEATURE GRID
══════════════════════════════════ */
.feat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px;
}
.feat-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: 14px;
  padding: 22px 20px; transition: border-color .2s, background .2s, transform .2s;
}
.feat-card:hover { border-color: rgba(56,189,248,.3); background: var(--glass2); transform: translateY(-2px) }
.feat-card__ico  { margin-bottom: 14px }
.feat-card__name { font-size: 14px; font-weight: 700; margin-bottom: 6px }
.feat-card__desc { font-size: 12px; color: var(--muted); line-height: 1.65 }

/* ══════════════════════════════════
   CATEGORY TABS
══════════════════════════════════ */
.cat-tabs {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 28px;
}
.cat-tab {
  background: var(--glass); border: 1px solid var(--border); border-radius: 100px;
  padding: 8px 18px; font-size: 13px; font-weight: 600; color: var(--text2);
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.cat-tab:hover { border-color: var(--border2); color: var(--text) }
.cat-tab.active {
  background: var(--cyan-dim2); border-color: rgba(56,189,248,.4);
  color: var(--cyan);
}

.cat-panel { display: none }
.cat-panel.in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: start;
  animation: fadeUp .35s ease both;
}
@keyframes fadeUp { from { opacity:0; transform: translateY(16px) } to { opacity:1; transform: none } }

.cat-info__title {
  font-size: 22px; font-weight: 800; margin-bottom: 10px;
}
.cat-info__desc  { color: var(--text2); font-size: 14px; line-height: 1.75; margin-bottom: 18px }
.cat-info__opts  { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px }
.cat-opt {
  font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px;
  background: var(--glass2); border: 1px solid var(--border2); color: var(--text2);
}
.cat-price-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--green);
  background: var(--green-dim); border: 1px solid rgba(74,222,128,.2);
  border-radius: 8px; padding: 7px 12px;
}

.cat-mock {
  background: var(--glass); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden;
}
.cat-mock__bar {
  background: rgba(255,255,255,.03); border-bottom: 1px solid var(--border);
  padding: 9px 13px; display: flex; align-items: center; gap: 6px;
}
.cm-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0 }
.cat-mock__body { padding: 13px }
.cm-field {
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 7px; padding: 8px 10px; margin-bottom: 7px;
}
.cm-field__l { font-size: 9px; color: var(--muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: .5px }
.cm-field__v { font-size: 12px; color: var(--text2) }
.cm-field--hi .cm-field__v { color: var(--text); font-weight: 600 }
.cm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 7px }
.cm-total {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(56,189,248,.08); border: 1px solid rgba(56,189,248,.18);
  border-radius: 8px; padding: 10px 12px; margin-top: 8px;
}
.cm-total__l { font-size: 11px; color: var(--muted) }
.cm-total__v { font-size: 18px; font-weight: 900; color: var(--cyan); font-variant-numeric: tabular-nums }

@media (max-width: 650px) { .cat-panel.in { grid-template-columns: 1fr } }

/* ══════════════════════════════════
   SHOWCASE (2-col feature sections)
══════════════════════════════════ */
.show { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center }
.show--rev { direction: rtl }
.show--rev > * { direction: ltr }
@media (max-width: 700px) { .show, .show--rev { grid-template-columns: 1fr; direction: ltr } }

/* ── Checklist (fixed layout) ── */
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 22px }
.feat-list li {
  display: flex; align-items: flex-start; gap: 12px;
}
.feat-list__check {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px;
  background: var(--green-dim)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%234ade80' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 10 8 14 16 6'/%3E%3C/svg%3E")
    center / contain no-repeat;
  border: 1px solid rgba(74,222,128,.25); border-radius: 50%;
}
.feat-list__body { display: flex; flex-direction: column; gap: 2px }
.feat-list__title { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.4 }
.feat-list__desc  { font-size: 13px; color: var(--muted); line-height: 1.5 }

/* ══════════════════════════════════
   MOCKUP SHELL
══════════════════════════════════ */
.mockup {
  background: var(--glass); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.m-bar {
  background: rgba(255,255,255,.03); border-bottom: 1px solid var(--border);
  padding: 10px 14px; display: flex; align-items: center; gap: 6px;
}
.m-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0 }
.m-lbl  { font-size: 11px; color: var(--muted); margin-left: 6px }
.m-body { padding: 14px }

/* Order form mock */
.mf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 7px }
.mfield {
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 7px; padding: 8px 10px;
}
.mfield__l { font-size: 9px; color: var(--muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: .5px }
.mfield__v { font-size: 12px; color: var(--text2) }
.mfield--hi .mfield__v { color: var(--text); font-weight: 600 }
.mprod {
  display: flex; align-items: center; gap: 8px;
  background: rgba(56,189,248,.06); border: 1px solid rgba(56,189,248,.13);
  border-radius: 8px; padding: 9px 11px; margin-bottom: 6px;
}
.mprod__n { font-size: 12px; font-weight: 600; color: var(--text); flex: 1 }
.mprod__s { font-size: 9px; color: var(--muted); margin-top: 1px }
.mprod__p { font-size: 13px; font-weight: 800; color: var(--cyan); white-space: nowrap }
.mtotal {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(56,189,248,.09); border: 1px solid rgba(56,189,248,.22);
  border-radius: 9px; padding: 11px 13px; margin-top: 6px;
}
.mtotal__l { font-size: 11px; color: var(--muted) }
.mtotal__s { font-size: 9px; color: var(--dim); margin-top: 1px }
.mtotal__v { font-size: 20px; font-weight: 900; color: var(--cyan); font-variant-numeric: tabular-nums }

/* Kanban mock */
.mkan { display: flex; gap: 8px; padding: 14px; overflow-x: auto; min-height: 170px }
.mkan-col { flex: 0 0 130px }
.mkan-hdr {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  padding: 5px 8px; border-radius: 6px; margin-bottom: 7px;
  display: flex; align-items: center; gap: 5px;
}
.mkan-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0 }
.mkan-card {
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 10px; margin-bottom: 5px;
}
.mkan-card__c { font-size: 11px; font-weight: 700; color: var(--text); margin-bottom: 2px }
.mkan-card__i { font-size: 10px; color: var(--muted) }
.mkan-card--urg { border-color: rgba(248,113,113,.3); background: rgba(248,113,113,.05) }
.mkan-card--urg .mkan-card__i { color: var(--red) }

/* Calendar mock */
.mcal-hdr {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: 12px; font-weight: 700;
}
.mcal-hdr span { color: var(--muted); font-size: 14px }
.mcal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; padding: 10px 8px }
.mcal-dow  { text-align: center; font-size: 9px; color: var(--muted); padding: 3px 0; font-weight: 700; letter-spacing: .5px }
.mcal-day  {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 6px; font-size: 10px; color: var(--text2);
}
.mcal-day--c1 { background: rgba(56,189,248,.14); color: var(--cyan); font-weight: 700 }
.mcal-day--c2 { background: rgba(167,139,250,.14); color: var(--purple); font-weight: 700 }
.mcal-day--c3 { background: rgba(251,191,36,.14);  color: var(--amber);  font-weight: 700 }
.mcal-day--c4 { background: rgba(248,113,113,.14); color: var(--red);    font-weight: 700 }
.mcal-day--today { background: var(--cyan); color: #0f172a; font-weight: 900 }

/* Drive mock */
.mdrv-fldrs { display: flex; flex-direction: column; gap: 5px; padding: 12px 14px; border-bottom: 1px solid var(--border) }
.mdrv-fldr {
  display: flex; align-items: center; gap: 8px; padding: 7px 10px;
  border-radius: 7px; border: 1px solid rgba(251,191,36,.18); background: rgba(251,191,36,.05);
}
.mdrv-fldr--hi { border-color: rgba(56,189,248,.2); background: rgba(56,189,248,.05) }
.mdrv-fldr__n  { font-size: 11px; font-weight: 600; color: var(--amber) }
.mdrv-fldr--hi .mdrv-fldr__n { color: var(--cyan) }
.mdrv-files { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; padding: 12px 14px }
.mdrv-file {
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 6px; text-align: center;
}
.mdrv-file__i { font-size: 20px; display: block; margin-bottom: 4px }
.mdrv-file__n { font-size: 9px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap }
.mdrv-file--add { border-style: dashed; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--dim) }

/* Dashboard mock */
.mdb-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; padding: 14px 14px 0 }
.mdb-kpi  { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 9px; padding: 10px 12px }
.mdb-kpi__v { font-size: 20px; font-weight: 900; font-variant-numeric: tabular-nums; line-height: 1 }
.mdb-kpi__l { font-size: 9px; color: var(--muted); margin-top: 3px; text-transform: uppercase; letter-spacing: .5px }
.mdb-chart  { padding: 14px }
.mdb-bars   { display: flex; align-items: flex-end; gap: 4px; height: 56px }
.mdb-bar    { flex: 1; border-radius: 3px 3px 0 0; min-height: 4px; background: linear-gradient(to top, rgba(56,189,248,.6), rgba(56,189,248,.15)) }
.mdb-bar--hi { background: linear-gradient(to top, #38bdf8, rgba(56,189,248,.4)) }
.mdb-chart__hr  { height: 1px; background: var(--border); margin: 4px 0 }
.mdb-chart__lbs { display: flex; justify-content: space-between }
.mdb-chart__lb  { font-size: 8px; color: var(--muted) }
.mdb-tags { display: flex; gap: 5px; flex-wrap: wrap; padding: 0 14px 14px }
.mdb-tag  { font-size: 9px; padding: 3px 8px; border-radius: 5px; font-weight: 600 }

/* Montare mock */
.mmnt { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px }
.mmnt-hdr {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  padding: 5px 10px; border-radius: 6px; margin-bottom: 7px;
}
.mmnt-card { border-radius: 8px; padding: 10px 11px; margin-bottom: 5px; border: 1px solid }
.mmnt-card--pre { background: rgba(56,189,248,.06); border-color: rgba(56,189,248,.18) }
.mmnt-card--fin { background: rgba(74,222,128,.05); border-color: rgba(74,222,128,.15); opacity: .75 }
.mmnt-card__c { font-size: 11px; font-weight: 700; color: var(--text); margin-bottom: 2px }
.mmnt-card__d { font-size: 11px; font-weight: 600 }
.mmnt-card--pre .mmnt-card__d { color: var(--purple) }
.mmnt-card--fin .mmnt-card__d { color: var(--green) }
.mmnt-card__a { font-size: 9px; color: var(--muted); margin-top: 2px }

/* Roles table */
.rtbl { width: 100%; border-collapse: collapse; font-size: 12px }
.rtbl th, .rtbl td { padding: 9px 12px; border-bottom: 1px solid var(--border); text-align: left; white-space: nowrap }
.rtbl th { color: var(--muted); font-weight: 600; font-size: 11px; background: rgba(255,255,255,.02) }
.rtbl td:first-child { font-weight: 600; color: var(--text); white-space: normal }
.rb { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; font-size: 11px; font-weight: 700 }
.rb--y { background: var(--green-dim);  color: var(--green);  border: 1px solid rgba(74,222,128,.25) }
.rb--n { background: var(--glass);      color: var(--dim);    border: 1px solid var(--border) }
.rb--p { background: var(--amber-dim);  color: var(--amber);  border: 1px solid rgba(251,191,36,.25) }

/* Phone mockup */
.phone {
  width: 186px; margin: 0 auto;
  background: #0a1020; border: 2px solid rgba(255,255,255,.18);
  border-radius: 28px; padding: 18px 10px 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04) inset;
  position: relative;
}
.phone::before {
  content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.18);
}
.phone-scr { border-radius: 16px; overflow: hidden; background: var(--bg) }
.phone-row {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 9px; border-bottom: 1px solid var(--border);
}
.phone-row:last-child { border-bottom: none }
.phone-row__n { font-size: 10px; font-weight: 700; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap }
.phone-row__s { font-size: 9px; padding: 2px 6px; border-radius: 5px; font-weight: 600; white-space: nowrap }

/* ══════════════════════════════════
   TAG CHIPS
══════════════════════════════════ */
.tag { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 100px; margin: 2px }
.tag--c { background: var(--cyan-dim);   color: var(--cyan);   border: 1px solid rgba(56,189,248,.2) }
.tag--p { background: var(--purple-dim); color: var(--purple); border: 1px solid rgba(167,139,250,.2) }
.tag--g { background: var(--green-dim);  color: var(--green);  border: 1px solid rgba(74,222,128,.2) }
.tag--a { background: var(--amber-dim);  color: var(--amber);  border: 1px solid rgba(251,191,36,.2) }

/* ══════════════════════════════════
   CONTACT SECTION
══════════════════════════════════ */
.contact-section {
  padding: 104px 0;
  background: radial-gradient(ellipse 75% 65% at 50% 50%, rgba(56,189,248,.07) 0%, transparent 70%);
  text-align: center;
}
.contact-section h2 { font-size: clamp(28px, 5.5vw, 50px); margin-bottom: 14px }
.contact-section p  { color: var(--text2); font-size: 16px; margin-bottom: 44px }

.contact-cards { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap }
.contact-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--glass); border: 1px solid var(--border); border-radius: 14px;
  padding: 20px 24px; min-width: 220px;
  transition: border-color .2s, background .2s;
}
.contact-card:hover { border-color: var(--border2); background: var(--glass2) }
.contact-card__icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-card__label { font-size: 11px; color: var(--muted); margin-bottom: 3px }
.contact-card__val   { font-size: 14px; font-weight: 700; color: var(--text) }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  border-top: 1px solid var(--border); padding: 36px 28px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 14px; text-align: center;
}
.footer__logo { height: 22px; width: auto; opacity: .7 }
.footer__copy { font-size: 12px; color: var(--muted) }
.footer__copy strong { color: var(--cyan) }

/* ══════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════ */
/* Initial hidden state — GSAP animates these; .in class used as CSS fallback */
.rv  { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease }
.rvl { transform: translateX(-26px) }
.rvr { transform: translateX(26px) }
.rv.in { opacity: 1; transform: none }

/* ══════════════════════════════════
   CURSOR GLOW BLOB
══════════════════════════════════ */
#cursor-blob {
  position: fixed; width: 400px; height: 400px; border-radius: 50%;
  pointer-events: none; z-index: 0; top: 0; left: 0;
  background: radial-gradient(circle, rgba(56,189,248,.055) 0%, rgba(167,139,250,.02) 40%, transparent 65%);
  will-change: transform; opacity: 0;
}

/* ══════════════════════════════════
   CATEGORY PAGE — HERO
══════════════════════════════════ */
.cat-hero {
  padding: 140px 0 80px; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(56,189,248,.08) 0%, transparent 65%);
}
.cat-hero__bread {
  font-size: 12px; color: var(--muted); margin-bottom: 28px;
}
.cat-hero__bread a { color: var(--cyan); text-decoration: none }
.cat-hero__bread a:hover { text-decoration: underline }
.cat-hero__title {
  font-size: clamp(36px, 7vw, 72px); font-weight: 900;
  letter-spacing: -2px; line-height: 1.05; margin-bottom: 20px;
}
.cat-hero__hi { color: var(--cyan) }
.cat-hero__desc {
  font-size: clamp(15px, 2vw, 18px); color: var(--text2); max-width: 560px;
  line-height: 1.8; margin-bottom: 36px;
}
.cat-hero__meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.cat-stat__v {
  font-size: 28px; font-weight: 900; color: var(--cyan);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.cat-stat__l { font-size: 12px; color: var(--muted); margin-top: 4px }

/* ══════════════════════════════════
   OPTIONS GRID
══════════════════════════════════ */
.opt-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px; margin-top: 32px;
}
.opt-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: 14px;
  padding: 22px 20px; transition: border-color .2s, background .2s;
}
.opt-card:hover { border-color: rgba(56,189,248,.3); background: var(--glass2) }
.opt-card__ico { margin-bottom: 14px }
.opt-card__name { font-size: 15px; font-weight: 800; margin-bottom: 8px }
.opt-card__desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 14px }
.opt-card__tags { display: flex; flex-wrap: wrap; gap: 5px }
.opt-tag {
  font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px;
}
.opt-tag--g  { background: var(--green-dim);  color: var(--green);  border: 1px solid rgba(74,222,128,.2) }
.opt-tag--c  { background: var(--cyan-dim);   color: var(--cyan);   border: 1px solid rgba(56,189,248,.2) }
.opt-tag--p  { background: var(--purple-dim); color: var(--purple); border: 1px solid rgba(167,139,250,.2) }
.opt-tag--a  { background: var(--amber-dim);  color: var(--amber);  border: 1px solid rgba(251,191,36,.2) }
.opt-tag--r  { background: var(--red-dim);    color: var(--red);    border: 1px solid rgba(248,113,113,.2) }

/* ══════════════════════════════════
   PRICE FLOW
══════════════════════════════════ */
.price-flow {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: var(--glass); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 32px; margin-top: 28px;
}
.price-step { text-align: center; flex: 1; min-width: 120px }
.price-step__n {
  width: 36px; height: 36px; border-radius: 50%; margin: 0 auto 10px;
  background: var(--cyan-dim); border: 1px solid rgba(56,189,248,.3);
  color: var(--cyan); font-size: 15px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.price-step__t { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.4 }
.price-step__s { font-size: 12px; color: var(--muted); margin-top: 4px }
.price-arrow { font-size: 20px; color: var(--dim); flex-shrink: 0 }

/* ══════════════════════════════════
   USE CASES GRID
══════════════════════════════════ */
.use-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px; margin-top: 32px;
}
.use-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: 13px;
  padding: 20px 18px; transition: border-color .2s, background .2s;
}
.use-card:hover { border-color: var(--border2); background: var(--glass2) }
.use-card__ico { margin-bottom: 12px }
.use-card__name { font-size: 14px; font-weight: 700; margin-bottom: 6px }
.use-card__desc { font-size: 12px; color: var(--muted); line-height: 1.6 }

/* ══════════════════════════════════
   SPEC GRID
══════════════════════════════════ */
.spec-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px; margin-top: 28px;
}
.spec-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: 12px; padding: 20px;
}
.spec-card__label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px }
.spec-card__val   { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.5 }
.spec-card__sub   { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.5 }

/* ══════════════════════════════════
   CATEGORY CTA SECTION
══════════════════════════════════ */
.cat-cta-section {
  padding: 96px 0; text-align: center;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(56,189,248,.07) 0%, transparent 70%);
}
.cat-cta-section h2 { font-size: clamp(26px, 5vw, 46px); font-weight: 900; margin-bottom: 14px }
.cat-cta-section p  { color: var(--text2); font-size: 16px; margin-bottom: 36px }
.cat-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan); color: #070d1a; font-size: 15px; font-weight: 800;
  padding: 14px 36px; border-radius: 100px; text-decoration: none;
  transition: opacity .2s, transform .2s; will-change: transform;
}
.cat-cta-btn:hover { opacity: .88 }

/* Category detail link in index tabs */
.cat-detail-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  font-size: 13px; font-weight: 700; color: var(--cyan); text-decoration: none;
  padding: 8px 16px; border: 1px solid rgba(56,189,248,.25); border-radius: 100px;
  background: var(--cyan-dim); transition: background .2s;
}
.cat-detail-link:hover { background: var(--cyan-dim2) }
.d1 { transition-delay: .08s } .d2 { transition-delay: .16s } .d3 { transition-delay: .24s }
.d4 { transition-delay: .32s } .d5 { transition-delay: .40s } .d6 { transition-delay: .48s }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 700px) {
  .hero__stats { gap: 24px }
  .hs__num { font-size: 26px }
  .contact-cards { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto }
  footer { justify-content: center; text-align: center }
}
@media (max-width: 480px) {
  .section { padding: 60px 0 }
  .container { padding: 0 18px }
}
