/* ============================================================
   BEMBÉ — Estilos Completos
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Space+Mono:wght@400;700&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --orange: #E85D04;
  --orange-light: #F48C06;
  --dark: #0A0602;
  --dark2: #110A03;
  --dark3: #1A0F06;
  --dark4: #231408;
  --border: rgba(255, 255, 255, 0.07);
  --muted: rgba(255, 255, 255, 0.45);
  --mid: rgba(255, 255, 255, 0.70);
  --f-display: 'Syne', sans-serif;
  --f-mono: 'Space Mono', monospace;
  --f-body: 'DM Sans', sans-serif;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--dark);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }
img { max-width: 100%; display: block; }

.accent { color: var(--orange); }
.italic { font-style: italic; color: rgba(255,255,255,0.55); }

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  transition: background 0.4s, border-color 0.4s;
}
.nav.scrolled {
  background: rgba(10, 6, 2, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__links {
  display: flex; gap: 28px;
}
.nav__links a {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s;
}
.nav__links a:hover { color: #fff; }
.nav__logo {
  font-family: var(--f-display); font-weight: 800;
  font-size: 22px; letter-spacing: -0.02em;
}
.nav__logo span { color: var(--orange); }
.nav__cta {
  background: var(--orange); color: #fff;
  padding: 9px 22px; border-radius: 2px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
}
.nav__cta:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}
.nav__burger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.nav__burger span {
  width: 22px; height: 2px; background: #fff;
  transition: all 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav__drawer {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 6, 2, 0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.nav__drawer.open { opacity: 1; pointer-events: all; }
.nav__drawer a {
  font-family: var(--f-display); font-weight: 700; font-size: 28px;
  letter-spacing: -0.02em; transition: color 0.3s;
}
.nav__drawer a:hover { color: var(--orange); }

/* ═══════════════ BOTONES ═══════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 2px;
  transition: all 0.3s; cursor: pointer;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 93, 4, 0.4);
}
.btn-ghost {
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.btn-arrow { transition: transform 0.3s; }
.btn-ghost:hover .btn-arrow { transform: rotate(45deg); }

/* ═══════════════ SECCIÓN LABEL ═══════════════ */
.label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.label__line { width: 24px; height: 1px; background: var(--orange); }
.label__text {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted);
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 0 48px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1A0A02 0%, #2D1205 40%, #4A1E08 70%, #6B2F0C 100%);
}
.hero__orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}
.hero__orb--1 {
  width: 520px; height: 520px;
  background: rgba(232, 93, 4, 0.20);
  top: -80px; right: -80px;
}
.hero__orb--2 {
  width: 300px; height: 300px;
  background: rgba(244, 140, 6, 0.10);
  bottom: 80px; left: 15%;
  animation-delay: -4s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(26px, -18px) scale(1.04); }
  66% { transform: translate(-18px, 13px) scale(0.96); }
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 650px; margin-top: 80px;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.hero__eyebrow-line { width: 32px; height: 1px; background: var(--orange); }
.hero__eyebrow-text {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.hero__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(48px, 7vw, 90px);
  line-height: 0.95; letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero__desc {
  font-size: 16px; line-height: 1.75;
  color: var(--mid); font-weight: 300;
  max-width: 440px; margin-bottom: 44px;
}
.hero__btns {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.hero__tags {
  position: absolute; right: 48px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px;
  z-index: 2; text-align: right;
}
.hero__tag {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.30);
  transition: color 0.5s;
}
.hero__tag.active { color: #fff; }
.hero__scroll {
  position: absolute; bottom: 48px; right: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.hero__scroll-text {
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); writing-mode: vertical-lr;
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.hero__platforms {
  position: absolute; bottom: 48px; left: 48px; right: 200px;
  display: flex; align-items: center; gap: 32px;
  z-index: 2; flex-wrap: wrap;
}
.hero__platforms-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
}
.hero__platforms-list {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.hero__platform {
  font-family: var(--f-display); font-size: 13px; font-weight: 600;
  color: rgba(255, 255, 255, 0.26);
}

/* ═══════════════ MARQUEE ═══════════════ */
.marquee {
  background: var(--orange);
  padding: 14px 0; overflow: hidden;
}
.marquee__track {
  display: flex;
  animation: marqueeRun 22s linear infinite;
  white-space: nowrap;
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 28px;
  font-family: var(--f-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.65);
}
.marquee__dot {
  width: 5px; height: 5px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}
@keyframes marqueeRun {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════ ABOUT ═══════════════ */
.about {
  background: var(--dark2);
  padding: 120px 48px;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.about__desc {
  font-size: 15px; line-height: 1.8;
  color: var(--mid); font-weight: 300;
  max-width: 460px; margin-bottom: 40px;
}
.about__visual-wrap { position: relative; }
.about__visual {
  width: 100%; aspect-ratio: 4/5;
  background: var(--dark3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden; position: relative;
}
.about__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(232, 93, 4, 0.25) 0%, transparent 70%);
}
.about__lines {
  position: absolute; top: 50%; left: 32px; right: 32px;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 8px;
}
.about__line {
  height: 1px; background: var(--border);
  position: relative; overflow: hidden;
}
.about__line::after {
  content: ''; position: absolute;
  top: 0; left: -60%; width: 60%; height: 100%;
  background: var(--orange);
  animation: lineFill 3s ease-in-out infinite;
}
.about__line:nth-child(2)::after { animation-delay: 0.5s; }
.about__line:nth-child(3)::after { animation-delay: 1s; }
.about__line:nth-child(4)::after { animation-delay: 1.5s; }
.about__line:nth-child(5)::after { animation-delay: 0.3s; }
.about__line:nth-child(6)::after { animation-delay: 0.8s; }
@keyframes lineFill {
  0% { left: -60%; }
  100% { left: 120%; }
}
.about__quote {
  position: absolute; bottom: 32px; left: 32px; right: 32px;
}
.about__quote-text {
  font-family: var(--f-display); font-size: 20px; font-weight: 700;
  line-height: 1.3; margin-bottom: 12px;
}
.about__quote-author {
  font-size: 11px; color: var(--muted); font-family: var(--f-mono);
}
.about__badge {
  position: absolute; top: -20px; right: -20px;
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--orange);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 2;
}
.about__badge-num {
  font-family: var(--f-display); font-weight: 800;
  font-size: 26px; line-height: 1;
}
.about__badge-text {
  font-size: 9px; letter-spacing: 0.10em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.7);
  font-family: var(--f-mono);
}

/* ═══════════════ STATS ═══════════════ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--border);
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border);
}
.stat {
  background: rgba(255, 255, 255, 0.03);
  padding: 26px 20px;
}
.stat__dot {
  width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  margin-bottom: 12px;
}
.stat__num {
  font-family: var(--f-display); font-weight: 800;
  font-size: 38px; line-height: 1;
  margin-bottom: 5px;
}
.stat__lbl {
  font-size: 11px; color: var(--muted);
  font-family: var(--f-mono);
}

/* ═══════════════ SERVICES ═══════════════ */
.services {
  background: var(--dark);
  padding: 120px 48px;
}
.services__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: 1200px; margin: 0 auto 72px;
  flex-wrap: wrap; gap: 24px;
}
.services__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.0; letter-spacing: -0.03em;
  max-width: 500px;
}
.services__desc {
  max-width: 320px;
  font-size: 14px; line-height: 1.7;
  color: var(--muted); font-weight: 300;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 2px;
  max-width: 1200px; margin: 0 auto;
  background: var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.service-card {
  background: var(--dark3);
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background 0.4s;
  display: block; color: #fff;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(232, 93, 4, 0.16) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: var(--dark4); }
.service-card__num {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--orange); letter-spacing: 0.10em;
  margin-bottom: 28px;
}
.service-card__icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(232, 93, 4, 0.10);
  border: 1px solid rgba(232, 93, 4, 0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
  transition: all 0.3s;
}
.service-card:hover .service-card__icon {
  background: rgba(232, 93, 4, 0.22);
  transform: scale(1.06) rotate(-3deg);
}
.service-card__name {
  font-family: var(--f-display); font-weight: 700;
  font-size: 19px; margin-bottom: 10px;
  transition: color 0.3s;
}
.service-card:hover .service-card__name { color: var(--orange); }
.service-card__desc {
  font-size: 13px; line-height: 1.7;
  color: var(--muted); font-weight: 300;
  margin-bottom: 22px;
}
.service-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 22px;
}
.service-card__tag {
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--muted);
  transition: all 0.3s;
}
.service-card:hover .service-card__tag {
  border-color: rgba(232, 93, 4, 0.3);
  color: rgba(255, 255, 255, 0.6);
}
.service-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange);
  transition: gap 0.3s;
}
.service-card:hover .service-card__cta { gap: 14px; }

