/* ==========================================================
   VENTAPP · LANDING · STYLES
   ========================================================== */

:root {
  --black:        #0A0A0A;
  --black-2:      #0F0F10;
  --orange:       #F5A94D;
  --orange-soft:  rgba(245,169,77,0.12);
  --bronze:       #8B5A2B;
  --white:        #FFFFFF;
  --gray:         #9CA3AF;
  --gray-dim:     #6B7280;
  --gray-dark:    #1A1A1B;
  --cyan:         #5EB3D6;
  --green:        #4ADE80;
  --line:         rgba(255,255,255,0.08);
  --line-strong:  rgba(255,255,255,0.14);
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  --container: 1200px;
  --gutter: 24px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
}

/* ==========================================================
   RESET
   ========================================================== */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img,svg { max-width: 100%; display: block; }
ul,ol { list-style: none; padding: 0; margin: 0; }
blockquote { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.mono { font-family: var(--mono); }
::selection { background: var(--orange); color: var(--black); }

/* ==========================================================
   SCROLL REVEAL
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }

/* ==========================================================
   TYPOGRAPHY
   ========================================================== */
.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--orange);
  text-transform: uppercase;
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}
.display {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 24px;
}
.display-md {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 20px;
  text-align: center;
}
.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 700;
  margin: 0 0 52px;
  max-width: 820px;
}
.section-title-sm {
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 48px;
  max-width: 560px;
}
.accent { color: var(--orange); }
.lead {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--gray);
  margin: 0 0 32px;
  max-width: 520px;
}
.lead-center {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--gray);
  margin: 0 auto 40px;
  max-width: 560px;
  text-align: center;
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn-sm { padding: 9px 14px; font-size: 13px; }
.btn-primary { background: var(--orange); color: var(--black); }
.btn-primary:hover { transform: translateY(-1px); background: #F8B968; box-shadow: 0 8px 24px -8px rgba(245,169,77,0.4); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); }
.link-ghost { color: var(--gray); font-size: 14px; transition: color .15s; }
.link-ghost:hover { color: var(--white); }

/* ==========================================================
   NAV
   ========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 32px;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 14px;
}
.logo-mark {
  width: 28px; height: 28px;
  background: var(--orange);
  color: var(--black);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  color: var(--gray);
  transition: color .15s;
}
.nav-links a:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-hamburger {
  display: none;
  background: none;
  border: 0;
  padding: 6px 4px;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
  border-radius: 2px;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav { padding: 12px 18px; gap: 12px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 57px;
    left: 0; right: 0;
    background: rgba(8,8,9,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 18px 24px;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    z-index: 49;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    color: var(--white);
  }
  .nav-links a:last-child { border-bottom: 0; }
  .link-ghost { display: none; }
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  padding: 96px 0 0;
  overflow: hidden;
  background: var(--black);
}

/* Background glows */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-glow-top {
  position: absolute;
  width: 1000px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(139,90,43,0.38) 0%, transparent 65%);
  top: -350px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-glow-right {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,169,77,0.10) 0%, transparent 70%);
  right: -150px; top: 20%;
}
.hero-glow-left {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(94,179,214,0.07) 0%, transparent 70%);
  left: -150px; bottom: 5%;
}

/* Centered content block */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 64px;
  max-width: var(--container);
  margin: 0 auto;
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; justify-content: center; }
.chip {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid rgba(245,169,77,0.28);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(48px, 8.5vw, 100px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin: 0 auto 28px;
  max-width: 980px;
}
.hero-subtitle {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--gray);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 40px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* Stats pill */
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 18px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
}
.hero-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.hero-stats dd {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--orange);
  margin: 0;
  line-height: 1;
}
.hero-stats dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--gray);
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}
.hero-stats-sep {
  width: 1px;
  height: 36px;
  background: var(--line-strong);
  flex-shrink: 0;
}

/* 3D floating mockup */
.hero-mockup {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 64px auto 0;
  padding: 0 24px;
}
.hero-mockup-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 220px;
  background: radial-gradient(ellipse, rgba(245,169,77,0.22) 0%, rgba(139,90,43,0.12) 50%, transparent 70%);
  filter: blur(32px);
  pointer-events: none;
  z-index: -1;
}
.hero-window {
  transform: perspective(1800px) rotateX(7deg);
  transform-origin: center bottom;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 48px 96px -24px rgba(0,0,0,0.85),
    0 24px 48px -12px rgba(0,0,0,0.5);
}
.hero-window:hover {
  transform: perspective(1800px) rotateX(3deg);
}

