/* =============================================
   cjesustp Digital — Dark SaaS / Tech
   Deep navy · Teal + Violet gradient accents
   ============================================= */

:root {
  --bg:         #060c18;
  --bg-alt:     #080f1e;
  --bg-card:    #0c1525;
  --bg-card-h:  #101c30;
  --border:     rgba(255,255,255,.07);
  --border-h:   rgba(0,212,170,.25);
  --teal:       #00d4aa;
  --teal-h:     #00efc0;
  --teal-glow:  rgba(0,212,170,.2);
  --violet:     #7c3aed;
  --violet-h:   #9f5fff;
  --violet-glow:rgba(124,58,237,.2);
  --yellow:     #f5c842;
  --red:        #ff5757;
  --green:      #22c55e;
  --text:       #ccd6f6;
  --text-h:     #f0f5ff;
  --muted:      #5a6a8a;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.22s ease;
  --shadow-card: 0 4px 32px rgba(0,0,0,.4);
  --shadow-hover: 0 8px 48px rgba(0,0,0,.55), 0 0 0 1px rgba(0,212,170,.15);
  --shadow-cta:   0 8px 32px rgba(0,212,170,.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-h); }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 66px;
  background: rgba(6,12,24,.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: border-color .3s;
}

.nav.scrolled { border-color: rgba(0,212,170,.12); }

.nav__brand {
  font-family: var(--font-mono);
  font-size: .95rem; font-weight: 700;
  color: var(--text-h); letter-spacing: .04em;
  display: flex; align-items: center; gap: .5rem;
}

.nav__brand-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 8px var(--teal);
}

.nav__links { display: flex; gap: 2.25rem; list-style: none; align-items: center; }

.nav__link {
  font-size: .8rem; font-weight: 600; color: var(--muted);
  letter-spacing: .04em; text-transform: uppercase;
  transition: color var(--transition);
}
.nav__link:hover { color: var(--text-h); }

.nav__link--cta {
  color: var(--bg) !important;
  background: var(--teal);
  padding: .45rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: 0 2px 12px var(--teal-glow);
  transition: all var(--transition);
}
.nav__link--cta:hover {
  background: var(--teal-h);
  box-shadow: 0 4px 20px var(--teal-glow);
  transform: translateY(-1px);
}

.nav__link--active { color: var(--teal) !important; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh; padding: 110px 2.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem; align-items: center;
  max-width: 1220px; margin: 0 auto;
}

/* Radial glow behind hero */
.hero::before {
  content: '';
  position: absolute; top: -10%; left: 30%; right: -20%;
  height: 65vh; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(0,212,170,.08) 0%, rgba(124,58,237,.06) 50%, transparent 70%);
}

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

.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,212,170,.08); border: 1px solid rgba(0,212,170,.2);
  border-radius: 99px; padding: .35rem 1rem;
  font-size: .75rem; font-weight: 600; color: var(--teal);
  letter-spacing: .04em; margin-bottom: 2rem;
}

.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 6px var(--teal);
  animation: pulse-teal 2s ease infinite;
}

@keyframes pulse-teal { 0%,100%{opacity:1} 50%{opacity:.35} }

.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -.03em; color: var(--text-h);
  margin-bottom: 1.5rem;
}

.hero__title-grad {
  background: linear-gradient(135deg, var(--teal) 0%, var(--violet-h) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: 1.08rem; color: var(--text);
  max-width: 520px; line-height: 1.8; margin-bottom: 2.5rem;
}
.hero__sub strong { color: var(--text-h); }

.hero__actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  align-items: center; margin-bottom: 3rem;
}

.hero__trust { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero__trust-item {
  display: flex; align-items: center; gap: .45rem;
  font-size: .8rem; color: var(--muted); font-weight: 500;
}
.hero__trust-item svg { color: var(--teal); flex-shrink: 0; }

/* ---- HERO CARD (derecha) ---- */
.hero__card {
  position: relative; z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(0,212,170,.06);
}

.hero__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,170,.4), rgba(124,58,237,.3), transparent);
}

.hcard__header {
  display: flex; align-items: center; gap: .4rem;
  padding: .875rem 1.25rem;
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid var(--border);
}