/* ═══════════════ PROCESS ═══════════════ */
.process {
  background: var(--dark2);
  padding: 120px 48px;
}
.process__header {
  text-align: center;
  max-width: 600px; margin: 0 auto 80px;
}
.process__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.process__sub {
  font-size: 14px; line-height: 1.7;
  color: var(--muted); font-weight: 300;
}
.process__wrap {
  max-width: 1100px; margin: 0 auto;
  position: relative;
}
.process__line {
  position: absolute; top: 32px; left: 5%; right: 5%;
  height: 1px; background: var(--border);
}
.process__fill {
  height: 100%; background: var(--orange);
  width: 0; transition: width 1.6s ease;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative; z-index: 1;
}
.process__step { padding: 0 16px; text-align: center; }
.process__dot {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--dark2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--f-mono); font-size: 13px;
  color: var(--muted);
  position: relative; z-index: 1;
  transition: all 0.4s;
}
.process__dot.active {
  border-color: var(--orange);
  background: rgba(232, 93, 4, 0.1);
  color: var(--orange);
  box-shadow: 0 0 24px rgba(232, 93, 4, 0.28);
}
.process__step-name {
  font-family: var(--f-display); font-weight: 700;
  font-size: 15px; margin-bottom: 10px;
  color: var(--muted);
}
.process__step-name.active { color: #fff; }
.process__step-desc {
  font-size: 12px; line-height: 1.6;
  color: var(--muted); font-weight: 300;
}

/* ═══════════════ WHY ═══════════════ */
.why {
  background: var(--dark);
  padding: 120px 48px;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
  max-width: 1200px; margin: 0 auto;
}
.why__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.0; letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.why__desc {
  font-size: 15px; line-height: 1.8;
  color: var(--mid); font-weight: 300;
  margin-bottom: 40px;
}
.features {
  border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.feature {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.feature:last-child { border-bottom: none; }
.feature:hover { background: rgba(255, 255, 255, 0.03); }
.feature__icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(232, 93, 4, 0.10);
  border: 1px solid rgba(232, 93, 4, 0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.feature__title {
  display: block;
  font-family: var(--f-display); font-size: 14px; font-weight: 700;
  margin-bottom: 3px;
}
.feature__desc {
  font-size: 12px; color: var(--muted); line-height: 1.5;
}
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr; gap: 16px;
}
.card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 93, 4, 0.3);
}
.card:nth-child(2) { margin-top: 32px; }
.card:nth-child(4) { margin-top: -32px; }
.card__glow {
  position: absolute; top: -30px; right: -30px;
  width: 100px; height: 100px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.card__emoji { font-size: 28px; margin-bottom: 14px; }
.card__title {
  font-family: var(--f-display); font-weight: 700;
  font-size: 16px; margin-bottom: 8px;
}
.card__text {
  font-size: 12px; line-height: 1.6;
  color: var(--muted); font-weight: 300;
}

/* ═══════════════ CONTACT ═══════════════ */
.contact {
  padding: 120px 48px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1A0A02 0%, #2D1205 50%, #4A1E08 100%);
}
.contact::before {
  content: ''; position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.28) 0%, transparent 70%);
  pointer-events: none;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr; gap: 80px;
  align-items: start;
  max-width: 1000px; margin: 0 auto;
  position: relative; z-index: 1;
}
.contact__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.0; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.contact__desc {
  font-size: 15px; line-height: 1.8;
  color: var(--mid); font-weight: 300;
  margin-bottom: 36px;
}
.contact__info {
  display: flex; flex-direction: column; gap: 14px;
  font-style: normal;
}
.contact__info-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--muted);
  font-family: var(--f-mono); letter-spacing: 0.04em;
}
.contact__info-dot {
  color: var(--orange); font-size: 10px;
}