.window {
  position: relative;
  z-index: 1;
  background: var(--black-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.03);
}
.window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.window-bar .dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-r { background: #F87171; }
.dot-y { background: #FBBF24; }
.dot-g { background: #4ADE80; }
.window-url {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gray);
  padding: 2px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

.dash { display: grid; grid-template-columns: 176px 1fr; min-height: 380px; }
.dash-side {
  border-right: 1px solid var(--line);
  padding: 16px 14px;
  font-size: 12px;
}
.dash-side-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray-dim);
  margin: 0 0 8px;
}
.dash-side ul li {
  padding: 6px 8px;
  color: var(--gray);
  border-radius: 4px;
  font-size: 12px;
}
.dash-side ul li.active {
  background: rgba(245,169,77,0.08);
  color: var(--orange);
}
.team li { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--gray); }
.pulse {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.dash-main { padding: 18px; min-width: 0; }
.dash-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.dash-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray-dim);
  margin: 0 0 4px;
  text-transform: uppercase;
}
.dash-main h3 { font-size: 14px; margin: 0; font-weight: 600; }
.dash-cta {
  background: var(--orange);
  color: var(--black);
  border: 0;
  border-radius: 5px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.kpis { display: grid; grid-template-columns: repeat(5,1fr); gap: 6px; margin-bottom: 14px; }
.kpi { background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 6px; padding: 8px; min-width: 0; }
.kpi-l { font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; color: var(--gray-dim); margin: 0 0 4px; text-transform: uppercase; }
.kpi-v { font-size: 18px; font-weight: 700; margin: 0; letter-spacing: -0.02em; }
.dash-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.dash-table thead th {
  text-align: left;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--gray-dim);
  font-weight: 500;
  padding: 6px;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
}
.dash-table tbody td { padding: 8px 6px; border-bottom: 1px solid var(--line); }
.dash-table tbody tr:last-child td { border-bottom: 0; }
.dash-table td.mono { font-family: var(--mono); font-size: 10px; color: var(--gray); }
.badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.badge-orange { background: rgba(245,169,77,0.12); color: var(--orange); }
.badge-bronze { background: rgba(139,90,43,0.18); color: #C68A52; }
.badge-green  { background: rgba(74,222,128,0.12); color: var(--green); }

@media (max-width: 1020px) {
  .hero { padding: 72px 0 0; }
  .dash { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .kpis { grid-template-columns: repeat(3,1fr); }
  .kpis .kpi:nth-child(4),
  .kpis .kpi:nth-child(5) { display: none; }
  .dash-table { overflow-x: auto; display: block; }
}
@media (max-width: 640px) {
  .hero { padding: 56px 0 0; }
  .hero-title { letter-spacing: -0.03em; }
  .hero-stats { gap: 16px; padding: 14px 20px; flex-wrap: wrap; border-radius: 16px; }
  .hero-stats-sep { display: none; }
  .hero-stats dd { font-size: 22px; }
  .hero-mockup { padding: 0 12px; margin-top: 40px; }
  .btn-lg { padding: 14px 22px; font-size: 15px; }
  .kpis { grid-template-columns: repeat(2,1fr); }
  .kpis .kpi:nth-child(3) { display: none; }
}

/* ==========================================================
   EL PROBLEMA
   ========================================================== */
.problema { padding: 96px 0; border-top: 1px solid var(--line); }
.frictions {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
}
.friction {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--line);
}
.friction:last-child { border-right: 0; padding-right: 0; }
.friction:not(:first-child) { padding-left: 32px; }
.fr-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin: 0 0 14px;
}
.friction h3 { font-size: 22px; margin: 0 0 12px; letter-spacing: -0.015em; font-weight: 600; line-height: 1.2; }
.friction p { color: var(--gray); margin: 0; font-size: 15px; line-height: 1.6; }

@media (max-width: 820px) {
  .problema { padding: 72px 0; }
  .frictions { grid-template-columns: 1fr; }
  .friction { padding: 28px 0 !important; border-right: 0; border-bottom: 1px solid var(--line); }
  .friction:last-child { border-bottom: 0; }
}

/* ==========================================================
   WORKFLOW
   ========================================================== */