.hcard__dot { width: 10px; height: 10px; border-radius: 50%; }
.hcard__dot--r { background: #ff5f57; }
.hcard__dot--y { background: #febc2e; }
.hcard__dot--g { background: #28c840; }

.hcard__title {
  font-family: var(--font-mono); font-size: .65rem;
  color: var(--muted); margin-left: auto; letter-spacing: .06em;
}

.hcard__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }

.hcard__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  gap: 1rem;
}

.hcard__row-label {
  font-family: var(--font-mono); font-size: .68rem;
  color: var(--muted); letter-spacing: .06em; text-transform: uppercase;
}

.hcard__row-val {
  font-size: .85rem; font-weight: 600; color: var(--text-h);
  text-align: right;
}

.hcard__row-val--teal { color: var(--teal); font-family: var(--font-mono); }
.hcard__row-val--violet { color: var(--violet-h); }

.hcard__divider {
  height: 1px; background: var(--border); margin: .25rem 0;
}

.hcard__stack {
  display: flex; flex-wrap: wrap; gap: .4rem;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.hcard__pill {
  font-family: var(--font-mono); font-size: .62rem;
  color: var(--muted); background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  padding: .15em .6em; border-radius: 4px; letter-spacing: .04em;
}

.hcard__pill--teal { color: var(--teal); border-color: rgba(0,212,170,.2); background: rgba(0,212,170,.06); }
.hcard__pill--violet { color: var(--violet-h); border-color: rgba(124,58,237,.2); background: rgba(124,58,237,.06); }

.hcard__status {
  display: flex; align-items: center; gap: .5rem;
  padding: .6rem 1rem;
  background: rgba(34,197,94,.06);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: var(--radius);
}

.hcard__status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
  animation: pulse-teal 2s ease infinite;
}

.hcard__status-text {
  font-family: var(--font-mono); font-size: .65rem;
  color: var(--green); letter-spacing: .08em; text-transform: uppercase;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .72rem 1.6rem;
  font-family: var(--font-body); font-size: .875rem; font-weight: 700;
  border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; transition: all var(--transition);
  letter-spacing: .01em; text-decoration: none; white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal) 0%, #00b896 100%);
  color: #050f1a; border-color: transparent;
  box-shadow: 0 4px 20px var(--teal-glow);
}
.btn--primary:hover {
  filter: brightness(1.1); transform: translateY(-2px);
  box-shadow: var(--shadow-cta); color: #050f1a;
}