/* ═══════════════ FORM ═══════════════ */
.form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form__group { margin-bottom: 18px; }
.form__label {
  display: block;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.form__input, .form__select, .form__textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  color: #fff; font-size: 13px;
  font-family: var(--f-body);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  border-color: rgba(232, 93, 4, 0.5);
  background: rgba(232, 93, 4, 0.04);
}
.form__input::placeholder, .form__textarea::placeholder {
  color: var(--muted);
}
.form__textarea {
  resize: vertical; min-height: 120px;
}
.form__select option {
  background: var(--dark3); color: #fff;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr; gap: 16px;
}
.form__honey {
  position: absolute; left: -9999px;
  opacity: 0; pointer-events: none;
}
.form__error {
  font-size: 11px; color: #ff6b6b;
  margin-top: 5px; display: none;
  font-family: var(--f-mono);
}
.form__error.show { display: block; }
.form__submit {
  width: 100%;
  background: var(--orange); color: #fff;
  padding: 14px; border-radius: 6px;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.3s; margin-top: 8px;
  cursor: pointer;
}
.form__submit:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 93, 4, 0.4);
}
.form__submit:disabled {
  opacity: 0.55; transform: none; cursor: not-allowed;
}
.form__success {
  display: none; text-align: center; padding: 56px 24px;
}
.form__success-icon { font-size: 52px; margin-bottom: 18px; }
.form__success-title {
  font-family: var(--f-display); font-size: 24px; font-weight: 700;
  margin-bottom: 12px;
}
.form__success-desc {
  font-size: 14px; color: var(--muted); line-height: 1.7;
}

