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

:root {
  --bg: #f6efe5;
  --bg-soft: #fbf7f1;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #162028;
  --muted: #62707a;
  --muted-strong: #38454f;
  --line: rgba(22, 32, 40, 0.1);
  --dark: #10181f;
  --dark-soft: #1b2931;
  --gold: #cfa15e;
  --gold-strong: #aa7d40;
  --teal: #128b83;
  --teal-soft: rgba(18, 139, 131, 0.12);
  --amber-soft: rgba(207, 161, 94, 0.14);
  --shadow: 0 28px 80px rgba(22, 32, 40, 0.12);
  --shadow-soft: 0 14px 34px rgba(22, 32, 40, 0.08);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 32px));
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(207, 161, 94, 0.22), transparent 24%),
    radial-gradient(circle at 80% 14%, rgba(18, 139, 131, 0.09), transparent 18%),
    linear-gradient(180deg, #faf5ee 0%, #f4ecdf 52%, #efe4d5 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(
      90deg,
      rgba(22, 32, 40, 0.015) 0,
      rgba(22, 32, 40, 0.015) 1px,
      transparent 1px,
      transparent 88px
    );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 84%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.page-shell {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 40px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(252, 248, 242, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  transition: background 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 247, 241, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(145deg, #1f2b34, #0d141a);
  color: #f6dfb0;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 12px 24px rgba(15, 23, 29, 0.18);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.14em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: inline-flex;
  justify-content: center;
  gap: 32px;
}

.desktop-nav a,
.footer-links a {
  position: relative;
  color: var(--muted-strong);
  font-size: 0.96rem;
  font-weight: 500;
}

.desktop-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.header-cta {
  padding: 16px 24px;
  background: linear-gradient(135deg, #f0d08e, #c68e39);
  color: #182127;
  box-shadow: 0 18px 34px rgba(198, 142, 57, 0.24);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.section {
  padding: 92px 0;
}

.hero {
  padding-top: 46px;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  padding: 42px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: #f8f0e6;
  background:
    radial-gradient(circle at 78% 18%, rgba(23, 145, 138, 0.13), transparent 20%),
    radial-gradient(circle at 22% 82%, rgba(207, 161, 94, 0.08), transparent 22%),
    linear-gradient(135deg, #182127 0%, #0d151b 54%, #102028 100%);
  box-shadow: 0 44px 92px rgba(15, 23, 29, 0.28);
}

.hero-shell::before {
  content: "";
  position: absolute;
  right: -12%;
  top: -10%;
  width: 44%;
  height: 48%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 139, 131, 0.26), transparent 68%);
  pointer-events: none;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%);
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 240, 230, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9be0da, #d6b27a);
  box-shadow: 0 0 0 4px rgba(155, 224, 218, 0.08);
}

.hero-kicker {
  margin: 28px 0 14px;
  color: rgba(248, 240, 230, 0.62);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3.35rem, 6vw, 6rem);
  line-height: 0.93;
  letter-spacing: -0.07em;
}

.hero h1 span {
  display: block;
  margin-top: 16px;
  color: #7fd7cf;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.9rem, 4.8vw, 5rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.hero-text {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(248, 240, 230, 0.76);
  font-size: 1.05rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.button {
  padding: 16px 24px;
}

.button-primary {
  background: linear-gradient(135deg, #f2d699, #ca9343);
  color: #162028;
  box-shadow: 0 18px 34px rgba(202, 147, 67, 0.24);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: #f8f0e6;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-proof span,
.showcase-footer span {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(248, 240, 230, 0.7);
  font-size: 0.92rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.stat-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.06));
}

.stat-card strong {
  display: block;
  color: #f6dfb1;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.stat-card p {
  margin: 12px 0 0;
  color: rgba(248, 240, 230, 0.7);
  line-height: 1.68;
}

.hero-visual {
  display: flex;
  align-items: stretch;
}

.showcase-card {
  width: 100%;
  padding: 18px;
  border-radius: 32px;
  border: 1px solid rgba(116, 140, 153, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    #071017;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 40px rgba(4, 8, 12, 0.25);
}

.showcase-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 8px 6px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.window-actions {
  display: flex;
  gap: 8px;
}

.window-actions span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.showcase-title {
  justify-self: center;
  color: rgba(248, 240, 230, 0.64);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-badge {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(18, 139, 131, 0.2);
  color: #c0fff9;
  font-size: 0.84rem;
  font-weight: 600;
}

.showcase-grid {
  display: grid;
  gap: 18px;
  padding-top: 18px;
}

.showcase-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-chip {
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #101b22;
  color: rgba(248, 240, 230, 0.62);
  font-weight: 500;
}

.showcase-chip.active {
  border-color: transparent;
  background: linear-gradient(135deg, #f5f0e7, #e8dfcf);
  color: #182229;
}

.showcase-main {
  display: grid;
  gap: 18px;
}

.showcase-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #101b22;
}

.metric-card.accent {
  background: linear-gradient(145deg, rgba(18, 139, 131, 0.18), rgba(16, 27, 34, 0.92));
}

.metric-card span {
  display: block;
  color: rgba(248, 240, 230, 0.54);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  color: #f8f0e6;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.metric-card small {
  display: block;
  margin-top: 8px;
  color: rgba(248, 240, 230, 0.68);
  font-size: 0.94rem;
  line-height: 1.55;
}

.showcase-panels {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 14px;
}

.showcase-panel {
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #101a21;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-kicker {
  color: rgba(248, 240, 230, 0.56);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-panel h2 {
  margin: 8px 0 0;
  max-width: 12ch;
  color: #f8f0e6;
  font-size: 1.7rem;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.panel-pill {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 240, 230, 0.72);
  font-size: 0.82rem;
  white-space: nowrap;
}

.chart-visual {
  position: relative;
  height: 276px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.grid-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(255, 255, 255, 0.08) calc(25% - 1px),
      rgba(255, 255, 255, 0.08) 25%,
      transparent 25%,
      transparent calc(50% - 1px),
      rgba(255, 255, 255, 0.08) calc(50% - 1px),
      rgba(255, 255, 255, 0.08) 50%,
      transparent 50%,
      transparent calc(75% - 1px),
      rgba(255, 255, 255, 0.08) calc(75% - 1px),
      rgba(255, 255, 255, 0.08) 75%,
      transparent 75%
    );
}

.line-path {
  position: absolute;
  left: 8%;
  right: 8%;
  border-top-style: solid;
  border-top-width: 3px;
  border-radius: 50%;
  opacity: 0.85;
}

.line-one {
  top: 52%;
  height: 110px;
  border-top-color: rgba(27, 203, 193, 0.78);
}

.line-two {
  top: 60%;
  height: 92px;
  border-top-color: rgba(227, 182, 94, 0.74);
}

.chart-bars {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
  height: 82%;
}

.chart-bars span {
  display: block;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, rgba(33, 191, 181, 0.92), rgba(33, 191, 181, 0.26));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pipeline-list {
  display: grid;
  gap: 12px;
}

.pipeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
}

.pipeline-dot {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, #32d2c8, #1baaa1);
}

.pipeline-dot.amber {
  background: linear-gradient(135deg, #f0cb81, #d89d3c);
}

.pipeline-dot.soft {
  background: linear-gradient(135deg, #d8ebe8, #a8c8c4);
}

.pipeline-item strong {
  display: block;
  color: #f8f0e6;
  font-size: 1rem;
}

.pipeline-item small {
  display: block;
  margin-top: 8px;
  color: rgba(248, 240, 230, 0.66);
  line-height: 1.56;
}

.showcase-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-heading {
  max-width: 770px;
}

.stakes {
  padding-top: 34px;
}

.stakes-shell {
  display: grid;
  gap: 28px;
  padding: 40px;
  border-radius: 36px;
  color: #f8f0e6;
  background:
    radial-gradient(circle at 84% 24%, rgba(18, 139, 131, 0.16), transparent 18%),
    linear-gradient(135deg, #182127, #111920 58%, #1a2931);
  box-shadow: 0 42px 86px rgba(15, 23, 29, 0.18);
}

.stakes-copy {
  max-width: 840px;
}

.stakes-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(2.5rem, 4.4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.stakes-copy p {
  margin: 22px 0 0;
  max-width: 700px;
  color: rgba(248, 240, 230, 0.72);
  font-size: 1.03rem;
  line-height: 1.78;
}

.stakes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stakes-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.stakes-card.featured {
  background: linear-gradient(135deg, rgba(207, 161, 94, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stakes-index {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #f3d8a0;
  font-size: 1.2rem;
  font-weight: 700;
}

.stakes-card h3 {
  margin: 22px 0 0;
  color: #f8f0e6;
  font-size: 1.64rem;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.stakes-card p {
  margin: 14px 0 0;
  color: rgba(248, 240, 230, 0.7);
  line-height: 1.74;
}

.section-heading.narrow {
  max-width: 680px;
}

.section-heading h2,
.executive-copy h2,
.contact-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(2.7rem, 4.8vw, 4.7rem);
  line-height: 0.97;
  letter-spacing: -0.07em;
}

.section-heading p,
.executive-copy p,
.contact-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.82;
}

.step-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

/* ==========================================================================
   NUEVA SECCIÓN: SOLUCIONES INTERACTIVAS (SHOWCASE Y MOCKUPS CSS)
   ========================================================================== */

.solutions-showcase {
  margin-top: 42px;
  display: grid;
  gap: 28px;
}

/* Selector de Sistemas (Tabs) */
.solutions-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.sol-tab-btn {
  flex: 1 1 auto;
  min-width: 170px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  border: 1px solid rgba(22, 32, 40, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--muted-strong);
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 220ms ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.sol-tab-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  border-color: rgba(18, 139, 131, 0.28);
}

.sol-tab-btn.active {
  background: linear-gradient(135deg, #182229, #0d141a);
  color: #f6dfb1;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(15, 23, 29, 0.16);
}

.tab-icon {
  font-size: 1.15rem;
}

.new-pill {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  background: linear-gradient(135deg, #9be0da, #128b83);
  color: #071017;
  border-radius: 6px;
  font-weight: 800;
  margin-left: 2px;
}

/* Área de Exhibición (Display & Panes) */
.solutions-display {
  position: relative;
  min-height: 480px;
}

.solutions-pane {
  display: none;
  opacity: 0;
  transform: translateY(14px);
  animation: paneFadeIn 450ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.solutions-pane.active {
  display: block;
}

@keyframes paneFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pane-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-xl);
  padding: 42px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.pane-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pane-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.badge-amber {
  background: rgba(207, 161, 94, 0.12);
  color: var(--gold-strong);
}

.badge-teal {
  background: rgba(18, 139, 131, 0.12);
  color: var(--teal);
}

.badge-dark {
  background: rgba(22, 32, 40, 0.08);
  color: var(--text);
}

.badge-premium {
  background: linear-gradient(135deg, rgba(207, 161, 94, 0.18), rgba(18, 139, 131, 0.18));
  color: var(--teal);
  border: 1px solid rgba(18, 139, 131, 0.2);
}

.badge-custom {
  background: rgba(18, 139, 131, 0.1);
  color: var(--teal);
  border: 1px dashed var(--teal);
}

.pane-text h3 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.12;
  letter-spacing: -0.05em;
  color: var(--dark);
}

.pane-problem {
  margin: 18px 0 0;
  font-size: 0.98rem;
  color: #c07a16;
  line-height: 1.62;
  background: rgba(202, 147, 67, 0.07);
  padding: 12px 16px;
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

.pane-desc {
  margin: 16px 0 0;
  font-size: 1.02rem;
  line-height: 1.76;
  color: var(--muted-strong);
}

.pane-features {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pane-features li {
  position: relative;
  padding-left: 24px;
  font-size: 0.96rem;
  line-height: 1.58;
  color: var(--text);
}

.pane-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 800;
  font-size: 1.05rem;
}

.tab-cta-btn {
  margin-top: 28px;
  padding: 16px 28px;
}

/* Mockup Windows (Estructura Base CSS) */
.mockup-window {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(22, 32, 40, 0.1);
  background: #071017;
  box-shadow: 0 20px 48px rgba(15, 23, 29, 0.22);
  overflow: hidden;
}

.mockup-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 12px 16px;
  background: #0f1820;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-header .dots {
  display: flex;
  gap: 6px;
}

.mockup-header .dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-header .dots span:nth-child(1) { background: #ff5f56; }
.mockup-header .dots span:nth-child(2) { background: #ffbd2e; }
.mockup-header .dots span:nth-child(3) { background: #27c93f; }

.mockup-header .title {
  justify-self: center;
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 24px; /* balance dot width */
}

.mockup-body {
  padding: 24px;
  color: #f8f0e6;
  min-height: 290px;
  background: #071017;
}

/* Mockup 1: Ventas (Dashboard) */
.sales-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sales-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dashboard-stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px;
}

.dashboard-stat-box span {
  display: block;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.dashboard-stat-box strong {
  display: block;
  font-size: 1.42rem;
  margin-top: 4px;
  color: #f6dfb1;
}

.dashboard-stat-box small {
  display: block;
  font-size: 0.8rem;
  margin-top: 4px;
}

.trend-green {
  color: #7fd7cf;
  font-weight: 600;
}

.sales-funnel-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 14px;
}

.sales-funnel-container h4 {
  margin: 0 0 6px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
}

.funnel-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #071017;
  width: var(--w);
  transition: all 400ms ease;
}

.f-leads { background: linear-gradient(90deg, #fcebc8, #eccf8b); }
.f-quotes { background: linear-gradient(90deg, #dfede9, #b9ded3); }
.f-orders { background: linear-gradient(90deg, #9ae2da, #73cfc4); }
.f-invoiced { background: linear-gradient(90deg, #74cbca, #46adad); }

.funnel-bar .val {
  font-weight: 800;
}

/* Mockup 2: Certificaciones */
.cert-visual {
  display: grid;
  place-items: center;
  position: relative;
}

.cert-form-simulation {
  width: 100%;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.sim-header {
  font-size: 0.88rem;
  font-weight: 700;
  color: #f6dfb1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.sim-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.sim-label {
  color: rgba(255, 255, 255, 0.46);
}

.sim-value {
  font-weight: 600;
}

.sim-divider {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  margin: 12px 0;
}

.cert-status-badge {
  display: flex;
  gap: 10px;
  background: rgba(39, 201, 63, 0.1);
  border: 1px solid rgba(39, 201, 63, 0.22);
  border-radius: 10px;
  padding: 10px 12px;
}

.cert-status-badge .badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #27c93f;
  color: #071017;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.74rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cert-status-badge .badge-text strong {
  display: block;
  font-size: 0.8rem;
  color: #6aff82;
}

.cert-status-badge .badge-text p {
  margin: 2px 0 0 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.35;
}

/* Sello oficial de validación */
.cert-stamp {
  position: absolute;
  bottom: 60px;
  right: -10px;
  transform: rotate(-12deg);
  pointer-events: none;
}

.stamp-circle {
  width: 76px;
  height: 76px;
  border: 3px double rgba(127, 215, 207, 0.78);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(7, 16, 23, 0.84);
  color: #7fd7cf;
  font-family: "Sora", sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.stamp-circle span:nth-child(1) {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.stamp-circle span:nth-child(2) {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin: 1px 0;
}

.stamp-circle .stamp-date {
  font-size: 0.48rem;
  opacity: 0.7;
}

/* Mockup 3: App Móvil Celular CSS */
.phone-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 200px;
  height: 380px;
  background: #111920;
  border: 8px solid #2d3b45;
  border-radius: 36px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-speaker {
  width: 48px;
  height: 4px;
  background: #2d3b45;
  border-radius: 999px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  flex: 1;
  background: #071017;
  padding: 22px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
}

.phone-app-header .app-logo {
  font-size: 0.78rem;
  font-weight: 700;
  color: #f6dfb1;
}

.phone-app-header .app-bell {
  font-size: 0.78rem;
  opacity: 0.8;
}

.phone-app-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.phone-kpi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px 12px;
}

.phone-kpi-card span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  display: block;
}

.phone-kpi-card strong {
  font-size: 1.15rem;
  color: #f8f0e6;
  display: block;
  margin: 2px 0 6px 0;
}

.phone-progress-bg {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.phone-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #9be0da, #128b83);
  border-radius: 999px;
}

.phone-kpi-card small {
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.42);
  display: block;
  margin-top: 4px;
}

.phone-alert-card {
  display: flex;
  gap: 8px;
  background: rgba(202, 147, 67, 0.09);
  border: 1px solid rgba(202, 147, 67, 0.22);
  border-radius: 10px;
  padding: 8px 10px;
}

.phone-alert-card .alert-icon {
  font-size: 0.85rem;
  margin-top: 1px;
}

.phone-alert-card .alert-text strong {
  font-size: 0.72rem;
  color: #ffca74;
  display: block;
}

.phone-alert-card .alert-text p {
  margin: 1px 0 0 0;
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

.phone-simple-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.stat-mini {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}

.stat-mini span {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.42);
  display: block;
}

.stat-mini strong {
  font-size: 0.94rem;
  color: #7fd7cf;
  display: block;
  margin-top: 2px;
}

.phone-home-btn {
  width: 32px;
  height: 4px;
  background: #2d3b45;
  border-radius: 999px;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}

/* Mockup 4: Extractor de Extractos Bancarios */
.extractor-visual {
  display: flex;
  flex-direction: column;
}

.upload-simulator-box {
  border: 2px dashed rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 240px;
  transition: all 260ms ease;
}

.upload-simulator-box.hidden,
.hidden {
  display: none !important;
}

.upload-zone-inside {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.upload-zone-inside .upload-icon {
  font-size: 2.3rem;
  margin-bottom: 12px;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.upload-zone-inside strong {
  font-size: 1rem;
  color: #f8f0e6;
}

.upload-zone-inside p {
  margin: 6px 0 16px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.48);
}

.sim-action-btn {
  background: linear-gradient(135deg, #128b83, #1bcbc1);
  color: #071017;
  border: 0;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(18, 139, 131, 0.28);
  transition: all 180ms ease;
}

.sim-action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(18, 139, 131, 0.38);
}

/* Estado Cargando Extractor */
.upload-loading-inside {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.spinner {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(18, 139, 131, 0.18);
  border-top-color: #1bcbc1;
  border-radius: 50%;
  animation: spin 950ms linear infinite;
  margin-bottom: 14px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.upload-loading-inside strong {
  font-size: 0.94rem;
  color: #1bcbc1;
}

.upload-loading-inside p {
  margin: 6px 0 14px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.sim-progress-bar {
  width: 100%;
  max-width: 240px;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.sim-progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #1bcbc1, #eccf8b);
  border-radius: 999px;
  transition: width 150ms ease-out;
}

/* Estado Resultado Extractor */
.upload-result-inside {
  width: 100%;
  animation: revealResult 350ms ease forwards;
}

@keyframes revealResult {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

.result-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}

.success-badge {
  color: #6aff82;
  font-weight: 700;
  font-size: 0.82rem;
}

.result-summary {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.result-table-wrapper {
  overflow-x: auto;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.result-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.74rem;
}

.result-table th,
.result-table td {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.result-table th {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.44);
  font-weight: 600;
  text-transform: uppercase;
}

.result-table td {
  font-weight: 500;
}

.amount-green {
  color: #6aff82;
  font-weight: 700;
}

.amount-red {
  color: #ff6a6a;
  font-weight: 700;
}

.cat-tag {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
}

.tag-green {
  background: rgba(39, 201, 63, 0.16);
  color: #6aff82;
}

.tag-red {
  background: rgba(255, 106, 106, 0.16);
  color: #ff6a6a;
}

.tag-gray {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
}

.sim-reset-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 180ms ease;
}

.sim-reset-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #f8f0e6;
  border-color: rgba(255, 255, 255, 0.28);
}

/* Mockup 5: Sistemas a Medida (Blueprint Visual) */
.blueprint-visual {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #07121b, #050b11);
  position: relative;
}

/* Rejilla técnica de fondo tipo plano */
.blueprint-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(27, 203, 193, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 203, 193, 0.02) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}

.blueprint-canvas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 330px;
  position: relative;
  padding-top: 14px;
}

.bp-node {
  background: rgba(18, 139, 131, 0.09);
  border: 2px solid #1bcbc1;
  border-radius: 12px;
  padding: 10px 8px;
  width: 82px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(18, 139, 131, 0.14);
  position: relative;
}

.bp-node .icon {
  font-size: 1.15rem;
  display: block;
  margin-bottom: 4px;
}

.bp-node strong {
  display: block;
  font-size: 0.65rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.bp-node small {
  display: block;
  font-size: 0.54rem;
  color: #7fd7cf;
  margin-top: 2px;
}

.bp-custom-engine {
  background: rgba(207, 161, 94, 0.09);
  border-color: #eccf8b;
  box-shadow: 0 4px 18px rgba(207, 161, 94, 0.18);
  width: 90px;
  z-index: 2;
}

.bp-custom-engine small {
  color: #fcd077;
}

.bp-arrow-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7fd7cf;
  font-size: 0.72rem;
  font-weight: bold;
  padding: 0 4px;
  animation: moveArrow 2s linear infinite;
  opacity: 0.6;
}

@keyframes moveArrow {
  0% { transform: translateX(-2px); opacity: 0.3; }
  50% { transform: translateX(2px); opacity: 0.8; }
  100% { transform: translateX(-2px); opacity: 0.3; }
}

.blueprint-labels {
  position: absolute;
  bottom: -48px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bp-meta-label {
  font-size: 0.64rem;
  font-weight: 500;
  font-family: monospace;
  color: rgba(127, 215, 207, 0.66);
}

.bp-meta-label::before {
  content: "» ";
  color: #eccf8b;
  font-weight: bold;
}


.icon-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 26px;
}

.icon-badge span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: currentColor;
}

.icon-badge.amber {
  color: var(--gold-strong);
  background: var(--amber-soft);
}

.icon-badge.teal {
  color: var(--teal);
  background: var(--teal-soft);
}

.icon-badge.dark {
  color: #1f2b34;
  background: rgba(31, 43, 52, 0.1);
}

.icon-badge.soft {
  color: #809095;
  background: rgba(128, 144, 149, 0.12);
}

.icon-badge.line {
  color: var(--gold-strong);
  background: rgba(207, 161, 94, 0.14);
}

.executive-shell,
.contact-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  padding: 36px;
  border-radius: 36px;
}

.executive-shell {
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.executive-points {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.executive-points li {
  position: relative;
  padding-left: 28px;
  color: var(--muted-strong);
  line-height: 1.66;
}

.executive-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
}

.executive-visual {
  display: flex;
  align-items: stretch;
}

.executive-card {
  width: 100%;
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 30px;
  color: #f8f0e6;
  background: linear-gradient(135deg, #162027, #22333b);
}

.executive-ring {
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 12px solid rgba(122, 207, 199, 0.18);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.04);
  background: radial-gradient(circle at 50% 35%, rgba(207, 161, 94, 0.2), transparent 62%);
}

.executive-ring span {
  color: #f4dfb5;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.executive-summary strong {
  display: block;
  font-size: 1.46rem;
  letter-spacing: -0.04em;
}

.executive-summary small {
  display: block;
  margin-top: 10px;
  color: rgba(248, 240, 230, 0.7);
  line-height: 1.62;
  font-size: 1rem;
}

.executive-list {
  display: grid;
  gap: 14px;
}

.executive-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.executive-list strong {
  font-size: 1rem;
}

.executive-list span {
  color: rgba(248, 240, 230, 0.7);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.step-card {
  padding: 28px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #162027;
  color: #f8f0e6;
  font-size: 1.06rem;
  font-weight: 700;
}

.contact-shell {
  color: #f8f0e6;
  background:
    radial-gradient(circle at 82% 18%, rgba(207, 161, 94, 0.14), transparent 16%),
    linear-gradient(135deg, #162027, #22333b);
  box-shadow: 0 44px 92px rgba(15, 23, 29, 0.18);
}

.contact-copy p {
  color: rgba(248, 240, 230, 0.72);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-list article {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.contact-list strong {
  display: block;
  font-size: 1rem;
}

.contact-list span {
  display: block;
  margin-top: 8px;
  color: rgba(248, 240, 230, 0.68);
  line-height: 1.58;
}

.direct-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.direct-contact a {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.direct-contact a:hover {
  border-color: rgba(242, 214, 153, 0.38);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.direct-contact span {
  color: rgba(248, 240, 230, 0.56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direct-contact strong {
  color: #f8f0e6;
  font-size: 1rem;
  line-height: 1.35;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: rgba(248, 240, 230, 0.82);
  font-size: 0.94rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  outline: none;
  background: rgba(10, 17, 21, 0.42);
  color: #f8f0e6;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(248, 240, 230, 0.38);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(122, 207, 199, 0.56);
  box-shadow: 0 0 0 4px rgba(122, 207, 199, 0.12);
}

.form-button {
  justify-self: start;
  margin-top: 8px;
}

.form-note {
  margin: 0;
  color: rgba(248, 240, 230, 0.62);
  line-height: 1.62;
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: end;
  padding: 40px 0 16px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand-block {
  max-width: 480px;
}

.footer-brand-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.footer-meta {
  display: grid;
  gap: 6px;
  justify-items: end;
  text-align: right;
  color: var(--muted);
}

.footer-meta a {
  color: var(--muted-strong);
  font-weight: 600;
}

.footer-meta a:hover {
  color: var(--text);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 50;
  transform: translate(-50%, 18px);
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(15, 23, 29, 0.92);
  color: #f8f0e6;
  box-shadow: 0 18px 32px rgba(15, 23, 29, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   MOCKUP 6: ARBITRAJE FINANCIERO
   ========================================================================== */

.arbitrage-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #060e14;
}

.arbitrage-ticker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ticker-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 12px 14px;
}

.ticker-item span {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ticker-item strong {
  display: block;
  font-size: 1.34rem;
  margin-top: 4px;
  color: #f8f0e6;
  font-weight: 800;
}

.ticker-item small {
  display: block;
  font-size: 0.74rem;
  margin-top: 4px;
  font-weight: 600;
}

.arbitrage-ledger {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.arbitrage-ledger h4 {
  margin: 0 0 4px 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.46);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ledger-match {
  display: grid;
  grid-template-columns: 1.1fr auto 1.1fr;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.ledger-node {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.exchange-tag {
  align-self: flex-start;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.label-buenbit { background: #dfebff; color: #1e6bf2; }
.label-binance { background: #fff8db; color: #d4a017; }
.label-lemon { background: #eefceb; color: #32c21a; }
.label-fiwind { background: #fcebeb; color: #eb2a2a; }

.op-type {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
}

.ledger-node strong {
  font-size: 0.96rem;
  color: #f8f0e6;
}

.ledger-connection {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 58px;
}

.ledger-connection::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  border-top: 1px dashed rgba(27, 203, 193, 0.4);
  transform: translateY(-50%);
  z-index: 1;
}

.arrow-dot {
  width: 5px;
  height: 5px;
  background: #1bcbc1;
  border-radius: 50%;
  z-index: 2;
  animation: slideArrow 2s linear infinite;
}

@keyframes slideArrow {
  0% { transform: translateX(-24px); }
  100% { transform: translateX(24px); }
}

.profit-bubble {
  font-size: 0.64rem;
  font-weight: 800;
  color: #6aff82;
  background: rgba(39, 201, 63, 0.16);
  border: 1px solid rgba(39, 201, 63, 0.28);
  border-radius: 6px;
  padding: 1px 4px;
  margin-top: 4px;
  z-index: 2;
}

.animate-pulse {
  animation: pulseOpacity 2.5s infinite;
}

@keyframes pulseOpacity {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.76; }
}

@media (max-width: 1100px) {
  .hero-shell,
  .executive-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .showcase-panels,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .pane-content {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 32px;
  }

  .stakes-grid {
    grid-template-columns: 1fr;
  }

  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 960px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-content: center;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .mobile-menu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    gap: 0;
    margin-top: 10px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 26px;
    background: rgba(251, 247, 241, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
    transition:
      max-height 220ms ease,
      opacity 220ms ease,
      padding 220ms ease;
  }

  .mobile-menu a {
    padding: 14px 4px;
    color: var(--muted-strong);
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  .mobile-menu.is-open {
    max-height: 340px;
    opacity: 1;
    padding: 18px;
  }

  .mobile-cta {
    margin-top: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e5be7b, #c79445);
    color: #162028;
    font-weight: 700;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-shell,
  .executive-shell,
  .contact-shell {
    padding: 28px;
  }

  .hero-stats,
  .stakes-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .solutions-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }

  .solutions-nav::-webkit-scrollbar {
    display: none;
  }

  .sol-tab-btn {
    flex: 0 0 auto;
    min-width: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 20px, 100%);
  }

  body::before {
    opacity: 0.6;
  }

  .hero-shell::before {
    display: none;
  }

  .site-header {
    top: 12px;
    gap: 14px;
    margin-top: 12px;
    padding: 12px 14px;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy small {
    font-size: 0.63rem;
  }

  .hero-shell,
  .stakes-shell,
  .executive-shell,
  .contact-shell {
    padding: 22px 20px;
    border-radius: 30px;
  }

  .eyebrow {
    width: 100%;
    justify-content: flex-start;
    font-size: 0.76rem;
    letter-spacing: 0.09em;
  }

  .hero-kicker {
    margin: 18px 0 12px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.95rem, 14vw, 4.4rem);
  }

  .hero h1 span {
    margin-top: 12px;
    max-width: 9.4ch;
    font-size: clamp(2.08rem, 10vw, 3.35rem);
    line-height: 0.95;
  }

  .hero-text,
  .section-heading p,
  .executive-copy p,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .form-button {
    width: 100%;
  }

  .showcase-card {
    padding: 16px;
    border-radius: 28px;
  }

  .showcase-title {
    font-size: 0.82rem;
  }

  .showcase-metrics,
  .showcase-panels {
    grid-template-columns: 1fr;
  }

  .metric-card strong {
    font-size: 1.9rem;
  }

  .showcase-panel h2 {
    max-width: none;
    font-size: 1.42rem;
  }

  .chart-visual {
    height: 220px;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .direct-contact {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 34px 0 16px;
  }
}