.btn--ghost {
  background: transparent; color: var(--text);
  border-color: rgba(255,255,255,.12);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn--outline {
  background: transparent; color: var(--teal);
  border-color: rgba(0,212,170,.4);
}
.btn--outline:hover { background: var(--teal); color: #050f1a; border-color: var(--teal); }

.btn--sm { padding: .38rem .9rem; font-size: .75rem; }
.btn--lg { padding: 1rem 2.4rem; font-size: .97rem; }
.btn--xl { padding: 1.15rem 2.75rem; font-size: 1.05rem; border-radius: 10px; }
.btn--full { width: 100%; justify-content: center; }

/* ---- BADGE ---- */
.badge {
  display: inline-block;
  font-family: var(--font-mono); font-size: .62rem;
  padding: .15em .6em; border-radius: 4px;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.badge--wip { background: rgba(245,200,66,.1); color: var(--yellow); border: 1px solid rgba(245,200,66,.3); }

/* ---- SECTIONS ---- */
.section {
  position: relative; z-index: 1;
  padding: 6rem 2.5rem;
  max-width: 1220px; margin: 0 auto;
}

.section--alt {
  max-width: 100%; background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--alt > * { max-width: 1220px; margin-left: auto; margin-right: auto; }

.section__header { margin-bottom: 3.5rem; }

.section__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,212,170,.08); border: 1px solid rgba(0,212,170,.18);
  border-radius: 99px; padding: .3rem .85rem;
  font-size: .72rem; font-weight: 700; color: var(--teal);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1rem;
}

.section__num {
  font-family: var(--font-mono); font-size: .68rem;
  color: var(--teal); letter-spacing: .16em; text-transform: uppercase;
  display: block; margin-bottom: .6rem;
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--text-h);
  letter-spacing: -.025em; line-height: 1.15;
}

.section__title-grad {
  background: linear-gradient(135deg, var(--teal) 0%, var(--violet-h) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.section__sub {
  font-size: .98rem; color: var(--muted);
  margin-top: .75rem; max-width: 600px; line-height: 1.75;
}

.section__cta { text-align: center; margin-top: 3rem; }

/* ---- CARDS ---- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.cards--full { grid-template-columns: 1fr; }

.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column; gap: .75rem;
  box-shadow: var(--shadow-card); position: relative;
}

.card:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: var(--shadow-hover); background: var(--bg-card-h); }
.card--h { flex-direction: row; gap: 2rem; align-items: flex-start; }

.card__icon { font-size: 1.85rem; }
.card__icon--lg { font-size: 2.75rem; flex-shrink: 0; }

.card__tag {
  font-family: var(--font-mono); font-size: .65rem; color: var(--teal);
  background: rgba(0,212,170,.08); padding: .2em .65em; border-radius: 4px;
  display: inline-block; border: 1px solid rgba(0,212,170,.2);
}

.card__title { font-size: 1.1rem; font-weight: 700; color: var(--text-h); letter-spacing: -.01em; }
.card__desc { font-size: .875rem; color: var(--muted); flex: 1; line-height: 1.7; }

.card__features { list-style: none; font-size: .82rem; color: var(--muted); display: flex; flex-direction: column; gap: .35rem; }
.card__features li::before { content: '→ '; color: var(--teal); }

.card__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: .75rem; border-top: 1px solid var(--border);
}

.card__body { flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.card__side { display: flex; flex-direction: column; gap: .75rem; align-items: flex-end; flex-shrink: 0; }
.card__price { font-family: var(--font-mono); font-size: 1.1rem; color: var(--teal); font-weight: 700; }
.card__price--lg { font-size: 1.6rem; }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 2.5rem 3rem;
  max-width: 1220px; margin: 0 auto;
}

.service-item {
  padding: 1.75rem; border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: var(--bg-card);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: var(--shadow-card);
}
.service-item:hover { border-color: var(--border-h); box-shadow: var(--shadow-hover); background: var(--bg-card-h); }

.service-item__icon { font-size: 1.5rem; display: block; margin-bottom: .6rem; }
.service-item__title { font-size: .95rem; font-weight: 700; color: var(--text-h); margin-bottom: .4rem; }
.service-item__desc { font-size: .83rem; color: var(--muted); line-height: 1.65; }

/* ---- SERVICES DETAIL ---- */
.services-detail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-card);
}
.service-card:hover { border-color: var(--border-h); box-shadow: var(--shadow-hover); }

.service-card__num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--font-mono); font-size: 1.8rem;
  color: rgba(255,255,255,.04); font-weight: 700;
}
.service-card__icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.service-card__title { font-size: 1.15rem; font-weight: 700; color: var(--text-h); margin-bottom: .75rem; }
.service-card__desc { font-size: .875rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.7; }

/* ---- TECH PILLS ---- */
.tech-pills { display: flex; flex-wrap: wrap; gap: .4rem; }

.pill {
  font-family: var(--font-mono); font-size: .65rem; color: var(--muted);
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  padding: .22em .75em; border-radius: 99px;
}
.pill--primary { color: var(--teal); border-color: rgba(0,212,170,.22); background: rgba(0,212,170,.06); }

/* ---- STATS STRIP ---- */
.stats-strip {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg-card); overflow: hidden;
}

.stat-item {
  flex: 1; min-width: 160px;
  padding: 2rem 2.5rem; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-item__num {
  font-family: var(--font-mono); font-size: 2.2rem;
  font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--teal), var(--violet-h));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: .4rem;
}

.stat-item__label {
  font-size: .78rem; color: var(--muted); font-weight: 500;
  text-transform: uppercase; letter-spacing: .06em;
}

/* ---- CTA BAND ---- */
.cta-band {
  position: relative; z-index: 1;
  text-align: center; padding: 7rem 2rem;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(0,212,170,.06) 0%, rgba(124,58,237,.06) 100%);
  border-top: 1px solid var(--border);
}

.cta-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(0,212,170,.1), transparent);
}

.cta-band__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.cta-band h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; color: var(--text-h);
  letter-spacing: -.025em; margin-bottom: 1rem; line-height: 1.15;
}

.cta-band p { color: var(--text); margin-bottom: 2.25rem; font-size: 1.02rem; line-height: 1.75; }
.cta-band__sub { margin-top: 1.25rem; font-size: .78rem; color: var(--muted); }
.cta-band__sub a { color: var(--teal); }
.cta-band__sub a:hover { color: var(--teal-h); }