/* ═══════════════ TOAST ═══════════════ */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 1000;
  background: var(--dark3);
  border: 1px solid rgba(232, 93, 4, 0.25);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex; align-items: center; gap: 14px;
  transform: translateX(130%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 340px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.toast.show { transform: translateX(0); }
.toast__icon { font-size: 22px; flex-shrink: 0; }
.toast__title {
  display: block;
  font-family: var(--f-display); font-size: 14px; font-weight: 700;
  margin-bottom: 2px;
}
.toast__msg {
  font-size: 12px; color: var(--muted); line-height: 1.4;
}

/* ═══════════════ REVEAL ═══════════════ */
.reveal, .reveal-l, .reveal-r {
  opacity: 0;
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal { transform: translateY(36px); }
.reveal-l { transform: translateX(-36px); }
.reveal-r { transform: translateX(36px); }
.reveal.on, .reveal-l.on, .reveal-r.on {
  opacity: 1; transform: none;
}
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }
.d5 { transition-delay: 0.50s; }

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--dark2);
  padding: 64px 48px 40px;
  border-top: 1px solid var(--border);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.footer__logo {
  font-family: var(--f-display); font-weight: 800;
  font-size: 26px; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.footer__logo span { color: var(--orange); }
.footer__desc {
  font-size: 13px; line-height: 1.7;
  color: var(--muted); font-weight: 300;
  max-width: 280px;
}
.footer__col-title {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.footer__links {
  display: flex; flex-direction: column; gap: 10px;
}
.footer__links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s; font-weight: 300;
}
.footer__links a:hover { color: var(--orange); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 1200px; margin: 0 auto;
}
.footer__copy {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.06em; color: var(--muted);
}
.footer__bottom-links {
  display: flex; gap: 24px;
}
.footer__bottom-links a {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--muted); transition: color 0.3s;
}
.footer__bottom-links a:hover { color: var(--orange); }