.workflow { padding: 96px 0; border-top: 1px solid var(--line); }

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.wstep {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  transition: background .2s ease;
}
.wstep:last-child { border-right: 0; }
.wstep:hover { background: var(--black-2); }
.wstep-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,169,77,0.08);
  border: 1px solid rgba(245,169,77,0.22);
  border-radius: 8px;
  color: var(--orange);
  padding: 8px;
  margin-bottom: 18px;
}
.wstep-icon svg { width: 100%; height: 100%; }
.wstep-n {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 8px;
}
.wstep-h { font-size: 15px; font-weight: 600; margin: 0 0 6px; letter-spacing: -0.01em; }
.wstep-d { font-size: 13px; color: var(--gray); margin: 0; line-height: 1.55; }

@media (max-width: 1020px) {
  .workflow { padding: 72px 0; }
  .workflow-steps { grid-template-columns: repeat(2,1fr); border-radius: 0; }
  .wstep { border-bottom: 1px solid var(--line); }
  .wstep:nth-child(even) { border-right: 0; }
  .wstep:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 560px) {
  .workflow-steps { grid-template-columns: 1fr; }
  .wstep { border-right: 0 !important; }
  .wstep:last-child { border-bottom: 0; }
}

/* ==========================================================
   ROLES
   ========================================================== */
.roles { padding: 96px 0 64px; border-top: 1px solid var(--line); }

.rol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}
.rol-flip .rol-visual { order: -1; }