/* ---- PAGE HERO ---- */
.page-hero {
  position: relative; z-index: 1;
  padding: 130px 2.5rem 4.5rem;
  background: linear-gradient(160deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 60% 0%, rgba(0,212,170,.06), transparent);
}
.page-hero__inner { max-width: 1220px; margin: 0 auto; position: relative; z-index: 1; }

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800; color: var(--text-h);
  letter-spacing: -.025em; margin: .6rem 0 .85rem; line-height: 1.15;
}
.page-hero__sub { font-size: 1.05rem; color: var(--text); line-height: 1.75; max-width: 680px; }

.back-link {
  font-family: var(--font-mono); font-size: .72rem; color: var(--muted);
  margin-bottom: 1.5rem; display: inline-flex; align-items: center; gap: .35rem;
  text-transform: uppercase; letter-spacing: .08em; transition: color var(--transition);
}
.back-link:hover { color: var(--teal); }

/* ---- PRODUCT HERO ---- */
.product-hero { display: flex; align-items: center; gap: 1.5rem; margin-top: 1rem; }
.product-hero__icon { font-size: 4rem; line-height: 1; }

/* ---- PRODUCT DETAIL ---- */
.product-detail { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }

.detail-heading {
  font-size: .8rem; font-weight: 700; color: var(--text-h);
  margin: 2rem 0 1rem; padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em;
}
.detail-heading:first-child { margin-top: 0; }
.detail-desc { font-size: .93rem; color: var(--text); line-height: 1.8; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.feature-list__item { display: flex; gap: .75rem; font-size: .875rem; color: var(--text); }
.feature-list__check { color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ---- BUY BOX ---- */
.buy-box {
  background: var(--bg-card); border: 1px solid var(--border-h);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: sticky; top: 84px; box-shadow: var(--shadow-card);
}
.buy-box__price { font-family: var(--font-mono); font-size: 2rem; font-weight: 700; color: var(--text-h); }
.buy-box__currency { font-size: 1rem; color: var(--muted); font-weight: 400; }
.buy-box__note { font-size: .78rem; color: var(--muted); line-height: 1.5; }
.buy-box__cta { width: 100%; text-align: center; justify-content: center; margin-bottom: .75rem; font-size: 1rem; padding: .875rem; }
.buy-box__perks {
  list-style: none; display: flex; flex-direction: column; gap: .4rem;
  margin-top: .5rem; padding-top: 1rem; border-top: 1px solid var(--border);
}
.buy-box__perks li { font-size: .825rem; color: var(--text); }
.buy-box__gallery-hint { margin-top: .5rem; color: var(--muted); }

/* ---- ABOUT ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-lead { font-size: 1.1rem; color: var(--text-h); font-weight: 600; line-height: 1.8; margin-bottom: 1.25rem; }
.about-text p { font-size: .93rem; color: var(--text); margin-bottom: 1rem; line-height: 1.8; }
.about-stack__heading { font-family: var(--font-mono); font-size: .72rem; color: var(--teal); margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: .12em; }
.stack-groups { display: flex; flex-direction: column; gap: 1.4rem; }
.stack-group { display: flex; flex-direction: column; gap: .5rem; }
.stack-group__label { font-family: var(--font-mono); font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item__icon { font-size: 1.5rem; }
.contact-item__label { font-family: var(--font-mono); font-size: .65rem; color: var(--muted); display: block; margin-bottom: .25rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-item__val { font-size: .93rem; color: var(--text-h); display: block; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }

.form-group label {
  font-size: .68rem; font-weight: 700; color: var(--muted);
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .72rem 1rem;
  color: var(--text-h); font-family: var(--font-body); font-size: .93rem;
  outline: none; transition: border-color var(--transition); resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,212,170,.1);
}
.form-group select { appearance: none; cursor: pointer; }

.form-notice {
  background: rgba(0,212,170,.06); border: 1px solid rgba(0,212,170,.2);
  border-radius: var(--radius); padding: .65rem 1rem;
  font-size: .82rem; color: var(--teal);
}

/* ---- FOOTER ---- */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border); padding: 3.5rem 2.5rem 2rem;
  background: var(--bg-alt);
}
.footer__inner {
  max-width: 1220px; margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 2.5rem;
}
.footer__brand p { font-size: .82rem; color: var(--muted); margin-top: .5rem; line-height: 1.65; max-width: 300px; }
.footer__brand-name {
  font-family: var(--font-mono); font-size: .95rem; font-weight: 700;
  color: var(--text-h); display: block; margin-bottom: .5rem;
}

.footer__col-title {
  font-family: var(--font-mono); font-size: .62rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .12em;
  display: block; margin-bottom: .875rem;
}