/* ═══════════════ PRODUCT PAGES ═══════════════ */
.prod-hero {
  min-height: 72vh;
  display: flex; align-items: center;
  padding: 140px 48px 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0A0602 0%, #1A0A02 50%, #2D1205 100%);
}
.prod-back {
  position: absolute; top: 90px; left: 48px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.prod-back:hover { color: var(--orange); }
.prod-back span { font-size: 16px; transition: transform 0.3s; }
.prod-back:hover span { transform: translateX(-4px); }
.prod-badge {
  display: inline-block;
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.25);
  border-radius: 100px;
  padding: 5px 16px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.prod-title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95; letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.prod-subtitle {
  font-size: 17px; line-height: 1.75;
  color: var(--mid); font-weight: 300;
  max-width: 520px; margin-bottom: 40px;
}
.prod-stats {
  display: flex; gap: 40px;
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.prod-stat__num {
  font-family: var(--f-display); font-weight: 800;
  font-size: 32px; line-height: 1;
  margin-bottom: 4px;
}
.prod-stat__lbl {
  font-size: 11px; color: var(--muted);
  font-family: var(--f-mono);
}
.prod-benefits {
  padding: 100px 48px;
  background: var(--dark2);
}
.prod-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 2px;
  max-width: 1100px; margin: 0 auto;
  background: var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.prod-benefit {
  background: var(--dark3);
  padding: 36px 32px;
  transition: background 0.3s;
}
.prod-benefit:hover { background: var(--dark4); }
.prod-benefit__icon { font-size: 32px; margin-bottom: 18px; }
.prod-benefit__title {
  font-family: var(--f-display); font-weight: 700;
  font-size: 17px; margin-bottom: 10px;
}
.prod-benefit__text {
  font-size: 13px; line-height: 1.7;
  color: var(--muted); font-weight: 300;
}
.prod-features {
  padding: 100px 48px;
  background: var(--dark);
}
.prod-features__inner {
  max-width: 1100px; margin: 0 auto;
}
.prod-features__header {
  text-align: center;
  max-width: 600px; margin: 0 auto 72px;
}
.prod-features__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.prod-features__sub {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; font-weight: 300;
}
.prod-feature-list {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.prod-feature-item {
  background: var(--dark3);
  padding: 26px 34px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 20px; align-items: center;
  transition: background 0.3s;
}
.prod-feature-item:hover { background: var(--dark4); }
.prod-feature-num {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--orange);
}
.prod-feature-name {
  font-family: var(--f-display); font-weight: 700;
  font-size: 16px; margin-bottom: 4px;
}
.prod-feature-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.5; font-weight: 300;
}
.prod-feature-tag {
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(232, 93, 4, 0.25);
  border-radius: 2px;
  color: var(--orange);
  white-space: nowrap;
}
.prod-cta {
  padding: 120px 48px;
  text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1A0A02, #4A1E08);
}
.prod-cta::before {
  content: ''; position: absolute;
  top: -150px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.24) 0%, transparent 70%);
  pointer-events: none;
}
.prod-cta__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(232, 93, 4, 0.3);
  border-radius: 100px;
  padding: 6px 20px; margin-bottom: 28px;
}
.prod-cta__dot {
  width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
.prod-cta__dot-text {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--mid);
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
.prod-cta__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.0; letter-spacing: -0.03em;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.prod-cta__desc {
  font-size: 15px; line-height: 1.75;
  color: var(--mid); font-weight: 300;
  max-width: 480px; margin: 0 auto 44px;
  position: relative; z-index: 1;
}
.prod-cta__btns {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ═══════════════ 404 ═══════════════ */
.page-404 {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 48px;
  background: var(--dark);
}
.page-404__code {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(80px, 15vw, 180px); line-height: 1;
  color: var(--orange); opacity: 0.25;
  margin-bottom: -20px;
}
.page-404__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}
.page-404__desc {
  font-size: 16px; color: var(--muted);
  max-width: 400px; line-height: 1.7;
  margin-bottom: 40px;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero { padding: 0 24px; }
  .hero__tags, .hero__platforms, .hero__scroll { display: none; }
  .about, .services, .process, .why, .contact { padding: 80px 24px; }
  .about__grid, .why__grid, .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .services__grid, .prod-benefits__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process__line { display: none; }
  .cards { grid-template-columns: 1fr; }
  .card:nth-child(2), .card:nth-child(4) { margin-top: 0; }
  .form__row { grid-template-columns: 1fr; }
  .footer { padding: 48px 24px 32px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats { grid-template-columns: 1fr; }
  .prod-hero { padding: 120px 24px 60px; }
  .prod-back { left: 24px; }
  .prod-benefits, .prod-features, .prod-cta { padding: 70px 24px; }
  .prod-feature-item { grid-template-columns: 36px 1fr; }
  .prod-feature-tag { display: none; }
}

@media (max-width: 480px) {
  .hero__btns { flex-direction: column; align-items: flex-start; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .services__header { flex-direction: column; }
}