.rol-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.rol-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.rol-copy h3 {
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 700;
}
.rol-copy p { color: var(--gray); font-size: 16px; margin: 0 0 24px; max-width: 460px; line-height: 1.6; }
.rol-list { display: flex; flex-direction: column; gap: 10px; }
.rol-list li {
  font-size: 14px;
  color: var(--white);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.rol-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

@media (max-width: 1020px) {
  .roles { padding: 72px 0 48px; }
  .rol { grid-template-columns: 1fr; gap: 40px; padding: 52px 0; }
  .rol-flip .rol-visual { order: 2; }
}

/* Oficina · ops window */
.window-sm { max-width: 520px; margin: 0 auto; }
.ops { padding: 20px 22px 24px; }
.ops-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray-dim);
  margin: 0 0 6px;
  text-transform: uppercase;
}
.ops h4 { font-size: 16px; margin: 0 0 18px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
.ops-list { display: flex; flex-direction: column; gap: 8px; }
.ops-list li {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.ops-list li.dim { background: rgba(248,113,113,0.04); border-color: rgba(248,113,113,0.16); }
.avatar {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #1F1F22, #2A2A2E);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-family: var(--mono);
  color: var(--white);
  font-weight: 600;
  flex-shrink: 0;
}
.ops-name { font-size: 13px; margin: 0; font-weight: 500; }
.ops-meta { font-family: var(--mono); font-size: 10px; color: var(--gray); margin: 2px 0 0; }
.dot-live {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
.dot-off { width: 6px; height: 6px; background: #F87171; border-radius: 50%; flex-shrink: 0; }

/* Phone · instalador + cliente */
.phone {
  width: 280px;
  margin: 0 auto;
  background: #0C0C0D;
  border: 1px solid var(--line-strong);
  border-radius: 36px;
  padding: 8px;
  position: relative;
  box-shadow: 0 32px 80px -28px rgba(0,0,0,0.8);
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 24px;
  background: #000;
  border-radius: 100px;
  z-index: 2;
}
.phone-screen {
  background: linear-gradient(180deg, #060606, #0A0A0B);
  border-radius: 30px;
  padding: 44px 20px 20px;
  min-height: 480px;
}
.phone-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.job {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.job-time { font-family: var(--mono); font-size: 10px; color: var(--gray); margin: 0 0 4px; }
.job-id { font-size: 13px; font-weight: 500; margin: 0 0 4px; }
.job-task { font-family: var(--mono); font-size: 11px; margin: 0; letter-spacing: 0.03em; }
.sync {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px;
  background: rgba(74,222,128,0.07);
  border: 1px solid rgba(74,222,128,0.16);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--green);
}
.sync-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* Phone cliente */
.job-title { font-size: 18px; font-weight: 700; margin: 0 0 14px; letter-spacing: -0.015em; }
.progress { display: grid; grid-template-columns: repeat(5,1fr); gap: 4px; margin-bottom: 16px; }
.seg { height: 4px; background: var(--gray-dark); border-radius: 2px; }
.seg.done { background: var(--orange); }
.seg.now { background: var(--orange); opacity: 0.45; }
.state { font-family: var(--mono); font-size: 10px; color: var(--gray); margin: 0 0 16px; letter-spacing: 0.08em; }
.next {
  background: rgba(245,169,77,0.05);
  border: 1px solid rgba(245,169,77,0.16);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 12px;
}
.next-l { font-family: var(--mono); font-size: 9px; color: var(--gray); margin: 0 0 4px; letter-spacing: 0.1em; }
.next-h { font-size: 14px; font-weight: 600; margin: 0 0 2px; }
.next-d { font-family: var(--mono); font-size: 11px; color: var(--gray); margin: 0; }
.beforeafter { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 14px; }
.ba {
  aspect-ratio: 1;
  background: var(--gray-dark);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--gray-dim);
}
.phone-cta {
  width: 100%;
  background: var(--orange);
  color: var(--black);
  border: 0;
  border-radius: 8px;
  padding: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* ==========================================================
   FEATURES
   ========================================================== */
.features { padding: 96px 0; border-top: 1px solid var(--line); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feat {
  background: var(--black);
  padding: 32px 28px;
  transition: background .2s ease;
}
.feat:hover { background: var(--black-2); }
.feat-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,169,77,0.08);
  border: 1px solid rgba(245,169,77,0.22);
  border-radius: 10px;
  color: var(--orange);
  padding: 9px;
  margin-bottom: 20px;
}
.feat-icon svg { width: 100%; height: 100%; }
.feat h3 { font-size: 17px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
.feat p { color: var(--gray); margin: 0; font-size: 14px; line-height: 1.6; }

@media (max-width: 820px) {
  .features { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   TESTIMONIOS
   ========================================================== */
.testimonios { padding: 96px 0; border-top: 1px solid var(--line); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.testi {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  transition: border-color .2s ease;
}
.testi:hover { border-color: var(--line-strong); }
.testi::before {
  content: '"';
  position: absolute;
  top: 18px;
  left: 28px;
  font-size: 64px;
  line-height: 1;
  color: var(--orange);
  opacity: 0.18;
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
}
.testi p {
  color: var(--white);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 28px;
  padding-top: 8px;
}
.testi footer strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.testi footer span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .testimonios { padding: 72px 0; }
  .testi-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq { padding: 96px 0; border-top: 1px solid var(--line); }
.faq-list {
  margin-top: 0;
  border-top: 1px solid var(--line);
  max-width: 800px;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.01em;
  gap: 20px;
  transition: color .15s;
}
.faq-q:hover { color: var(--orange); }
.faq-chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--gray);
  transition: transform .3s ease, color .15s;
}
.faq-chevron svg { width: 100%; height: 100%; display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--orange); }
.faq-item.open .faq-q { color: var(--orange); }
.faq-a {
  padding: 0 0 24px;
}
.faq-a p {
  color: var(--gray);
  margin: 0;
  font-size: 16px;
  line-height: 1.68;
}
.faq-a a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 820px) {
  .faq { padding: 72px 0; }
  .faq-q { font-size: 15px; }
}

/* ==========================================================
   CTA FINAL
   ========================================================== */
.cta-final .section-label::before { display: none; }
.cta-final .section-label { justify-content: center; }

.cta-final {
  padding: 120px 0;
  position: relative;
  text-align: center;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: var(--bronze);
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  opacity: 0.3;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}
.cta-wrap { position: relative; z-index: 2; }

.signup {
  margin: 32px auto 16px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  max-width: 700px;
  padding: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  backdrop-filter: blur(12px);
}
.signup input {
  background: transparent;
  border: 0;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  color: var(--white);
  outline: none;
  min-width: 0;
}
.signup input::placeholder { color: var(--gray-dim); }
.signup input:focus {
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  outline: 1px solid rgba(245,169,77,0.3);
}
.signup button { white-space: nowrap; border: 0; }
.cta-fine { color: var(--gray); font-size: 13px; margin: 0; }
.cta-fine a { color: var(--orange); }

@media (max-width: 720px) {
  .cta-final { padding: 80px 0; }
  .signup { grid-template-columns: 1fr; }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  background: var(--black);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.foot-tag { color: var(--gray); font-size: 13px; margin: 14px 0 0; max-width: 280px; line-height: 1.6; }
.foot-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 500;
}
.footer ul li { padding: 5px 0; font-size: 14px; color: var(--gray); }
.footer ul li a { transition: color .15s; }
.footer ul li a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gray-dim);
  text-transform: uppercase;
}
.footer-bottom p { margin: 0; }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