.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a { font-size: .85rem; color: var(--muted); font-weight: 500; transition: color var(--transition); }
.footer__links a:hover { color: var(--teal); }
.footer__copy { font-family: var(--font-mono); font-size: .65rem; color: var(--muted); }

/* ---- DIVIDER ---- */
.divider { height: 1px; background: var(--border); margin: 0; border: none; }

/* ---- SERVICES grid cards ---- */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.srv-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-card);
}
.srv-card:hover { transform: translateY(-5px); border-color: var(--border-h); box-shadow: var(--shadow-hover); }

.srv-card__thumb { aspect-ratio: 16/9; background: var(--bg-alt); overflow: hidden; }
.srv-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.srv-card:hover .srv-card__thumb img { transform: scale(1.05); }

.srv-card__no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}

.srv-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .6rem; }
.srv-card__title { font-size: 1.05rem; color: var(--text-h); font-weight: 700; }
.srv-card__desc { color: var(--text); font-size: .875rem; line-height: 1.6; flex: 1; }
.srv-card__btn { align-self: flex-start; margin-top: .5rem; }

/* Modal */
.svc-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  z-index: 9000; opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s; padding: 1rem;
}
.svc-modal-overlay.is-open { opacity: 1; visibility: visible; }

.svc-modal {
  background: var(--bg-card); border: 1px solid var(--border-h);
  border-radius: var(--radius-lg); width: min(680px, 100%);
  max-height: 88vh; overflow-y: auto; padding: 2.5rem; position: relative;
  transform: translateY(18px) scale(.98); transition: transform .3s;
  scrollbar-width: thin; scrollbar-color: var(--border-h) transparent;
}
.svc-modal-overlay.is-open .svc-modal { transform: translateY(0) scale(1); }

.svc-modal__close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.06); border: none; color: var(--text);
  font-size: 1.1rem; cursor: pointer; width: 32px; height: 32px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.svc-modal__close:hover { background: rgba(255,255,255,.12); color: var(--text-h); }
.svc-modal__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 10px; margin-bottom: 1.5rem; display: block; }
.svc-modal__title { font-size: 1.4rem; color: var(--text-h); font-weight: 700; margin-bottom: .75rem; }
.svc-modal__desc { color: var(--text); line-height: 1.75; margin-bottom: 1.5rem; }
.svc-modal__actions { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }

.svc-modal__wa {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25D366; color: #fff; padding: .7rem 1.4rem;
  border-radius: 8px; font-weight: 700; font-size: .875rem;
  transition: background .2s; text-decoration: none;
}
.svc-modal__wa:hover { background: #1ebe5d; color: #fff; }

/* ---- PRODUCTS ---- */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

.prod-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-card);
}
.prod-card:hover { transform: translateY(-5px); border-color: var(--border-h); box-shadow: var(--shadow-hover); }
.prod-card__link { display: flex; flex-direction: column; flex: 1; color: inherit; text-decoration: none; }

.prod-card__thumb { aspect-ratio: 4/3; background: var(--bg-alt); overflow: hidden; position: relative; }
.prod-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.prod-card:hover .prod-card__thumb img { transform: scale(1.05); }

.prod-card__no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: .5;
}

.prod-card__badge {
  position: absolute; top: .6rem; left: .6rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: 4px; pointer-events: none;
}
.prod-card__badge--free { background: var(--green); color: #fff; }
.prod-card__badge--wip  { background: var(--yellow); color: #060c18; }
.prod-card--wip { opacity: .85; }
.prod-card--wip:hover { transform: none; }
.prod-card__price--free { color: var(--green); }

.prod-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.prod-card__name { font-size: 1rem; color: var(--text-h); font-weight: 700; line-height: 1.35; }
.prod-card__desc { color: var(--text); font-size: .855rem; line-height: 1.55; flex: 1; }

.prod-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: .875rem; padding-top: .75rem; border-top: 1px solid var(--border);
  gap: .5rem; flex-wrap: wrap;
}
.prod-card__price { font-family: var(--font-mono); font-size: 1rem; font-weight: 700; color: var(--teal); }

/* ---- PRODUCT GALLERY/VIDEO ---- */
.prod-yt {
  position: relative; width: 100%; padding-top: 56.25%;
  border-radius: var(--radius-lg); overflow: hidden; background: #000; margin-bottom: 2rem;
}
.prod-yt__frame { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }

.prod-gallery { margin-bottom: 2rem; }
.prod-gallery__main {
  display: block; position: relative; aspect-ratio: 16/9;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-alt); cursor: zoom-in; margin-bottom: .75rem;
}
.prod-gallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.prod-gallery__main:hover img { transform: scale(1.03); }
.prod-gallery__zoom-hint {
  position: absolute; bottom: .75rem; right: .75rem;
  background: rgba(0,0,0,.65); color: #fff;
  font-size: .72rem; padding: .3rem .65rem; border-radius: 20px;
  pointer-events: none; opacity: 0; transition: opacity .2s;
}
.prod-gallery__main:hover .prod-gallery__zoom-hint { opacity: 1; }

.prod-gallery__thumbs { display: flex; gap: .5rem; flex-wrap: wrap; }
.prod-gallery__thumb {
  width: 72px; height: 54px; border-radius: 7px; overflow: hidden;
  cursor: pointer; border: 2px solid transparent; background: none; padding: 0; transition: border-color .2s;
}
.prod-gallery__thumb:hover, .prod-gallery__thumb.is-active { border-color: var(--teal); }
.prod-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- CHECKOUT ---- */
.checkout-result { min-height: 65vh; display: flex; align-items: center; justify-content: center; }
.checkout-result__card {
  background: var(--bg-card); border: 1px solid var(--border-h);
  border-radius: var(--radius-lg); padding: 3rem 2.5rem;
  text-align: center; max-width: 540px; width: 100%;
}
.checkout-result__icon {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 1.5rem;
}
.checkout-result__icon--success { background: rgba(34,197,94,.15); color: var(--green); }
.checkout-result__icon--warn    { background: rgba(245,200,66,.15); color: var(--yellow); }
.checkout-result__icon--cancel  { background: rgba(255,87,87,.15); color: var(--red); }

.checkout-result__title { font-size: 1.75rem; color: var(--text-h); margin-bottom: .75rem; }
.checkout-result__msg { color: var(--text); line-height: 1.65; margin-bottom: 1.5rem; }
.checkout-result__download { margin: 1.5rem 0; }
.checkout-result__dl-note { color: var(--text); font-size: .9rem; margin-bottom: 1.25rem; }
.checkout-result__dl-hint { margin-top: 1rem; font-size: .8rem; color: var(--muted); }
.checkout-result__dl-hint code { color: var(--teal); font-family: var(--font-mono); word-break: break-all; }
.checkout-result__pending { color: var(--muted); }
.checkout-result__nav { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

.spinner {
  width: 36px; height: 36px; border: 3px solid var(--border);
  border-top-color: var(--teal); border-radius: 50%;
  animation: spin .8s linear infinite; margin: 1rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- MOBILE BUY BAR ---- */
.mobile-buy-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: rgba(6,12,24,.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); padding: .75rem 1.5rem;
  align-items: center; justify-content: space-between; gap: 1rem;
}
.mobile-buy-bar__price { font-family: var(--font-mono); font-size: 1rem; color: var(--teal); font-weight: 700; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; min-height: auto; }
  .hero__card { max-width: 480px; }
  .product-detail { grid-template-columns: 1fr; }
  .buy-box { position: static; }
  .mobile-buy-bar { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .card--h { flex-direction: column; }
  .card__side { align-items: flex-start; }
}

@media (max-width: 640px) {
  .nav { padding: 0 1.5rem; }
  .nav__links {
    display: none; flex-direction: column; position: fixed; top: 66px;
    left: 0; right: 0; background: var(--bg-alt); padding: 1.5rem;
    border-bottom: 1px solid var(--border); gap: 1rem;
  }
  .nav__links.is-open { display: flex; }
  .nav__burger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .hero { padding: 100px 1.5rem 3rem; }
  .section { padding: 4rem 1.5rem; }
  .services-grid { padding: 0 1.5rem 2rem; }
  .srv-grid, .prod-grid { grid-template-columns: 1fr; }
  .svc-modal { padding: 1.5rem; }
  .checkout-result__card { padding: 2rem 1.5rem; }
  .stats-strip { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__inner > * { animation: fadeUp .65s ease both; }
.hero__badge   { animation-delay: .05s; }
.hero__title   { animation-delay: .15s; }
.hero__sub     { animation-delay: .25s; }
.hero__actions { animation-delay: .35s; }
.hero__trust   { animation-delay: .45s; }
.hero__card    { animation: fadeUp .8s .2s ease both; }
