/* ============================================================
   NICEEAT — landing.css
   Paleta oficial: Violet #6900CC · Strawberry #F60076
   Apricot #FFCB03 · Black #151224 · Purple #A700CC · Orange #FF5F00
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --violet: #6900CC;
  --strawberry: #F60076;
  --yellow: #FFCB03;
  --black: #151224;
  --purple: #A700CC;
  --orange: #FF5F00;
  --white: #FFFFFF;
  --gray-50: #F7F5FF;
  --gray-100: #EDE9FE;
  --gray-400: #9B91B8;
  --gray-600: #4A4268;
  --card-bg: #1E1A30;
  --border: rgba(105, 0, 204, 0.25);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-glow: 0 0 60px rgba(105, 0, 204, 0.35);
  --shadow-card: 0 8px 40px rgba(21, 18, 36, 0.5);

  --surface-light-2: rgba(255, 255, 255, 0.99);
  --text-dark: rgba(21, 18, 36, 0.85);
}

/* ── RESET & BASE ───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

/* ── UTILITY ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255, 203, 3, 0.12);
  border: 1px solid rgba(255, 203, 3, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: blink 1.6s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.gradient-text {
  background: linear-gradient(135deg, var(--violet), var(--strawberry));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-warm {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--strawberry));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(105, 0, 204, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(246, 0, 118, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 24px rgba(255, 203, 3, 0.35);
}

.btn-yellow:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255, 203, 3, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(105, 0, 204, 0.2);
  border-color: var(--violet);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(21, 18, 36, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  height: 72px;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links>li {
  position: relative;
}

.nav-links>li>a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
  color: var(--white);
  background: rgba(105, 0, 204, 0.15);
}

.nav-links .chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-links li:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 270px;
  background: #1E1A30;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-card);
}

.nav-links li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.dropdown a:hover {
  background: rgba(105, 0, 204, 0.15);
}

.dropdown-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.dropdown-icon i {
  line-height: 1em;
}

.dropdown-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.dropdown-text span {
  font-size: 12px;
  color: var(--gray-400);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-login {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 14px;
  transition: color 0.2s;
}

.nav-login:hover {
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(21, 18, 36, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.mobile-nav ul a {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.15s;
}

.mobile-nav ul a:hover {
  background: rgba(105, 0, 204, 0.15);
  color: var(--white);
}

.mobile-nav .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav .btn {
  justify-content: center;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

/* Mesh gradient background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(105, 0, 204, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 70%, rgba(246, 0, 118, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(255, 95, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(105, 0, 204, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 0, 204, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 203, 3, 0.1);
  border: 1px solid rgba(255, 203, 3, 0.3);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--yellow);
  animation: slideDown 0.6s ease both;
}

.hero-badge .flag {
  font-size: 16px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: slideDown 0.6s 0.1s ease both;
}

.hero-h1 .line-accent {
  display: block;
  background: linear-gradient(90deg, var(--violet), var(--strawberry), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: slideDown 0.6s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: slideDown 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  animation: slideDown 0.6s 0.4s ease both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .label {
  font-size: 13px;
  color: var(--gray-400);
}

/* Hero visual */
.hero-visual {
  position: relative;
  animation: slideUp 0.8s 0.2s ease both;
}

.hero-mockup-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-mockup-bg {
  width: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1E1A30, #2A1F4A);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  padding: 24px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Mockup dashboard elements */
.mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

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

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red {
  background: #FF5F57;
}

.mockup-dot.yellow {
  background: #FFBD2E;
}

.mockup-dot.green {
  background: #28C840;
}

.mockup-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  margin-left: 8px;
}

.mockup-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mockup-stat-card {
  background: rgba(105, 0, 204, 0.15);
  border: 1px solid rgba(105, 0, 204, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.mockup-stat-card .m-label {
  font-size: 11px;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.mockup-stat-card .m-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

.mockup-stat-card .m-change {
  font-size: 11px;
  color: #22C55E;
  margin-top: 4px;
}

.mockup-chart-area {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  flex: 1;
}

.mockup-chart-label {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.mockup-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.mockup-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  animation: growUp 1s ease both;
}

.mockup-bar:nth-child(1) {
  height: 40%;
  background: var(--violet);
  animation-delay: 0.5s;
}

.mockup-bar:nth-child(2) {
  height: 65%;
  background: linear-gradient(to top, var(--violet), var(--purple));
  animation-delay: 0.6s;
}

.mockup-bar:nth-child(3) {
  height: 50%;
  background: var(--violet);
  animation-delay: 0.7s;
}

.mockup-bar:nth-child(4) {
  height: 80%;
  background: linear-gradient(to top, var(--strawberry), var(--purple));
  animation-delay: 0.8s;
}

.mockup-bar:nth-child(5) {
  height: 60%;
  background: var(--violet);
  animation-delay: 0.9s;
}

.mockup-bar:nth-child(6) {
  height: 90%;
  background: linear-gradient(to top, var(--strawberry), var(--orange));
  animation-delay: 1.0s;
}

.mockup-bar:nth-child(7) {
  height: 70%;
  background: var(--violet);
  animation-delay: 1.1s;
}

@keyframes growUp {
  from {
    height: 0 !important;
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.mockup-modules-row {
  display: flex;
  gap: 8px;
}

.mockup-module-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.mockup-module-chip .chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* Floating cards */
.hero-float-card {
  position: absolute;
  background: #1E1A30;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  animation: floatCard 3s ease-in-out infinite;
}

.hero-float-card.card-left {
  left: -50px;
  top: 58%;
  animation-delay: 0s;
}

.hero-float-card.card-right {
  right: -40px;
  bottom: 20%;
  animation-delay: 1.5s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float-card-icon {
  font-size: 22px;
  margin-bottom: 4px;
}

.float-card-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}

.float-card-label {
  font-size: 11px;
  color: var(--gray-400);
}

/* ── LOGOS STRIP ─────────────────────────────────────────── */
.logos-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.logos-strip-label {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logos-track-outer {
  overflow: hidden;
  position: relative;
}

.logos-track-outer::before,
.logos-track-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logos-track-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}

.logos-track-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}

.logos-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: scrollTrack 28s linear infinite;
  width: max-content;
}

.logos-track:hover {
  animation-play-state: paused;
}

@keyframes scrollTrack {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
  flex-shrink: 0;
}

.logo-item:hover {
  color: rgba(255, 255, 255, 0.8);
}

.logo-item .logo-icon {
  font-size: 20px;
}

/* ── PAIN SECTION ───────────────────────────────────────── */
.pain-section {
  padding: 100px 0;
}

.pain-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pain-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pain-card:hover {
  transform: translateY(-6px);
  border-color: var(--violet);
  box-shadow: 0 20px 60px rgba(105, 0, 204, 0.2);
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--strawberry));
  opacity: 0;
  transition: opacity 0.3s;
}

.pain-card:hover::before {
  opacity: 1;
}

.pain-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  background: rgba(105, 0, 204, 0.15);
  border: 1px solid rgba(105, 0, 204, 0.25);
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.pain-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.pain-stat {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── MODULES SECTION ────────────────────────────────────── */
.modules-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(105, 0, 204, 0.05), transparent);
}

.modules-header {
  text-align: center;
  margin-bottom: 60px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.module-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.module-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.module-card .card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: var(--radius-lg);
}

.module-card:hover .card-glow {
  opacity: 1;
}

.module-card[data-module="pos"] .card-glow {
  background: radial-gradient(circle at 50% 0%, rgba(105, 0, 204, 0.2), transparent 70%);
}

.module-card[data-module="shop"] .card-glow {
  background: radial-gradient(circle at 50% 0%, rgba(246, 0, 118, 0.2), transparent 70%);
}

.module-card[data-module="stock"] .card-glow {
  background: radial-gradient(circle at 50% 0%, rgba(255, 203, 3, 0.15), transparent 70%);
}

.module-card[data-module="loyalty"] .card-glow {
  background: radial-gradient(circle at 50% 0%, rgba(167, 0, 204, 0.2), transparent 70%);
}

.module-card[data-module="crm"] .card-glow {
  background: radial-gradient(circle at 50% 0%, rgba(255, 95, 0, 0.2), transparent 70%);
}

.module-card[data-module="analytics"] .card-glow {
  background: radial-gradient(circle at 50% 0%, rgba(105, 0, 204, 0.2), transparent 70%);
}

.module-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.module-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
  z-index: 1;
}

.module-badge {
  font-size: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}

.badge-new {
  background: rgba(34, 197, 94, 0.15);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-pop {
  background: rgba(246, 0, 118, 0.15);
  color: var(--strawberry);
  border: 1px solid rgba(246, 0, 118, 0.3);
}

.module-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.module-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.module-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.module-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.module-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.feature-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 9px;
}

.module-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  transition: gap 0.2s;
  position: relative;
  z-index: 1;
}

.module-card:hover .module-link {
  gap: 10px;
}

/* ── WHY NICEEAT ────────────────────────────────────────── */
.why-section {
  padding: 100px 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.why-content .section-subtitle {
  text-align: left;
  margin: 0 0 36px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(105, 0, 204, 0.15);
  border: 1px solid rgba(105, 0, 204, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.why-feature-text h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-feature-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Comparison table */
.comparison-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(105, 0, 204, 0.08);
}

.comparison-header .col-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}

.comparison-header .col-label.highlight {
  color: var(--yellow);
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(105, 0, 204, 0.1);
  align-items: center;
  transition: background 0.15s;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.comparison-row .feat-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.comparison-row .feat-val {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.check-yes {
  color: #22C55E;
}

.check-no {
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

.check-partial {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
}

.comparison-row.niceeat-row {
  background: rgba(105, 0, 204, 0.08);
}

/* ── SOCIAL PROOF ───────────────────────────────────────── */
.social-proof {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(246, 0, 118, 0.04), transparent);
}

.social-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 0, 118, 0.3);
  box-shadow: 0 16px 48px rgba(246, 0, 118, 0.1);
}

.testimonial-card.featured {
  border-color: rgba(246, 0, 118, 0.4);
  background: linear-gradient(135deg, rgba(246, 0, 118, 0.08), rgba(105, 0, 204, 0.08));
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-text::before {
  content: '"';
  font-size: 40px;
  line-height: 0;
  vertical-align: -18px;
  color: var(--violet);
  margin-right: 4px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.author-info span {
  font-size: 12px;
  color: var(--gray-400);
}

.testimonial-metric {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 6px 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #22C55E;
}

/* ── HOW IT WORKS ───────────────────────────────────────── */
.how-section {
  padding: 100px 0;
}

.how-header {
  text-align: center;
  margin-bottom: 60px;
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--strawberry));
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--violet), var(--strawberry));
  color: var(--white);
  box-shadow: 0 8px 32px rgba(105, 0, 204, 0.4);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(105, 0, 204, 0.3);
}

.step-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 5px 12px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #22C55E;
}

/* ── PRICING SNIPPET ────────────────────────────────────── */
.pricing-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(105, 0, 204, 0.06), transparent);
}

.pricing-header {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}

.pricing-toggle-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 0.2s;
}

.pricing-toggle-label.active {
  color: var(--white);
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  left: 4px;
  top: 3px;
  transition: transform 0.3s;
}

.toggle-switch input:checked+.toggle-slider {
  background: var(--violet);
}

.toggle-switch input:checked+.toggle-slider::before {
  transform: translateX(24px);
}

.annual-badge {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22C55E;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.price-card.featured {
  border-color: var(--violet);
  background: linear-gradient(135deg, rgba(105, 0, 204, 0.12), rgba(246, 0, 118, 0.06));
  box-shadow: 0 0 40px rgba(105, 0, 204, 0.25);
}

.price-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--violet), var(--strawberry));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-plan-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.price-currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-400);
}

.price-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.price-period {
  font-size: 14px;
  color: var(--gray-400);
}

.price-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.price-feature .pf-icon {
  font-size: 16px;
}

.pricing-footer {
  text-align: center;
}

.pricing-footer p {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

/* ── BLOG SECTION ───────────────────────────────────────── */
.blog-section {
  padding: 100px 0;
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(105, 0, 204, 0.4);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.blog-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.blog-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-img-inner {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--white);
}

.blog-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--gray-400);
}

.blog-meta .sep {
  opacity: 0.4;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--white);
}

.blog-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--violet);
  transition: gap 0.2s;
}

.blog-card:hover .blog-read-more {
  gap: 10px;
}

/* ── CTA FINAL ──────────────────────────────────────────── */
.cta-final {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final-inner {
  position: relative;
  background: linear-gradient(135deg, rgba(105, 0, 204, 0.2), rgba(246, 0, 118, 0.15));
  border: 1px solid rgba(105, 0, 204, 0.35);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  overflow: hidden;
}

.cta-final-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 0, 204, 0.3), transparent 70%);
  pointer-events: none;
}

.cta-final-inner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 0, 118, 0.2), transparent 70%);
  pointer-events: none;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-final p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.cta-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.cta-trust-item .ti {
  font-size: 16px;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}

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

.footer-brand p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}

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

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
  color: var(--white);
}

.social-btn:hover {
  background: rgba(105, 0, 204, 0.2);
  border-color: var(--violet);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-400);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-content .section-title {
    text-align: center;
  }

  .why-content .section-subtitle {
    text-align: center;
    margin: 0 auto 36px;
  }

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

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

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

  .blog-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .nav-actions .btn:last-child {
    display: inline-flex;
  }

  .hamburger {
    display: flex;
  }

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

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

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

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

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

  .steps-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-wrapper::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-float-card {
    display: none;
  }

  .comparison-card {
    overflow-x: auto;
  }

  .blog-header {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }

  .cta-final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-final-actions .btn {
    justify-content: center;
  }
}


/* POS PARA RESTAURANTES */

/* ============================================================
   nicepos.css — Estilos específicos de /pos-para-restaurantes
   Reutiliza landing.css como base. Solo lo nuevo aquí.
   ============================================================ */

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb-wrap {
  padding: 8rem 3rem 3rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-400);
  padding: 20px 0 0;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--gray-400);
  transition: color .2s;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb .sep {
  opacity: .4;
  font-size: 11px;
}

.breadcrumb .current {
  color: rgba(255, 255, 255, .7);
}

/* ── HERO — nicePOS ─────────────────────────────────────── */
.module-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.module-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 55% 45%, rgba(105, 0, 204, .28) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(167, 0, 204, .15) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 5% 20%, rgba(255, 95, 0, .08) 0%, transparent 60%);
  pointer-events: none;
}

.module-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(105, 0, 204, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 0, 204, .05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.module-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 0 60px;
}

/* Module chip badge in hero */
.module-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(105, 0, 204, .15);
  border: 1px solid rgba(105, 0, 204, .4);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #C9A0FF;
  margin-bottom: 24px;
}

.module-hero-chip .chip-icon {
  font-size: 18px;
}

.module-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}

.module-hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.module-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

.hero-trust-item .ti {
  font-size: 15px;
}

/* POS Mockup visual */
.pos-visual-wrap {
  position: relative;
}

.pos-screen {
  background: linear-gradient(150deg, #1E1A30, #221640);
  border: 1px solid rgba(105, 0, 204, .4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  overflow: hidden;
}

.pos-topbar {
  background: rgba(105, 0, 204, .18);
  border-bottom: 1px solid rgba(105, 0, 204, .25);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pos-topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pos-topbar-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.pos-mode-tabs {
  display: flex;
  gap: 4px;
}

.pos-tab {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  cursor: pointer;
  color: rgba(255, 255, 255, .5);
  transition: all .2s;
}

.pos-tab.active {
  background: var(--violet);
  color: var(--white);
}

.pos-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  min-height: 320px;
}

.pos-menu-col {
  padding: 16px;
  border-right: 1px solid rgba(105, 0, 204, .2);
}

.pos-menu-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.pos-menu-cats {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.pos-cat {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: all .2s;
}

.pos-cat.active {
  background: rgba(105, 0, 204, .25);
  border-color: var(--violet);
  color: var(--white);
}

.pos-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pos-item {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-sm);
  padding: 10px;
  cursor: pointer;
  transition: all .2s;
}

.pos-item:hover {
  background: rgba(105, 0, 204, .2);
  border-color: var(--violet);
}

.pos-item-emoji {
  font-size: 22px;
  margin-bottom: 4px;
}

.pos-item-name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 2px;
}

.pos-item-price {
  font-size: 12px;
  font-weight: 800;
  color: var(--yellow);
}

.pos-order-col {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.pos-order-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.pos-order-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.pos-order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: rgba(105, 0, 204, .12);
  border-radius: var(--radius-sm);
  font-size: 12px;
}

.poi-name {
  color: rgba(255, 255, 255, .8);
}

.poi-qty {
  color: var(--gray-400);
  margin: 0 8px;
}

.poi-price {
  color: var(--yellow);
  font-weight: 700;
}

.pos-order-sep {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin: 12px 0;
}

.pos-order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pos-total-label {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 600;
}

.pos-total-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}

.pos-pay-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--violet), var(--strawberry));
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(105, 0, 204, .35);
}

.pos-dian-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 10px;
  color: #22C55E;
  justify-content: center;
}

.pos-dian-badge::before {
  content: '✓';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(34, 197, 94, .2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
}

/* Floating tag on visual */
.pos-float-tag {
  position: absolute;
  background: #1E1A30;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
  animation: floatCard 3s ease-in-out infinite;
}

.pos-float-tag.tag-tl {
  top: -18px;
  left: -30px;
  animation-delay: 0s;
}

.pos-float-tag.tag-br {
  bottom: -18px;
  right: -30px;
  animation-delay: 1.5s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.float-tag-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.float-tag-lbl {
  font-size: 11px;
  color: var(--gray-400);
}

/* ── FEATURES TABS ──────────────────────────────────────── */
.features-section {
  padding: 100px 0;
}

.features-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.features-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 96px;
}

.feature-tab {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s ease;
  background: transparent;
  text-align: left;
  width: 100%;
}

.feature-tab:hover {
  background: rgba(255, 255, 255, .04);
  border-color: var(--border);
}

.feature-tab.active {
  background: rgba(105, 0, 204, .15);
  border-color: rgba(105, 0, 204, .4);
}

.ft-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: rgba(105, 0, 204, .12);
  border: 1px solid rgba(105, 0, 204, .2);
  transition: background .2s;
}

.feature-tab.active .ft-icon {
  background: rgba(105, 0, 204, .3);
  border-color: rgba(105, 0, 204, .5);
}

.ft-text {
  flex: 1;
}

.ft-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 2px;
  transition: color .2s;
}

.feature-tab.active .ft-title {
  color: var(--white);
}

.ft-desc {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.5;
}

.ft-arrow {
  font-size: 16px;
  color: var(--violet);
  opacity: 0;
  transform: translateX(-4px);
  transition: all .2s;
  align-self: center;
}

.feature-tab.active .ft-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Feature panel */
.feature-panels {}

.feature-panel {
  display: none;
  animation: panelIn .35s ease;
}

.feature-panel.active {
  display: block;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.feature-panel-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.fpc-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid rgba(105, 0, 204, .15);
  background: rgba(105, 0, 204, .06);
}

.fpc-module-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #C9A0FF;
  margin-bottom: 8px;
}

.fpc-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.fpc-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
}

.fpc-body {
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fpc-feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.fpc-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(105, 0, 204, .15);
  border: 1px solid rgba(105, 0, 204, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.fpc-feat-text h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

.fpc-feat-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.55;
}

/* ── AUDIENCE (Para quién es) ───────────────────────────── */
.audience-section {
  padding: 100px 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.audience-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.audience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(105, 0, 204, .5);
  box-shadow: 0 20px 50px rgba(105, 0, 204, .2);
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.audience-card.cafe::before {
  background: linear-gradient(90deg, #FFCB03, #FF5F00);
}

.audience-card.restaurante::before {
  background: linear-gradient(90deg, var(--violet), var(--strawberry));
}

.audience-card.foodtruck::before {
  background: linear-gradient(90deg, var(--strawberry), var(--purple));
}

.audience-emoji {
  font-size: 44px;
  margin-bottom: 20px;
  display: block;
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.audience-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.audience-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audience-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
}

.audience-perk::before {
  content: '→';
  color: var(--violet);
  font-weight: 700;
}

/* ── DIAN SECTION ───────────────────────────────────────── */
.dian-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(34, 197, 94, .04), transparent);
}

.dian-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.dian-badge-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(34, 197, 94, .1);
  border: 1.5px solid rgba(34, 197, 94, .35);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  margin-bottom: 24px;
}

.dian-badge-icon {
  font-size: 28px;
}

.dian-badge-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #22C55E;
}

.dian-badge-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
}

.dian-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 32px;
}

.dian-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dian-item-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.dian-item-text h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.dian-item-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.55;
}

/* DIAN visual card */
.dian-visual {
  background: var(--card-bg);
  border: 1px solid rgba(34, 197, 94, .25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(34, 197, 94, .08);
}

.dian-visual-header {
  background: rgba(34, 197, 94, .08);
  border-bottom: 1px solid rgba(34, 197, 94, .15);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.dian-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  animation: blink 1.6s infinite;
}

.dian-invoice-mock {
  padding: 20px;
}

.dim-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: 13px;
}

.dim-row:last-child {
  border-bottom: none;
}

.dim-label {
  color: var(--gray-400);
}

.dim-val {
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

.dim-val.ok {
  color: #22C55E;
}

.dim-val.bold {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}

.dian-footer-strip {
  background: rgba(34, 197, 94, .08);
  border-top: 1px solid rgba(34, 197, 94, .15);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #22C55E;
  font-weight: 600;
}

/* ── INTEGRATIONS ROW ───────────────────────────────────── */
.integrations-section {
  padding: 80px 0;
}

.integrations-strip {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.integration-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 12px 20px;
  text-decoration: none;
  transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
}

.integration-pill:hover {
  transform: translateY(-4px);
  border-color: var(--violet);
  box-shadow: 0 10px 30px rgba(105, 0, 204, .2);
}

.ip-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.ip-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.ip-text span {
  font-size: 11px;
  color: var(--gray-400);
}

.ip-arrow {
  color: var(--violet);
  font-size: 14px;
  margin-left: 4px;
}

/* ── FAQ ACCORDION ──────────────────────────────────────── */
.faq-section {
  padding: 100px 0;
}

.faq-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.faq-side {}

.faq-side .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.faq-side .section-subtitle {
  text-align: left;
  margin: 0 0 28px;
}

.faq-cta-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.faq-cta-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  margin-bottom: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.open {
  border-color: rgba(105, 0, 204, .5);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-question-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  line-height: 1.35;
  flex: 1;
  transition: color .2s;
}

.faq-item.open .faq-question-text {
  color: var(--white);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gray-400);
  font-size: 18px;
  font-weight: 300;
  transition: all .3s ease;
  line-height: 1;
}

.faq-item.open .faq-toggle {
  background: rgba(105, 0, 204, .25);
  border-color: var(--violet);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
}

/* ── RESPONSIVE NICENOS ─────────────────────────────────── */
@media (max-width: 1024px) {
  .module-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pos-visual-wrap {
    display: none;
  }

  .module-hero-h1 {
    font-size: clamp(32px, 5vw, 48px);
  }

  .module-hero-desc {
    max-width: 100%;
  }

  .features-inner {
    grid-template-columns: 1fr;
  }

  .features-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
  }

  .feature-tab {
    flex: 1;
    min-width: 160px;
  }

  .dian-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .fpc-body {
    grid-template-columns: 1fr;
  }

  .features-tabs {
    flex-direction: column;
  }

  .integrations-strip {
    flex-direction: column;
  }
}

/* TIENDA ONLINE PARA RESTAURANTES */

/* ============================================================
   niceshop.css — Estilos específicos de /tienda-online-restaurantes
   Depende de landing.css + nicepos.css (breadcrumb, module-hero,
   faq, audience, integrations ya están allí).
   Solo se añade lo estrictamente nuevo para esta página.
   ============================================================ */

/* ── HERO — tinte Strawberry para niceSHOP ──────────────── */
/* Sobreescribe solo el gradiente del fondo del hero */
.module-hero.shop-hero::before {
  background:
    radial-gradient(ellipse 70% 60% at 55% 45%, rgba(246, 0, 118, .22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(105, 0, 204, .18) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 5% 20%, rgba(255, 203, 3, .07) 0%, transparent 60%);
}

.module-hero-chip.shop-chip {
  background: rgba(246, 0, 118, .12);
  border-color: rgba(246, 0, 118, .35);
  color: #FF80B0;
}

/* ── TIENDA MOCKUP ──────────────────────────────────────── */
.shop-visual-wrap {
  position: relative;
}

.shop-screen {
  background: linear-gradient(150deg, #1E1A30, #28101C);
  border: 1px solid rgba(246, 0, 118, .35);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(246, 0, 118, .2), var(--shadow-card);
  overflow: hidden;
}

.shop-browser-bar {
  background: rgba(246, 0, 118, .12);
  border-bottom: 1px solid rgba(246, 0, 118, .2);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-dots {
  display: flex;
  gap: 5px;
}

.shop-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.shop-dot.r {
  background: #FF5F57;
}

.shop-dot.y {
  background: #FFBD2E;
}

.shop-dot.g {
  background: #28C840;
}

.shop-url-bar {
  flex: 1;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.shop-url-bar .lock {
  color: #22C55E;
  font-size: 11px;
}

.shop-body {
  padding: 0;
}

/* Store header strip */
.shop-store-header {
  background: linear-gradient(135deg, rgba(246, 0, 118, .25), rgba(105, 0, 204, .25));
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-store-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}

.shop-store-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
}

.shop-open-badge {
  font-size: 10px;
  font-weight: 700;
  background: rgba(34, 197, 94, .2);
  border: 1px solid rgba(34, 197, 94, .35);
  color: #22C55E;
  padding: 4px 10px;
  border-radius: 100px;
}

/* Product grid */
.shop-products {
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.shop-product-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all .2s;
  cursor: pointer;
}

.shop-product-card:hover {
  border-color: rgba(246, 0, 118, .4);
  transform: translateY(-2px);
}

.shop-product-img {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.shop-product-info {
  padding: 8px 10px;
}

.shop-product-name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 4px;
}

.shop-product-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--yellow);
}

.shop-add-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--strawberry);
  color: var(--white);
  border: none;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  float: right;
  margin-top: -18px;
  margin-right: 2px;
  transition: transform .2s;
}

.shop-add-btn:hover {
  transform: scale(1.15);
}

/* Cart strip */
.shop-cart-strip {
  background: linear-gradient(135deg, var(--strawberry), var(--violet));
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.shop-cart-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.shop-cart-badge {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.shop-cart-total {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
}

/* Floating tags */
.shop-float-tag {
  position: absolute;
  background: #1E1A30;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
  animation: floatCard 3s ease-in-out infinite;
}

.shop-float-tag.tag-tl {
  top: -18px;
  left: -28px;
  animation-delay: 0s;
}

.shop-float-tag.tag-br {
  bottom: -14px;
  right: -28px;
  animation-delay: 1.8s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.float-tag-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.float-tag-lbl {
  font-size: 11px;
  color: var(--gray-400);
}

/* ── COMPARATIVA DE CANALES ─────────────────────────────── */
.compare-section {
  padding: 100px 0;
}

.compare-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
  align-items: start;
}

.compare-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid;
}

.compare-card.bad {
  border-color: rgba(255, 95, 0, .3);
  background: rgba(255, 95, 0, .04);
}

.compare-card.good {
  border-color: rgba(34, 197, 94, .3);
  background: rgba(34, 197, 94, .04);
  box-shadow: 0 0 40px rgba(34, 197, 94, .08);
}

.compare-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid;
  display: flex;
  align-items: center;
  gap: 12px;
}

.compare-card.bad .compare-card-header {
  border-color: rgba(255, 95, 0, .2);
  background: rgba(255, 95, 0, .08);
}

.compare-card.good .compare-card-header {
  border-color: rgba(34, 197, 94, .2);
  background: rgba(34, 197, 94, .08);
}

.compare-header-icon {
  font-size: 26px;
}

.compare-header-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
}

.compare-header-sub {
  font-size: 12px;
  margin-top: 2px;
}

.compare-card.bad .compare-header-sub {
  color: rgba(255, 95, 0, .7);
}

.compare-card.good .compare-header-sub {
  color: rgba(34, 197, 94, .7);
}

.compare-rows {
  padding: 8px 0;
}

.compare-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.compare-row-text h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.compare-row-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.55;
}

.compare-row-stat {
  margin-left: auto;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  align-self: center;
}

.compare-card.bad .compare-row-stat {
  color: #FF5F00;
}

.compare-card.good .compare-row-stat {
  color: #22C55E;
}

/* ── CÓMO FUNCIONA NICESHOP (3 pasos visuales) ───────────── */
.shop-steps-section {
  padding: 100px 0;
}

.shop-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  position: relative;
}

.shop-steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--strawberry), var(--violet));
  z-index: 0;
}

.shop-step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.shop-step:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 0, 118, .4);
  box-shadow: 0 20px 50px rgba(246, 0, 118, .12);
}

.shop-step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--strawberry), var(--violet));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 24px rgba(246, 0, 118, .35);
  position: relative;
}

.shop-step-num::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(246, 0, 118, .25);
}

.shop-step-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.shop-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.shop-step p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
}

.shop-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 5px 14px;
  background: rgba(246, 0, 118, .1);
  border: 1px solid rgba(246, 0, 118, .25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--strawberry);
}

/* ── PASARELA DE PAGOS ──────────────────────────────────── */
.payments-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(246, 0, 118, .04), transparent);
}

.payments-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.payments-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 32px;
}

.payment-pill {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
}

.payment-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 0, 118, .4);
  box-shadow: 0 10px 28px rgba(246, 0, 118, .12);
}

.payment-pill-icon {
  font-size: 28px;
  margin-bottom: 6px;
}

.payment-pill-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
}

/* Checkout visual */
.checkout-card {
  background: var(--card-bg);
  border: 1px solid rgba(246, 0, 118, .25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(246, 0, 118, .08);
}

.checkout-header {
  background: linear-gradient(135deg, rgba(246, 0, 118, .18), rgba(105, 0, 204, .15));
  border-bottom: 1px solid rgba(246, 0, 118, .2);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.checkout-secure {
  margin-left: auto;
  font-size: 11px;
  color: #22C55E;
  display: flex;
  align-items: center;
  gap: 4px;
}

.checkout-body {
  padding: 20px;
}

.checkout-order-summary {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 16px;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 5px 0;
  color: rgba(255, 255, 255, .7);
}

.checkout-line.total {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 6px;
  padding-top: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}

.checkout-method-select {
  margin-bottom: 16px;
}

.checkout-method-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 8px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.checkout-methods-row {
  display: flex;
  gap: 8px;
}

.cm-btn {
  flex: 1;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  transition: all .2s;
}

.cm-btn.selected {
  background: rgba(246, 0, 118, .15);
  border-color: rgba(246, 0, 118, .4);
  box-shadow: 0 0 12px rgba(246, 0, 118, .15);
}

.cm-btn:hover:not(.selected) {
  background: rgba(255, 255, 255, .1);
}

.checkout-pay-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--strawberry), var(--violet));
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(246, 0, 118, .3);
  transition: all .25s ease;
}

.checkout-pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(246, 0, 118, .45);
}

.checkout-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
}

/* ── FEATURES NICESHOP (grid, no tabs) ──────────────────── */
.shop-features-section {
  padding: 100px 0;
}

.shop-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.shop-feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.shop-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 0, 118, .35);
  box-shadow: 0 20px 50px rgba(246, 0, 118, .1);
}

.shop-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--strawberry), var(--violet));
  opacity: 0;
  transition: opacity .3s;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.shop-feature-card:hover::before {
  opacity: 1;
}

.sfc-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(246, 0, 118, .12);
  border: 1px solid rgba(246, 0, 118, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.shop-feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.shop-feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
}

/* ── RESPONSIVE NICESHOP ────────────────────────────────── */
@media (max-width: 1024px) {
  .compare-inner {
    grid-template-columns: 1fr;
  }

  .payments-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .shop-steps-grid {
    grid-template-columns: 1fr;
  }

  .shop-steps-grid::before {
    display: none;
  }

  .shop-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .shop-features-grid {
    grid-template-columns: 1fr;
  }

  .payments-methods {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* INVENTARIO RESTAURANTES */
/* ============================================================
   nicestock.css — Estilos específicos de /inventario-restaurantes
   Depende de landing.css + nicepos.css + niceshop.css
   Solo lo estrictamente nuevo aquí.
   ============================================================ */

/* ── HERO — tinte Yellow/Amber para niceSTOCK ───────────── */
.module-hero.stock-hero::before {
  background:
    radial-gradient(ellipse 70% 60% at 55% 40%, rgba(255, 203, 3, .18) 0%, transparent 68%),
    radial-gradient(ellipse 40% 40% at 88% 75%, rgba(255, 95, 0, .14) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 8% 20%, rgba(105, 0, 204, .10) 0%, transparent 60%);
}

.module-hero-chip.stock-chip {
  background: rgba(255, 203, 3, .12);
  border-color: rgba(255, 203, 3, .38);
  color: #FFE066;
}

/* ── STOCK MOCKUP ───────────────────────────────────────── */
.stock-visual-wrap {
  position: relative;
}

.stock-screen {
  background: linear-gradient(150deg, #1E1A30, #1C1800);
  border: 1px solid rgba(255, 203, 3, .3);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(255, 203, 3, .12), var(--shadow-card);
  overflow: hidden;
}

.stock-topbar {
  background: rgba(255, 203, 3, .1);
  border-bottom: 1px solid rgba(255, 203, 3, .2);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stock-topbar-left {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.stock-topbar-meta {
  font-size: 11px;
  color: var(--gray-400);
}

.stock-alert-count {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(239, 68, 68, .15);
  border: 1px solid rgba(239, 68, 68, .3);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #EF4444;
  animation: blink 2s infinite;
}

.stock-body {
  padding: 14px;
}

/* Ingredient rows */
.stock-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.stock-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
  transition: background .15s;
  font-size: 13px;
}

.stock-row:hover {
  background: rgba(255, 255, 255, .04);
}

.stock-row.alert-low {
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .2);
}

.stock-row.alert-ok {
  background: rgba(34, 197, 94, .05);
}

.stock-ingredient {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
}

.stock-ingredient-icon {
  font-size: 16px;
}

.stock-qty {
  color: rgba(255, 255, 255, .75);
  font-weight: 600;
}

.stock-min {
  color: var(--gray-400);
  font-size: 12px;
}

.stock-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  text-align: center;
}

.status-ok {
  background: rgba(34, 197, 94, .15);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, .25);
}

.status-low {
  background: rgba(239, 68, 68, .15);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, .25);
}

.status-warning {
  background: rgba(255, 203, 3, .15);
  color: #FFCB03;
  border: 1px solid rgba(255, 203, 3, .25);
}

/* Merma summary strip */
.stock-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.stock-sum-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  text-align: center;
}

.stock-sum-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  display: block;
}

.stock-sum-lbl {
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 2px;
  display: block;
}

/* Floating tags */
.stock-float-tag {
  position: absolute;
  background: #1E1A30;
  border: 1px solid rgba(255, 203, 3, .3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
  animation: floatCard 3s ease-in-out infinite;
}

.stock-float-tag.tag-tl {
  top: -18px;
  left: -28px;
  animation-delay: .4s;
}

.stock-float-tag.tag-br {
  bottom: -16px;
  right: -26px;
  animation-delay: 2s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.float-tag-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.float-tag-lbl {
  font-size: 11px;
  color: var(--gray-400);
}

/* ── CALCULADORA DE PÉRDIDAS ────────────────────────────── */
.calculator-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(255, 203, 3, .04), transparent);
}

.calculator-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.calc-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 203, 3, .25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255, 203, 3, .07);
}

.calc-header {
  background: rgba(255, 203, 3, .08);
  border-bottom: 1px solid rgba(255, 203, 3, .18);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.calc-header-icon {
  font-size: 26px;
}

.calc-header-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
}

.calc-header-sub {
  font-size: 12px;
  color: rgba(255, 203, 3, .7);
  margin-top: 1px;
}

.calc-body {
  padding: 24px;
}

.calc-field {
  margin-bottom: 20px;
}

.calc-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.calc-input-wrap {
  position: relative;
}

.calc-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--yellow);
  pointer-events: none;
}

.calc-input {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 203, 3, .25);
  border-radius: var(--radius-sm);
  padding: 12px 14px 12px 34px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: textfield;
  -moz-appearance: textfield;
}

.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.calc-input:focus {
  border-color: rgba(255, 203, 3, .5);
  box-shadow: 0 0 0 3px rgba(255, 203, 3, .08);
}

.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .1);
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--yellow);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 203, 3, .4);
  transition: transform .15s;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--yellow);
  cursor: pointer;
  border: none;
}

.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 6px;
}

.calc-slider-val {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  text-align: right;
  margin-top: 4px;
}

.calc-result-box {
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .25);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 4px;
}

.calc-result-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 8px;
}

.calc-result-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: #EF4444;
  line-height: 1;
  margin-bottom: 6px;
  transition: all .3s ease;
}

.calc-result-note {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.55;
}

.calc-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.calc-save-badge {
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  flex: 1;
  text-align: center;
}

.calc-save-amount {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #22C55E;
  display: block;
}

.calc-save-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  margin-top: 2px;
}

/* ── COSTEO DE RECETAS ──────────────────────────────────── */
.recipe-section {
  padding: 100px 0;
}

.recipe-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.recipe-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 203, 3, .2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.recipe-card-header {
  background: rgba(255, 203, 3, .07);
  border-bottom: 1px solid rgba(255, 203, 3, .15);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recipe-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.recipe-portions {
  font-size: 12px;
  color: var(--gray-400);
}

.recipe-ingredients {
  padding: 4px 0;
}

.recipe-ingredient-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  padding: 11px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: 13px;
  transition: background .15s;
}

.recipe-ingredient-row:last-child {
  border-bottom: none;
}

.recipe-ingredient-row:hover {
  background: rgba(255, 255, 255, .03);
}

.ri-name {
  color: rgba(255, 255, 255, .8);
}

.ri-qty {
  color: var(--gray-400);
}

.ri-cost {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--yellow);
  text-align: right;
}

.recipe-totals {
  background: rgba(255, 203, 3, .06);
  border-top: 1px solid rgba(255, 203, 3, .15);
  padding: 16px 20px;
}

.recipe-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 13px;
}

.rt-label {
  color: rgba(255, 255, 255, .6);
}

.rt-value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
}

.recipe-total-row.main .rt-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.recipe-total-row.main .rt-value {
  font-size: 20px;
  color: var(--yellow);
}

.recipe-margin-bar {
  margin-top: 14px;
}

.recipe-margin-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 6px;
}

.recipe-margin-label span:first-child {
  color: var(--gray-400);
}

.recipe-margin-label span:last-child {
  font-family: var(--font-display);
  font-weight: 700;
  color: #22C55E;
}

.margin-track {
  height: 8px;
  background: rgba(255, 255, 255, .08);
  border-radius: 100px;
  overflow: hidden;
}

.margin-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #22C55E, #16A34A);
  animation: fillBar 1.4s ease both;
}

@keyframes fillBar {
  from {
    width: 0 !important;
  }
}

/* ── FEATURES GRID niceSTOCK ────────────────────────────── */
/* Reutiliza .shop-feature-card / .sfc-icon de niceshop.css
   Solo sobreescribimos el color de acento vía clase */
.stock-features-section {
  padding: 100px 0;
}

.stock-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

/* Override accent para niceSTOCK (yellow) */
.stock-feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.stock-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 203, 3, .35);
  box-shadow: 0 20px 50px rgba(255, 203, 3, .08);
}

.stock-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  opacity: 0;
  transition: opacity .3s;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.stock-feature-card:hover::before {
  opacity: 1;
}

.sfc-icon-stock {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(255, 203, 3, .1);
  border: 1px solid rgba(255, 203, 3, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.stock-feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.stock-feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
}

/* ── RESPONSIVE niceSTOCK ───────────────────────────────── */
@media (max-width: 1024px) {
  .calculator-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .recipe-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stock-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .stock-features-grid {
    grid-template-columns: 1fr;
  }

  .stock-summary {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* FIDELIZACIÓN PARA RESTAURANTES */
/* ============================================================
   niceloyalty.css — /fidelizacion-clientes-restaurantes
   Acento: Purple #A700CC
   Depende de landing.css (v2). Solo lo nuevo aquí.
   ============================================================ */

/* ── HERO — tinte Purple para niceLOYALTY ───────────────── */
.module-hero.loyalty-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 55% 40%, rgba(167, 0, 204, .22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 88% 78%, rgba(246, 0, 118, .16) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 5% 20%, rgba(105, 0, 204, .12) 0%, transparent 60%);
  pointer-events: none;
}

.module-hero-chip.loyalty-chip {
  background: rgba(167, 0, 204, .14);
  border-color: rgba(167, 0, 204, .40);
  color: #E080FF;
}

/* ── LOYALTY MOCKUP ──────────────────────────────────────── */
.loyalty-visual-wrap {
  position: relative;
}

.loyalty-screen {
  background: linear-gradient(150deg, #1E1A30, #240A2C);
  border: 1px solid rgba(167, 0, 204, .35);
  border-radius: var(--r-lg);
  box-shadow: 0 0 60px rgba(167, 0, 204, .20), var(--shadow-card);
  overflow: hidden;
}

.loyalty-topbar {
  background: rgba(167, 0, 204, .14);
  border-bottom: 1px solid rgba(167, 0, 204, .22);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.loyalty-topbar-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.loyalty-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: blink 1.6s infinite;
}

/* Customer card */
.loyalty-customer {
  background: linear-gradient(135deg, rgba(167, 0, 204, .22), rgba(105, 0, 204, .18));
  border-bottom: 1px solid rgba(167, 0, 204, .18);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--strawberry));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.lc-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.lc-info span {
  font-size: 11px;
  color: rgba(255, 255, 255, .60);
}

.lc-tier {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 203, 3, .15);
  border: 1px solid rgba(255, 203, 3, .30);
  color: var(--yellow);
}

/* Points display */
.loyalty-points-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(167, 0, 204, .15);
}

.lp-cell {
  padding: 14px 12px;
  text-align: center;
  border-right: 1px solid rgba(167, 0, 204, .12);
}

.lp-cell:last-child {
  border-right: none;
}

.lp-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  display: block;
}

.lp-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, .55);
  margin-top: 3px;
  display: block;
}

/* History */
.loyalty-history {
  padding: 12px 14px;
}

.lh-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .50);
  margin-bottom: 8px;
}

.lh-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: 12px;
}

.lh-row:last-child {
  border-bottom: none;
}

.lh-desc {
  color: rgba(255, 255, 255, .75);
}

.lh-date {
  color: rgba(255, 255, 255, .40);
  font-size: 11px;
}

.lh-points {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}

.lh-points.earn {
  color: var(--success);
}

.lh-points.redeem {
  color: var(--strawberry);
}

/* Progress bar */
.loyalty-progress-wrap {
  background: rgba(167, 0, 204, .06);
  border-top: 1px solid rgba(167, 0, 204, .15);
  padding: 12px 18px;
}

.lp-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 6px;
}

.lp-progress-label span:first-child {
  color: rgba(255, 255, 255, .55);
}

.lp-progress-label span:last-child {
  color: #E080FF;
  font-weight: 700;
}

.lp-track {
  height: 6px;
  background: rgba(255, 255, 255, .10);
  border-radius: 100px;
  overflow: hidden;
}

.lp-fill {
  height: 100%;
  width: 68%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--purple), var(--strawberry));
  animation: fillBar 1.2s ease both;
}

/* ── LOYALTY STATS SECTION ──────────────────────────────── */
.loyalty-stats-section {
  padding: 80px 0;
}

.loyalty-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.loyalty-stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.loyalty-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 0, 204, .40);
  box-shadow: 0 16px 40px rgba(167, 0, 204, .15);
}

.loyalty-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.loyalty-stat-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--purple), var(--violet));
}

.loyalty-stat-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--strawberry), var(--purple));
}

.loyalty-stat-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--yellow), var(--orange));
}

.loyalty-stat-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--success), #16A34A);
}

.lsc-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.lsc-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.lsc-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .60);
  margin-bottom: 8px;
}

.lsc-delta {
  font-size: 12px;
  font-weight: 700;
  color: var(--success);
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .20);
  border-radius: 100px;
  padding: 3px 10px;
  display: inline-block;
}

/* En sección light */
.section-light .loyalty-stat-card {
  background: var(--surface-light-2);
  border-color: var(--border-light);
}

.section-light .lsc-label {
  color: var(--text-dark-muted);
}

/* ── FEATURES GRID niceLOYALTY ──────────────────────────── */
.loyalty-features-section {
  padding: 100px 0;
}

.loyalty-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.loyalty-feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.loyalty-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 0, 204, .40);
  box-shadow: 0 20px 50px rgba(167, 0, 204, .12);
}

.loyalty-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--strawberry));
  opacity: 0;
  transition: opacity .3s;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.loyalty-feature-card:hover::before {
  opacity: 1;
}

.sfc-icon-loyalty {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: rgba(167, 0, 204, .12);
  border: 1px solid rgba(167, 0, 204, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.loyalty-feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.loyalty-feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .60);
  line-height: 1.7;
}

/* Light section override */
.section-light .loyalty-feature-card {
  background: var(--surface-light-2);
  border-color: var(--border-light);
}

.section-light .loyalty-feature-card h3 {
  color: var(--text-dark);
}

.section-light .loyalty-feature-card p {
  color: var(--text-dark-muted);
}

.section-light .sfc-icon-loyalty {
  background: rgba(167, 0, 204, .08);
  border-color: rgba(167, 0, 204, .15);
}

/* ── CÓMO FUNCIONA — EARN / REDEEM / REACTIVATE ─────────── */
.loyalty-how-section {
  padding: 100px 0;
}

.loyalty-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  position: relative;
}

.loyalty-how-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--strawberry));
  z-index: 0;
}

.loyalty-step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.loyalty-step:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 0, 204, .45);
  box-shadow: 0 20px 50px rgba(167, 0, 204, .14);
}

.loyalty-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--strawberry));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 24px rgba(167, 0, 204, .40);
  position: relative;
}

.loyalty-step-num::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(167, 0, 204, .25);
}

.loyalty-step-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.loyalty-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.loyalty-step p {
  font-size: 14px;
  color: rgba(255, 255, 255, .60);
  line-height: 1.7;
}

.loyalty-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 5px 14px;
  background: rgba(167, 0, 204, .12);
  border: 1px solid rgba(167, 0, 204, .25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #E080FF;
}

/* Light step overrides */
.section-light .loyalty-step {
  background: var(--surface-light-2);
  border-color: var(--border-light);
}

.section-light .loyalty-step h3 {
  color: var(--text-dark);
}

.section-light .loyalty-step p {
  color: var(--text-dark-muted);
}

/* ── CAMPAÑAS DE ACUMULACIÓN ────────────────────────────── */
.campaigns-section {
  padding: 100px 0;
}

.campaigns-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 52px;
}

/* Columna izquierda: campañas de registro */
.campaigns-register-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #E080FF;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.campaigns-register-title::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--purple);
  display: inline-block;
}

.register-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.register-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all .25s ease;
}

.register-card:hover {
  border-color: rgba(167, 0, 204, .45);
  box-shadow: 0 8px 32px rgba(167, 0, 204, .12);
  transform: translateX(4px);
}

.register-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: var(--r-lg) 0 0 var(--r-lg);
}

.register-card.first-time::before {
  background: linear-gradient(to bottom, var(--violet), var(--purple));
}

.register-card.referral::before {
  background: linear-gradient(to bottom, var(--strawberry), var(--purple));
}

.register-card.birthday::before {
  background: linear-gradient(to bottom, var(--yellow), var(--orange));
}

.rc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.register-card.first-time .rc-icon {
  background: rgba(105, 0, 204, .15);
  border: 1px solid rgba(105, 0, 204, .25);
}

.register-card.referral .rc-icon {
  background: rgba(246, 0, 118, .12);
  border: 1px solid rgba(246, 0, 118, .22);
}

.register-card.birthday .rc-icon {
  background: rgba(255, 203, 3, .12);
  border: 1px solid rgba(255, 203, 3, .22);
}

.rc-body {}

.rc-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.rc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.6;
}

.rc-badge {
  margin-left: auto;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  align-self: center;
}

.register-card.first-time .rc-badge {
  color: #C9A0FF;
}

.register-card.referral .rc-badge {
  color: var(--strawberry);
}

.register-card.birthday .rc-badge {
  color: var(--yellow);
}

/* Columna derecha: campañas por temporada */
.campaigns-season-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #E080FF;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.campaigns-season-title::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--purple);
  display: inline-block;
}

.season-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.season-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}

.season-card:hover {
  border-color: rgba(167, 0, 204, .45);
  box-shadow: 0 8px 32px rgba(167, 0, 204, .12);
  transform: translateX(4px);
}

.season-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.season-card-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.season-multiplier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  background: rgba(167, 0, 204, .18);
  border: 1px solid rgba(167, 0, 204, .30);
  color: #E080FF;
  padding: 4px 12px;
  border-radius: 100px;
}

.season-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.6;
  margin-bottom: 12px;
}

.season-card-dates {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
}

.season-card-dates .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-400);
}

/* Light overrides */
.section-light .register-card,
.section-light .season-card {
  background: var(--surface-light-2);
  border-color: var(--border-light);
}

.section-light .rc-name,
.section-light .season-card-name {
  color: var(--text-dark);
}

.section-light .rc-desc,
.section-light .season-card-desc {
  color: var(--text-dark-muted);
}

.section-light .season-card-dates {
  color: rgba(21, 18, 36, .45);
}

/* ── RECOMPENSAS ────────────────────────────────────────── */
.rewards-section {
  padding: 100px 0;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.reward-card {
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  text-align: center;
}

.reward-card.discount {
  background: rgba(105, 0, 204, .08);
  border: 1px solid rgba(105, 0, 204, .28);
}

.reward-card.free-product {
  background: rgba(34, 197, 94, .06);
  border: 1px solid rgba(34, 197, 94, .25);
}

.reward-card.experience {
  background: rgba(255, 203, 3, .07);
  border: 1px solid rgba(255, 203, 3, .28);
}

.reward-card:hover {
  transform: translateY(-6px);
}

.reward-card.discount:hover {
  box-shadow: 0 20px 50px rgba(105, 0, 204, .15);
  border-color: rgba(105, 0, 204, .50);
}

.reward-card.free-product:hover {
  box-shadow: 0 20px 50px rgba(34, 197, 94, .10);
  border-color: rgba(34, 197, 94, .45);
}

.reward-card.experience:hover {
  box-shadow: 0 20px 50px rgba(255, 203, 3, .10);
  border-color: rgba(255, 203, 3, .50);
}

.reward-icon {
  font-size: 52px;
  margin-bottom: 20px;
  display: block;
}

.reward-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.reward-card.discount .reward-name {
  color: #C9A0FF;
}

.reward-card.free-product .reward-name {
  color: var(--success);
}

.reward-card.experience .reward-name {
  color: var(--yellow);
}

.reward-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.7;
  margin-bottom: 20px;
}

.reward-examples {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reward-example {
  font-size: 13px;
  color: rgba(255, 255, 255, .70);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reward-example::before {
  content: '→';
  font-weight: 700;
  flex-shrink: 0;
}

.reward-card.discount .reward-example::before {
  color: #C9A0FF;
}

.reward-card.free-product .reward-example::before {
  color: var(--success);
}

.reward-card.experience .reward-example::before {
  color: var(--yellow);
}

/* Light rewards */
.section-light .reward-card.discount {
  background: rgba(105, 0, 204, .04);
}

.section-light .reward-card.free-product {
  background: rgba(34, 197, 94, .04);
}

.section-light .reward-card.experience {
  background: rgba(255, 203, 3, .04);
}

.section-light .reward-desc {
  color: var(--text-dark-muted);
}

.section-light .reward-example {
  background: rgba(21, 18, 36, .04);
  border-color: rgba(21, 18, 36, .08);
  color: var(--text-dark);
}

/* ── RESPONSIVE niceLOYALTY ──────────────────────────────── */
@media (max-width: 1024px) {
  .loyalty-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .loyalty-how-grid {
    grid-template-columns: 1fr;
  }

  .loyalty-how-grid::before {
    display: none;
  }

  .loyalty-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .campaigns-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .loyalty-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .loyalty-features-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .loyalty-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* CRM PARA RESTAURANTES*/
/* ============================================================
   nicecrm.css — /crm-restaurantes
   Acento: Orange #FF5F00
   Depende de landing.css. Solo lo nuevo aquí.
   ============================================================ */

/* ── HERO — tinte Naranja para niceCRM ───────────────────── */
.module-hero.crm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 55% 40%, rgba(255, 95, 0, .18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 88% 78%, rgba(105, 0, 204, .14) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 5% 20%, rgba(246, 0, 118, .08) 0%, transparent 60%);
  pointer-events: none;
}

.module-hero-chip.crm-chip {
  background: rgba(255, 95, 0, .12);
  border-color: rgba(255, 95, 0, .38);
  color: #FFAA70;
}

/* ── CRM FICHA MOCKUP ────────────────────────────────────── */
/* Replica la interfaz real: fondo blanco, títulos violet,
   badges teal, texto oscuro — exactamente como el screenshot */
.crm-visual-wrap {
  position: relative;
}

.crm-screen {
  background: var(--surface-light-2);
  border: 1px solid rgba(21, 18, 36, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 40px rgba(255, 95, 0, 0.12), var(--shadow-card);
  overflow: hidden;
}

/* Dark topbar (matches app chrome) */
.crm-topbar {
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crm-topbar-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.crm-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  animation: blink 1.6s infinite;
}

/* Customer header — white bg, violet name */
.crm-customer-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(21, 18, 36, .08);
}

.crm-customer-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--violet);
  margin-bottom: 8px;
}

.crm-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 200, 160, .12);
  border: 1.5px solid rgba(0, 200, 160, .35);
  color: #00C8A0;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.crm-notice {
  margin: 14px 0 0;
  background: rgba(0, 200, 200, .08);
  border: 1.5px solid rgba(0, 200, 200, .25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(21, 18, 36, .60);
}

/* Metrics groups — light bg sections */
.crm-metrics-group {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(21, 18, 36, .06);
}

.crm-metric-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 5px 0;
  font-size: 13px;
}

.crm-metric-key {
  font-weight: 700;
  color: var(--text-dark);
  flex-shrink: 0;
}

.crm-metric-val {
  color: rgba(21, 18, 36, .70);
}

.crm-metric-val.highlight {
  color: var(--violet);
  font-weight: 700;
}

.crm-metric-val.vip-badge {
  background: rgba(105, 0, 204, .10);
  border: 1px solid rgba(105, 0, 204, .22);
  border-radius: 100px;
  padding: 2px 10px;
  color: var(--violet);
  font-weight: 700;
  font-size: 11px;
}

/* ── METRICS SHOWCASE — las 17 métricas ─────────────────── */
.metrics-section {
  padding: 100px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.metric-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.metric-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 95, 0, .40);
  box-shadow: 0 16px 40px rgba(255, 95, 0, .12);
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity .3s;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.metric-card:hover::before {
  opacity: 1;
}

.metric-card.group-value::before {
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.metric-card.group-behavior::before {
  background: linear-gradient(90deg, var(--violet), var(--purple));
}

.metric-card.group-channel::before {
  background: linear-gradient(90deg, var(--strawberry), var(--orange));
}

.metric-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.metric-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.metric-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

.metric-example {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  background: rgba(255, 95, 0, .10);
  border: 1px solid rgba(255, 95, 0, .20);
  padding: 3px 10px;
  border-radius: 100px;
}

/* section-light override */
.section-light .metric-card {
  background: var(--surface-light-2);
  border-color: var(--border-light);
}

.section-light .metric-name {
  color: var(--text-dark);
}

.section-light .metric-desc {
  color: var(--text-dark-muted);
}

/* ── SEGMENTACIÓN ────────────────────────────────────────── */
.segments-section {
  padding: 100px 0;
}

.segments-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 52px;
}

.segment-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.segment-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: all .25s ease;
}

.segment-card:hover {
  transform: translateX(4px);
  border-color: rgba(255, 95, 0, .40);
}

.segment-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
}

.segment-card.vip::before {
  background: var(--yellow);
}

.segment-card.frecuente::before {
  background: var(--orange);
}

.segment-card.ocasional::before {
  background: var(--violet);
}

.segment-card.en-riesgo::before {
  background: var(--strawberry);
}

.segment-card.inactivo::before {
  background: var(--gray-400);
}

.seg-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.seg-info {
  flex: 1;
}

.seg-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.segment-card.vip .seg-name {
  color: var(--yellow);
}

.segment-card.frecuente .seg-name {
  color: var(--orange);
}

.segment-card.ocasional .seg-name {
  color: #C9A0FF;
}

.segment-card.en-riesgo .seg-name {
  color: var(--strawberry);
}

.segment-card.inactivo .seg-name {
  color: var(--gray-400);
}

.seg-criteria {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.5;
}

.seg-count {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: rgba(255, 255, 255, .30);
  flex-shrink: 0;
  font-style: italic;
}

/* Segmentation copy column */
.segments-copy .dian-item-icon {
  background: rgba(255, 95, 0, .10);
  border-color: rgba(255, 95, 0, .20);
}

/* Light override */
.section-light .segment-card {
  background: var(--surface-light-2);
  border-color: var(--border-light);
}

.section-light .seg-criteria {
  color: var(--text-dark-muted);
}

.section-light .seg-count {
  color: rgba(21, 18, 36, .15);
}

/* ── PRÓXIMAMENTE — Automatizaciones Q3 ─────────────────── */
.coming-soon-section {
  padding: 80px 0;
}

.coming-soon-card {
  background: linear-gradient(135deg, rgba(255, 95, 0, .08), rgba(105, 0, 204, .08));
  border: 1px solid rgba(255, 95, 0, .25);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.coming-soon-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 0, .12), transparent 70%);
  pointer-events: none;
}

.coming-soon-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 0, 204, .12), transparent 70%);
  pointer-events: none;
}

.coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 95, 0, .12);
  border: 1px solid rgba(255, 95, 0, .30);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.coming-soon-card h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.coming-soon-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.automations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.automation-chip {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.automation-chip .ac-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.automation-chip .ac-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .80);
  margin-bottom: 4px;
}

.automation-chip .ac-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.5;
}

.automation-chip.available {
  background: rgba(34, 197, 94, .06);
  border-color: rgba(34, 197, 94, .20);
}

.automation-chip.available .ac-title {
  color: #22C55E;
}

.automation-chip.soon {
  background: rgba(255, 95, 0, .06);
  border-color: rgba(255, 95, 0, .20);
}

.automation-chip.soon .ac-title {
  color: var(--orange);
}

.coming-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .50);
  position: relative;
  z-index: 1;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 2s infinite;
}

/* ── CRM FEATURES GRID ───────────────────────────────────── */
.crm-features-section {
  padding: 100px 0;
}

.crm-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.crm-feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.crm-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 95, 0, .38);
  box-shadow: 0 20px 50px rgba(255, 95, 0, .10);
}

.crm-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--strawberry));
  opacity: 0;
  transition: opacity .3s;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.crm-feature-card:hover::before {
  opacity: 1;
}

.sfc-icon-crm {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(255, 95, 0, .10);
  border: 1px solid rgba(255, 95, 0, .20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.crm-feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.crm-feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .60);
  line-height: 1.7;
}

.section-light .crm-feature-card {
  background: var(--surface-light-2);
  border-color: var(--border-light);
}

.section-light .crm-feature-card h3 {
  color: var(--text-dark);
}

.section-light .crm-feature-card p {
  color: var(--text-dark-muted);
}

.section-light .sfc-icon-crm {
  background: rgba(255, 95, 0, .07);
  border-color: rgba(255, 95, 0, .14);
}

/* ── RESPONSIVE niceCRM ──────────────────────────────────── */
@media (max-width: 1024px) {
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .segments-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .crm-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .crm-features-grid {
    grid-template-columns: 1fr;
  }

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

  .coming-soon-card {
    padding: 32px 20px;
  }
}

/*REPORTE RESTAURANTES*/
/* ============================================================
   niceanalytics.css — /reportes-restaurantes
   Acento: Violet #6900CC (módulo niceANALYTICS)
   Depende de landing.css. Solo lo nuevo aquí.
   ============================================================ */

/* ── HERO tinte violeta analytics ───────────────────────── */
.module-hero.analytics-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 60% at 54% 42%, rgba(105, 0, 204, .26) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 78%, rgba(246, 0, 118, .14) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 6% 18%, rgba(255, 203, 3, .08) 0%, transparent 60%);
  pointer-events: none;
}

.module-hero-chip.analytics-chip {
  background: rgba(105, 0, 204, .15);
  border-color: rgba(105, 0, 204, .42);
  color: #C9A0FF;
}

/* ── DASHBOARD MOCKUP ────────────────────────────────────── */
/* Replica la interfaz real: fondo claro con sidebar oscuro
   y gráficos coloridos, como los screenshots del app */
.analytics-visual-wrap {
  position: relative;
}

.analytics-screen {
  background: var(--surface-light-2);
  border: 1px solid rgba(21, 18, 36, .12);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 50px rgba(105, 0, 204, .18), var(--shadow-card);
  overflow: hidden;
}

/* Dark topbar */
.analytics-topbar {
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.analytics-topbar-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 7px;
}

.analytics-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  animation: blink 1.6s infinite;
}

.analytics-export-btn {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  background: rgba(34, 197, 94, .15);
  border: 1px solid rgba(34, 197, 94, .30);
  color: #22C55E;
  padding: 4px 10px;
  border-radius: 100px;
  cursor: pointer;
}

/* KPI strip — light bg */
.analytics-kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(21, 18, 36, .08);
}

.analytics-kpi {
  padding: 12px 14px;
  border-right: 1px solid rgba(21, 18, 36, .07);
}

.analytics-kpi:last-child {
  border-right: none;
}

.akpi-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(21, 18, 36, .42);
  margin-bottom: 4px;
}

.akpi-value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.akpi-delta {
  font-size: 10px;
  font-weight: 700;
  margin-top: 3px;
}

.akpi-delta.up {
  color: #22C55E;
}

.akpi-delta.down {
  color: #EF4444;
}

/* Charts area */
.analytics-charts {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
}

.analytics-chart-box {
  padding: 14px;
  border-right: 1px solid rgba(21, 18, 36, .06);
  border-bottom: 1px solid rgba(21, 18, 36, .06);
}

.analytics-chart-box:nth-child(even) {
  border-right: none;
}

.analytics-chart-box:last-child,
.analytics-chart-box:nth-last-child(2) {
  border-bottom: none;
}

.acb-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

/* Simulated line chart */
.chart-lines {
  position: relative;
  height: 60px;
}

.chart-line-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Simulated bar chart */
.chart-bars-h {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.chart-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chart-bar-label {
  font-size: 10px;
  color: rgba(21, 18, 36, .55);
  width: 52px;
  flex-shrink: 0;
  text-align: right;
}

.chart-bar-track {
  flex: 1;
  height: 10px;
  background: rgba(21, 18, 36, .07);
  border-radius: 100px;
  overflow: hidden;
}

.chart-bar-fill {
  height: 100%;
  border-radius: 100px;
  animation: fillBar .8s ease both;
}

.chart-bar-val {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dark);
  width: 44px;
  flex-shrink: 0;
}

/* Donut chart sim */
.chart-donut-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.chart-donut {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.chart-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: rgba(21, 18, 36, .65);
}

.legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Export footer */
.analytics-footer {
  background: #F0F0F0;
  border-top: 1px solid rgba(21, 18, 36, .08);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(21, 18, 36, .40);
}

.analytics-footer-btns {
  display: flex;
  gap: 6px;
}

.af-btn {
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .25);
  color: #16A34A;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  cursor: pointer;
}

/* ── REPORT CATEGORIES ───────────────────────────────────── */
.reports-section {
  padding: 100px 0;
}

.reports-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.report-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  cursor: pointer;
  transition: all .22s ease;
}

.report-tab-btn:hover {
  border-color: rgba(105, 0, 204, .50);
  color: var(--white);
  background: rgba(105, 0, 204, .12);
}

.report-tab-btn.active {
  background: rgba(105, 0, 204, .20);
  border-color: var(--violet);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(105, 0, 204, .20);
}

.rtb-icon {
  font-size: 18px;
}

/* Report panel */
.report-panels {}

.report-panel {
  display: none;
  animation: panelIn .3s ease;
}

.report-panel.active {
  display: block;
}

.report-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.report-panel-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.report-panel-copy p {
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  margin-bottom: 24px;
}

.report-insights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.report-insight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(105, 0, 204, .08);
  border: 1px solid rgba(105, 0, 204, .18);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.ri-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.ri-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--white);
}

.ri-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.55;
  margin: 0;
}

/* Report visual card */
.report-visual-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.rvc-header {
  background: rgba(105, 0, 204, .10);
  border-bottom: 1px solid rgba(105, 0, 204, .15);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rvc-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.rvc-export {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #22C55E;
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .22);
  padding: 4px 10px;
  border-radius: 100px;
}

.rvc-body {
  padding: 18px;
}

/* ── MENU ENGINEERING SECTION ───────────────────────────── */
.menu-eng-section {
  padding: 80px 0;
}

.menu-eng-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.menu-matrix {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mm-header {
  background: rgba(105, 0, 204, .10);
  border-bottom: 1px solid rgba(105, 0, 204, .15);
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.mm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 4px;
}

.mm-quadrant {
  padding: 16px;
  border-radius: var(--radius-sm);
  margin: 4px;
}

.mm-quadrant.stars {
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .18);
}

.mm-quadrant.puzzles {
  background: rgba(255, 203, 3, .08);
  border: 1px solid rgba(255, 203, 3, .15);
}

.mm-quadrant.horses {
  background: rgba(105, 0, 204, .10);
  border: 1px solid rgba(105, 0, 204, .18);
}

.mm-quadrant.dogs {
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .14);
}

.mm-q-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.mm-quadrant.stars .mm-q-label {
  color: #22C55E;
}

.mm-quadrant.puzzles .mm-q-label {
  color: var(--yellow);
}

.mm-quadrant.horses .mm-q-label {
  color: #C9A0FF;
}

.mm-quadrant.dogs .mm-q-label {
  color: #EF4444;
}

.mm-q-axis {
  font-size: 10px;
  color: rgba(255, 255, 255, .40);
  margin-bottom: 8px;
}

.mm-q-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mm-item {
  font-size: 11px;
  color: rgba(255, 255, 255, .70);
  background: rgba(255, 255, 255, .06);
  border-radius: 4px;
  padding: 3px 8px;
}

/* ── MOBILE ACCESS ───────────────────────────────────────── */
.mobile-section {
  padding: 80px 0;
}

.mobile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mobile-phone {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 16px;
  max-width: 260px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(105, 0, 204, .18), var(--shadow-card);
}

.mobile-phone-bar {
  background: var(--black);
  border-radius: 12px 12px 0 0;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.mobile-phone-bar span {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
}

.mobile-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.m-kpi {
  background: rgba(105, 0, 204, .12);
  border: 1px solid rgba(105, 0, 204, .20);
  border-radius: var(--radius-sm);
  padding: 10px;
}

.m-kpi-label {
  font-size: 9px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 4px;
}

.m-kpi-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
}

.m-kpi-delta {
  font-size: 9px;
  font-weight: 700;
}

.m-kpi-delta.up {
  color: #22C55E;
}

.m-kpi-delta.down {
  color: #EF4444;
}

.mobile-mini-chart {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin-bottom: 8px;
}

.mmc-label {
  font-size: 9px;
  color: rgba(255, 255, 255, .40);
  margin-bottom: 8px;
}

.mmc-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
}

.mmc-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  animation: growUp .8s ease both;
}

.mobile-export-row {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.mob-exp-btn {
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .22);
  color: #22C55E;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  cursor: pointer;
}

/* ── ANALYTICS FEATURES ──────────────────────────────────── */
.analytics-features-section {
  padding: 100px 0;
}

.analytics-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.analytics-feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.analytics-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(105, 0, 204, .42);
  box-shadow: 0 20px 50px rgba(105, 0, 204, .12);
}

.analytics-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--purple));
  opacity: 0;
  transition: opacity .3s;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.analytics-feature-card:hover::before {
  opacity: 1;
}

.sfc-icon-analytics {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(105, 0, 204, .12);
  border: 1px solid rgba(105, 0, 204, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.analytics-feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.analytics-feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .60);
  line-height: 1.7;
}

.section-light .analytics-feature-card {
  background: var(--surface-light-2);
  border-color: var(--border-light);
}

.section-light .analytics-feature-card h3 {
  color: var(--text-dark);
}

.section-light .analytics-feature-card p {
  color: var(--text-dark-muted);
}

.section-light .sfc-icon-analytics {
  background: rgba(105, 0, 204, .07);
  border-color: rgba(105, 0, 204, .14);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width:1024px) {
  .report-panel-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .menu-eng-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mobile-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .analytics-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .analytics-kpi-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .analytics-charts {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px) {
  .analytics-features-grid {
    grid-template-columns: 1fr;
  }

  .reports-tabs {
    gap: 6px;
  }

  .report-tab-btn {
    font-size: 13px;
    padding: 8px 14px;
  }

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

/* NICELINK*/
/* ============================================================
   nicelink.css — /es/nicelink-restaurantes
   Depende de landing.css. Solo lo nuevo aquí.
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.nicelink-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}

.nicelink-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 15% 50%, rgba(105, 0, 204, .25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 30%, rgba(246, 0, 118, .15) 0%, transparent 55%),
    radial-gradient(ellipse 35% 45% at 50% 90%, rgba(255, 203, 3, .07) 0%, transparent 55%);
  pointer-events: none;
}

.nicelink-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(105, 0, 204, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 0, 204, .05) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.nicelink-hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.nicelink-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin-bottom: 22px;
}

.nicelink-hero-copy p {
  font-size: 17px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}

/* Freemium badge */
.nicelink-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(34, 197, 94, .15), rgba(22, 163, 74, .10));
  border: 1px solid rgba(34, 197, 94, .30);
  border-radius: 100px;
  padding: 7px 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #22C55E;
  margin-bottom: 24px;
}

.nicelink-free-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.7);
  }
}

/* ── TELÉFONO MOCK ───────────────────────────────────────── */
.nicelink-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Glow detrás del teléfono */
.nicelink-phone-wrap::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(105, 0, 204, .35) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.nicelink-phone {
  width: 270px;
  background: #0D0B1A;
  border-radius: 40px;
  border: 8px solid #2A2545;
  box-shadow:
    0 0 0 2px rgba(105, 0, 204, .25),
    0 32px 80px rgba(0, 0, 0, .70),
    0 8px 24px rgba(105, 0, 204, .20);
  overflow: hidden;
  position: relative;
  z-index: 1;
  animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Notch */
.nicelink-phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #0D0B1A;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-inner {
  height: 580px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}

.phone-inner::-webkit-scrollbar {
  display: none;
}

/* Barra superior del restaurante */
.phone-topbar {
  padding: 10px 14px 6px;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .04em;
}

/* Logo del restaurante */
.phone-logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 16px 12px;
  gap: 8px;
}

.phone-logo-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 3px solid rgba(255, 255, 255, .20);
}

.phone-restaurant-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
}

.phone-restaurant-desc {
  font-size: 10px;
  text-align: center;
  opacity: .65;
  line-height: 1.45;
  padding: 0 10px;
}

/* Íconos redes sociales */
.phone-social-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 6px 0 12px;
}

.phone-social-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, .25);
  opacity: .80;
}

/* Links del restaurante */
.phone-links {
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-link-btn {
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: default;
}

.phone-link-with-img {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  padding: 8px 10px;
  border: none;
}

.phone-link-img-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.phone-link-text-col {
  flex: 1;
  text-align: left;
}

.phone-link-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
}

.phone-link-sub {
  font-size: 9px;
  opacity: .60;
  margin-top: 2px;
}

/* WiFi link */
.phone-wifi-link {
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid;
}

.phone-wifi-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.phone-wifi-name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
}

.phone-wifi-pass {
  font-size: 9px;
  opacity: .55;
  font-family: monospace;
  letter-spacing: .04em;
}

/* Branding niceeat al pie del teléfono */
.phone-niceeat-brand {
  text-align: center;
  padding: 12px 0 16px;
  font-size: 9px;
  opacity: .40;
  font-weight: 600;
  letter-spacing: .04em;
}

/* Segundo teléfono flotante (stats) */
.nicelink-phone-stats {
  position: absolute;
  right: -40px;
  top: 30px;
  width: 130px;
  background: rgba(28, 24, 48, .95);
  border: 1px solid rgba(105, 0, 204, .35);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .50);
  animation: statsFloat 4s ease-in-out infinite;
  animation-delay: .8s;
}

@keyframes statsFloat {

  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

.stats-mini-title {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 8px;
}

.stats-mini-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stats-mini-item {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.stats-mini-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stats-mini-lbl {
  font-size: 9px;
  color: rgba(255, 255, 255, .45);
}

.stats-mini-badge {
  font-size: 8px;
  font-weight: 700;
  color: #22C55E;
  background: rgba(34, 197, 94, .12);
  padding: 1px 5px;
  border-radius: 100px;
  margin-left: auto;
}

/* ── PLG LOOP ────────────────────────────────────────────── */
.nicelink-loop-section {
  padding: 100px 0;
}

.loop-diagram {
  max-width: 800px;
  margin: 52px auto 0;
  position: relative;
}

/* Arco central */
.loop-diagram::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px dashed rgba(105, 0, 204, .22);
}

.loop-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.loop-step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 18px;
  position: relative;
  transition: all .3s ease;
}

.loop-step:hover {
  transform: translateY(-4px);
  border-color: rgba(105, 0, 204, .40);
  box-shadow: 0 12px 32px rgba(105, 0, 204, .12);
}

.loop-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--strawberry));
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.loop-step-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.loop-step h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--white);
}

.loop-step p {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.55;
}

/* Arrow connectors */
.loop-step::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(105, 0, 204, .45);
  font-size: 16px;
  font-weight: 700;
  z-index: 2;
}

.loop-step:nth-child(3)::after,
.loop-step:nth-child(6)::after {
  content: none;
}

/* Segunda fila de flechas apuntando hacia abajo y left */
.loop-step:nth-child(4)::before {
  content: '↑';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(105, 0, 204, .45);
  font-size: 16px;
  font-weight: 700;
}

/* ── FUNCIONALIDADES GRID ────────────────────────────────── */
.nicelink-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.nicelink-feat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.nicelink-feat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(105, 0, 204, .40);
  box-shadow: 0 16px 40px rgba(105, 0, 204, .12);
}

.nicelink-feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--strawberry));
  opacity: 0;
  transition: opacity .3s;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.nicelink-feat-card:hover::before {
  opacity: 1;
}

.nicelink-feat-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.nicelink-feat-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 7px;
  color: var(--white);
}

.nicelink-feat-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
}

.nicelink-feat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  margin-top: 12px;
}

.badge-free {
  background: rgba(34, 197, 94, .12);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, .22);
}

.badge-pro {
  background: rgba(105, 0, 204, .12);
  color: #C9A0FF;
  border: 1px solid rgba(105, 0, 204, .22);
}

/* ── VS COMPETENCIA ──────────────────────────────────────── */
.nicelink-vs-section {
  padding: 100px 0;
}

.vs-table-wrap {
  overflow-x: auto;
  margin-top: 48px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}

.vs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.vs-table thead th {
  padding: 14px 18px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .03);
  border-bottom: 1px solid var(--border);
  color: rgba(255, 255, 255, .55);
}

.vs-table thead th.vs-nicelink {
  background: rgba(105, 0, 204, .12);
  color: #C9A0FF;
  border-bottom: 1px solid rgba(105, 0, 204, .25);
}

.vs-table thead th:first-child {
  text-align: left;
}

.vs-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.vs-table tbody tr:last-child {
  border-bottom: none;
}

.vs-table tbody tr:hover td {
  background: rgba(105, 0, 204, .04);
}

.vs-table tbody td {
  padding: 13px 18px;
  text-align: center;
  color: rgba(255, 255, 255, .65);
}

.vs-table tbody td:first-child {
  text-align: left;
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
}

.vs-table tbody td.vs-nicelink {
  background: rgba(105, 0, 204, .06);
  color: var(--white);
  font-weight: 600;
}

.vs-check {
  color: #22C55E;
  font-size: 15px;
}

.vs-cross {
  color: rgba(255, 255, 255, .25);
  font-size: 15px;
}

.vs-partial {
  color: #FFCB03;
  font-size: 11px;
  font-weight: 600;
}

/* ── CTA FINAL ───────────────────────────────────────────── */
.nicelink-cta-section {
  padding: 0 0 100px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nicelink-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .nicelink-phone-wrap {
    justify-content: center;
  }

  .nicelink-phone-stats {
    right: 20px;
  }

  .nicelink-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .loop-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nicelink-features-grid {
    grid-template-columns: 1fr;
  }

  .loop-steps {
    grid-template-columns: 1fr;
  }

  .loop-step::after {
    content: '↓';
    right: auto;
    left: 50%;
    top: auto;
    bottom: -14px;
    transform: translateX(-50%);
  }

  .loop-step:nth-child(even)::after {
    content: none;
  }
}

/* ============================================================
   niceaccounting.css — /es/software-contable-restaurantes
   Depende de landing.css. Solo lo nuevo aquí.
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.accounting-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.accounting-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 45%, rgba(22, 163, 74, .20) 0%, transparent 62%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(105, 0, 204, .15) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 6% 78%, rgba(34, 197, 94, .08) 0%, transparent 55%);
  pointer-events: none;
}

.accounting-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 197, 94, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, .04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 40%, transparent 100%);
}

.accounting-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.accounting-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 20px;
}

.accounting-hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 500px;
}

/* Badge del módulo */
.accounting-module-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .28);
  border-radius: var(--r-md);
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: #22C55E;
  letter-spacing: .04em;
  margin-bottom: 22px;
}

/* ── DASHBOARD VISUAL ────────────────────────────────────── */
.accounting-dashboard {
  background: #12101E;
  border: 1px solid rgba(34, 197, 94, .22);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 0 50px rgba(34, 197, 94, .10), 0 32px 80px rgba(0, 0, 0, .55);
  animation: dashboardFloat 5s ease-in-out infinite;
}

@keyframes dashboardFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.adash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: rgba(34, 197, 94, .06);
  border-bottom: 1px solid rgba(34, 197, 94, .12);
}

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

.adash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.adash-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: rgba(34, 197, 94, .60);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.adash-body {
  padding: 16px;
}

/* KPI row */
.adash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.adash-kpi {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--r-sm);
  padding: 10px;
  text-align: center;
}

.adash-kpi-val {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 3px;
}

.adash-kpi-lbl {
  font-size: 9px;
  color: rgba(255, 255, 255, .40);
}

/* Gráfico de barras */
.adash-chart-wrap {
  margin-bottom: 14px;
}

.adash-chart-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .30);
  margin-bottom: 7px;
}

.adash-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 56px;
}

.adash-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  min-height: 3px;
}

.adash-bar-months {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}

.adash-bar-months span {
  font-size: 8px;
  color: rgba(255, 255, 255, .25);
}

/* Tabla de asientos */
.adash-table {
  margin-top: 12px;
}

.adash-table-head {
  display: grid;
  grid-template-columns: 1fr 1fr 70px;
  padding: 5px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.adash-th {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .30);
}

.adash-row {
  display: grid;
  grid-template-columns: 1fr 1fr 70px;
  padding: 6px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  align-items: center;
}

.adash-row:last-child {
  border-bottom: none;
}

.adash-cell-label {
  font-size: 10px;
  color: rgba(255, 255, 255, .65);
}

.adash-cell-type {
  font-size: 9px;
  color: rgba(255, 255, 255, .35);
}

.adash-cell-val {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-align: right;
}

/* ── PROBLEMA / SOLUCIÓN ─────────────────────────────────── */
.accounting-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 52px;
}

.aproblem-card {
  background: rgba(246, 0, 118, .06);
  border: 1px solid rgba(246, 0, 118, .14);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  transition: all .25s;
}

.aproblem-card:hover {
  border-color: rgba(246, 0, 118, .28);
  transform: translateY(-3px);
}

.aproblem-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.aproblem-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 7px;
  color: var(--white);
}

.aproblem-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.60;
}

/* Flecha de solución */
.accounting-solution-arrow {
  text-align: center;
  padding: 32px 0;
  font-size: 28px;
  color: rgba(34, 197, 94, .40);
  position: relative;
}

.accounting-solution-arrow::before,
.accounting-solution-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(34, 197, 94, .25), transparent);
}

.accounting-solution-arrow::before {
  left: 0;
}

.accounting-solution-arrow::after {
  right: 0;
}

/* ── FEATURES GRID ───────────────────────────────────────── */
.accounting-features-section {
  padding: 100px 0;
}

.accounting-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.af-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
  flex-direction: column;
}

.af-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 197, 94, .40);
  box-shadow: 0 16px 40px rgba(34, 197, 94, .08);
}

.af-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22C55E, #16A34A);
  opacity: 0;
  transition: opacity .3s;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.af-card:hover::before {
  opacity: 1;
}

.af-icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: block;
}

.af-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 7px;
  color: var(--white);
}

.af-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
  flex: 1;
}

.af-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  margin-top: 14px;
  align-self: flex-start;
}

.tag-auto {
  background: rgba(34, 197, 94, .10);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, .20);
}

.tag-co {
  background: rgba(255, 203, 3, .10);
  color: var(--yellow);
  border: 1px solid rgba(255, 203, 3, .20);
}

.tag-integ {
  background: rgba(105, 0, 204, .10);
  color: #C9A0FF;
  border: 1px solid rgba(105, 0, 204, .20);
}

.tag-fiscal {
  background: rgba(255, 95, 0, .10);
  color: var(--orange);
  border: 1px solid rgba(255, 95, 0, .22);
}

/* ── CUMPLIMIENTO NORMATIVO ──────────────────────────────── */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.compliance-norm-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
  transition: all .2s;
}

.compliance-norm-card:hover {
  border-color: rgba(34, 197, 94, .30);
  transform: translateX(3px);
}

.cnc-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .20);
}

.cnc-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--white);
}

.cnc-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .50);
  line-height: 1.55;
}

/* ── INTEGRATION FLOW ────────────────────────────────────── */
.integration-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 52px;
}

.if-module {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .25s;
  min-width: 150px;
}

.if-module:hover {
  border-color: rgba(34, 197, 94, .40);
  transform: translateY(-3px);
}

.if-module-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.if-module-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
}

.if-module-flow {
  font-size: 10px;
  color: rgba(255, 255, 255, .40);
  margin-top: 1px;
}

.if-arrow {
  font-size: 18px;
  color: rgba(34, 197, 94, .40);
  flex-shrink: 0;
}

.if-module.accounting-dest {
  background: rgba(34, 197, 94, .08);
  border-color: rgba(34, 197, 94, .30);
  box-shadow: 0 0 20px rgba(34, 197, 94, .10);
}

.if-module.accounting-dest .if-module-name {
  color: #22C55E;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .accounting-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .accounting-problem-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .accounting-features-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .adash-kpis {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .accounting-features-grid {
    grid-template-columns: 1fr;
  }

  .adash-kpis {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   niceteams.css — /es/software-recursos-humanos-restaurantes
   Depende de landing.css. Solo lo nuevo aquí.
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.teams-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.teams-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 45%, rgba(255, 95, 0, .18) 0%, transparent 62%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(246, 0, 118, .14) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 6% 78%, rgba(105, 0, 204, .10) 0%, transparent 55%);
  pointer-events: none;
}

.teams-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 95, 0, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 95, 0, .04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 40%, transparent 100%);
}

.teams-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.teams-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 20px;
}

.teams-hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 500px;
}

.teams-module-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 95, 0, .10);
  border: 1px solid rgba(255, 95, 0, .28);
  border-radius: var(--r-md);
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: .04em;
  margin-bottom: 22px;
}

/* ── DASHBOARD VISUAL ────────────────────────────────────── */
.teams-dashboard {
  background: #12101E;
  border: 1px solid rgba(255, 95, 0, .22);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 0 50px rgba(255, 95, 0, .10), 0 32px 80px rgba(0, 0, 0, .55);
  animation: teamsFloat 5s ease-in-out infinite;
}

@keyframes teamsFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.tdash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: rgba(255, 95, 0, .06);
  border-bottom: 1px solid rgba(255, 95, 0, .12);
}

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

.tdash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.tdash-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 95, 0, .60);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.tdash-body {
  padding: 16px;
}

/* KPI strip */
.tdash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.tdash-kpi {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--r-sm);
  padding: 10px;
  text-align: center;
}

.tdash-kpi-val {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 3px;
}

.tdash-kpi-lbl {
  font-size: 9px;
  color: rgba(255, 255, 255, .40);
}

/* Horario semanal mini */
.tdash-schedule {
  margin-bottom: 14px;
}

.tdash-schedule-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .30);
  margin-bottom: 7px;
}

.tdash-schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.tdash-day-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tdash-day-label {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, .25);
  text-align: center;
  margin-bottom: 2px;
}

.tdash-shift {
  border-radius: 3px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 700;
  color: rgba(255, 255, 255, .70);
}

/* Lista de empleados del día */
.tdash-staff-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .30);
  margin-bottom: 7px;
}

.tdash-staff-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tdash-staff-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 5px;
  font-size: 10px;
}

.tdash-staff-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tdash-staff-name {
  flex: 1;
  color: rgba(255, 255, 255, .70);
  font-weight: 600;
}

.tdash-staff-role {
  font-size: 9px;
  color: rgba(255, 255, 255, .35);
}

.tdash-staff-status {
  font-size: 9px;
  font-weight: 700;
}

/* Barra nómina */
.tdash-payroll {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.tdash-payroll-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.tdash-payroll-label {
  font-size: 9px;
  color: rgba(255, 255, 255, .35);
}

.tdash-payroll-val {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--orange);
}

.tdash-payroll-bar {
  height: 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .07);
  overflow: hidden;
}

.tdash-payroll-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--orange), var(--strawberry));
}

/* ── PROBLEMA CARDS ──────────────────────────────────────── */
.teams-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.tproblem-card {
  background: rgba(246, 0, 118, .06);
  border: 1px solid rgba(246, 0, 118, .14);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  transition: all .25s;
}

.tproblem-card:hover {
  border-color: rgba(246, 0, 118, .28);
  transform: translateY(-3px);
}

.tproblem-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.tproblem-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 7px;
  color: var(--white);
}

.tproblem-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.60;
}

/* ── FEATURES GRID ───────────────────────────────────────── */
.teams-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.tf-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
  flex-direction: column;
}

.tf-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 95, 0, .40);
  box-shadow: 0 16px 40px rgba(255, 95, 0, .08);
}

.tf-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--strawberry));
  opacity: 0;
  transition: opacity .3s;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.tf-card:hover::before {
  opacity: 1;
}

.tf-icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: block;
}

.tf-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 7px;
  color: var(--white);
}

.tf-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
  flex: 1;
}

.tf-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  margin-top: 14px;
  align-self: flex-start;
}

.tag-teams-core {
  background: rgba(255, 95, 0, .10);
  color: var(--orange);
  border: 1px solid rgba(255, 95, 0, .22);
}

.tag-teams-co {
  background: rgba(255, 203, 3, .10);
  color: var(--yellow);
  border: 1px solid rgba(255, 203, 3, .20);
}

.tag-teams-int {
  background: rgba(105, 0, 204, .10);
  color: #C9A0FF;
  border: 1px solid rgba(105, 0, 204, .20);
}

.tag-teams-doc {
  background: rgba(34, 197, 94, .10);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, .20);
}

/* ── CÁLCULO NÓMINA VISUAL ───────────────────────────────── */
.payroll-breakdown {
  background: var(--card-bg);
  border: 1px solid rgba(255, 95, 0, .22);
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
}

.pb-header {
  background: rgba(255, 95, 0, .08);
  border-bottom: 1px solid rgba(255, 95, 0, .14);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
}

.pb-body {
  padding: 20px;
}

.pb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: 13px;
}

.pb-row:last-child {
  border-bottom: none;
}

.pb-row.pb-total {
  padding-top: 14px;
  margin-top: 4px;
  border-top: 2px solid rgba(255, 95, 0, .20);
  border-bottom: none;
}

.pb-concept {
  color: rgba(255, 255, 255, .70);
}

.pb-amount {
  font-family: var(--font-display);
  font-weight: 700;
}

.pb-row.pb-plus .pb-amount {
  color: #22C55E;
}

.pb-row.pb-minus .pb-amount {
  color: #FF80B0;
}

.pb-row.pb-total .pb-concept {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--white);
  font-size: 14px;
}

.pb-row.pb-total .pb-amount {
  color: var(--orange);
  font-size: 18px;
}

.pb-type-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  margin-left: 6px;
}

.pb-devengado {
  background: rgba(34, 197, 94, .10);
  color: #22C55E;
}

.pb-deduccion {
  background: rgba(246, 0, 118, .10);
  color: #FF80B0;
}

/* ── CUMPLIMIENTO LABORAL ────────────────────────────────── */
.labor-compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.lc-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
  transition: all .2s;
}

.lc-card:hover {
  border-color: rgba(255, 95, 0, .30);
  transform: translateX(3px);
}

.lc-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: rgba(255, 95, 0, .10);
  border: 1px solid rgba(255, 95, 0, .20);
}

.lc-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--white);
}

.lc-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .50);
  line-height: 1.55;
}

/* ── CONTRATOS FEATURE ───────────────────────────────────── */
.contract-showcase {
  background: var(--card-bg);
  border: 1px solid rgba(34, 197, 94, .22);
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
}

.cs-header {
  background: rgba(34, 197, 94, .08);
  border-bottom: 1px solid rgba(34, 197, 94, .14);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: #22C55E;
}

.cs-body {
  padding: 18px;
}

.cs-doc {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-md);
  padding: 14px;
  margin-bottom: 12px;
  font-size: 12px;
}

.cs-doc-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.cs-doc-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, .40);
  margin-bottom: 10px;
}

.cs-signature-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(34, 197, 94, .06);
  border: 1px solid rgba(34, 197, 94, .15);
  border-radius: var(--r-sm);
}

.cs-sig-icon {
  font-size: 16px;
}

.cs-sig-text {
  font-size: 11px;
  color: #22C55E;
  font-weight: 600;
}

.cs-sig-check {
  margin-left: auto;
  color: #22C55E;
  font-size: 14px;
  font-weight: 800;
}

.cs-types {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cs-type-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .60);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .teams-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .teams-problem-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .teams-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .labor-compliance-grid {
    grid-template-columns: 1fr;
  }

  .tdash-kpis {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .teams-features-grid {
    grid-template-columns: 1fr;
  }

  .tdash-schedule-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   PRÓXIMAMENTE - niceACCOUNTING y niceTEAMS
   Depende de landing.css. Solo lo nuevo aquí.
   ============================================================ */

/* ── COMING SOON BANNER ──────────────────────────────────── */
.module-soon-bar {
  background: linear-gradient(90deg, rgba(105, 0, 204, .90), rgba(167, 0, 204, .80));
  padding: 11px 0;
  text-align: center;
  position: relative;
  z-index: 900;
}

.module-soon-bar p {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.soon-bar-badge {
  background: rgba(255, 255, 255, .20);
  border-radius: 100px;
  padding: 2px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── HERO ────────────────────────────────────────────────── */
.module-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}

.module-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Accounting — azul/verde */
.accounting-hero::before {
  background:
    radial-gradient(ellipse 65% 55% at 50% 45%, rgba(22, 163, 74, .18) 0%, transparent 62%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(105, 0, 204, .15) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 6% 78%, rgba(34, 197, 94, .08) 0%, transparent 55%);
}

/* Teams — naranja/violeta */
.teams-hero::before {
  background:
    radial-gradient(ellipse 65% 55% at 50% 45%, rgba(255, 95, 0, .16) 0%, transparent 62%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(246, 0, 118, .14) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 6% 78%, rgba(105, 0, 204, .10) 0%, transparent 55%);
}

.module-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(105, 0, 204, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 0, 204, .04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 40%, transparent 100%);
}

.module-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.module-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 20px;
}

.module-hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 500px;
}

/* Module name badge */
.module-name-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--r-md);
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 22px;
}

.accounting-badge {
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .28);
  color: #22C55E;
}

.teams-badge {
  background: rgba(255, 95, 0, .12);
  border: 1px solid rgba(255, 95, 0, .28);
  color: var(--orange);
}

/* ── DASHBOARD VISUAL (hero right) ──────────────────────── */
.module-dashboard {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .04);
  animation: dashFloat 5s ease-in-out infinite;
}

@keyframes dashFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(.3deg);
  }
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

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

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .05em;
}

.dash-body {
  padding: 16px;
}

/* Mini stats row */
.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.dash-stat {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--r-sm);
  padding: 10px;
  text-align: center;
}

.dash-stat-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 3px;
}

.dash-stat-lbl {
  font-size: 9px;
  color: var(--gray-400);
}

/* Mini chart bars */
.dash-chart {
  margin-bottom: 14px;
}

.dash-chart-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 8px;
}

.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}

.dash-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  transition: height .8s ease;
  min-height: 4px;
}

.dash-bar-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}

.dash-bar-labels span {
  font-size: 8px;
  color: rgba(255, 255, 255, .28);
}

/* Mini list (items like ledger entries or shift entries) */
.dash-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--r-xs, 5px);
  font-size: 10px;
}

.dli-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dli-label {
  flex: 1;
  color: rgba(255, 255, 255, .65);
}

.dli-val {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
}

/* ── FEATURES GRID ───────────────────────────────────────── */
.module-features-section {
  padding: 100px 0;
}

.module-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.module-feat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.module-feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .40);
}

/* Top border on hover — color varies per module */
.module-feat-card.accounting-card::before,
.module-feat-card.teams-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity .3s;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.module-feat-card.accounting-card::before {
  background: linear-gradient(90deg, #22C55E, #16A34A);
}

.module-feat-card.teams-card::before {
  background: linear-gradient(90deg, var(--orange), var(--strawberry));
}

.module-feat-card:hover::before {
  opacity: 1;
}

.mfc-icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: block;
}

.mfc-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 7px;
  color: var(--white);
}

.mfc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
}

.mfc-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  margin-top: 12px;
}

.tag-accounting {
  background: rgba(34, 197, 94, .10);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, .20);
}

.tag-teams {
  background: rgba(255, 95, 0, .10);
  color: var(--orange);
  border: 1px solid rgba(255, 95, 0, .22);
}

.tag-colombia {
  background: rgba(255, 203, 3, .10);
  color: var(--yellow);
  border: 1px solid rgba(255, 203, 3, .20);
}

.tag-launch {
  background: rgba(246, 0, 118, .10);
  color: #FF80B0;
  border: 1px solid rgba(246, 0, 118, .20);
}

/* ── INTEGRATIONS ROW ────────────────────────────────────── */
.integrations-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.integration-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--r-md);
  padding: 9px 16px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .70);
  transition: all .2s;
}

.integration-chip:hover {
  border-color: rgba(105, 0, 204, .40);
  color: var(--white);
  background: rgba(105, 0, 204, .08);
}

.integration-chip.arrow {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .25);
  font-size: 20px;
  padding: 0 4px;
}

/* ── COLOMBIA COMPLIANCE SECTION ─────────────────────────── */
.compliance-section {
  padding: 80px 0;
}

.compliance-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.compliance-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.compliance-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all .2s;
}

.compliance-item:hover {
  border-color: rgba(34, 197, 94, .35);
  transform: translateX(4px);
}

.compliance-item.teams-item:hover {
  border-color: rgba(255, 95, 0, .30);
}

.ci-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.ci-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

.ci-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .52);
  line-height: 1.5;
}

/* ── WAITLIST FORM ───────────────────────────────────────── */
.waitlist-section {
  padding: 80px 0 100px;
}

.waitlist-card {
  max-width: 580px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.waitlist-card.accounting-wl {
  background: rgba(28, 24, 48, .92);
  border: 1px solid rgba(34, 197, 94, .28);
  box-shadow: 0 0 50px rgba(34, 197, 94, .10);
}

.waitlist-card.teams-wl {
  background: rgba(28, 24, 48, .92);
  border: 1px solid rgba(255, 95, 0, .28);
  box-shadow: 0 0 50px rgba(255, 95, 0, .10);
}

.waitlist-header {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.accounting-wl .waitlist-header {
  background: rgba(34, 197, 94, .08);
}

.teams-wl .waitlist-header {
  background: rgba(255, 95, 0, .08);
}

.wh-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.wh-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.wh-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
}

.waitlist-body {
  padding: 28px;
}

.wl-field {
  margin-bottom: 14px;
}

.wl-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 7px;
}

.wl-field input,
.wl-field select {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}

.wl-field input::placeholder {
  color: rgba(255, 255, 255, .25);
}

.accounting-wl .wl-field input:focus,
.accounting-wl .wl-field select:focus {
  border-color: rgba(34, 197, 94, .55);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .08);
}

.teams-wl .wl-field input:focus,
.teams-wl .wl-field select:focus {
  border-color: rgba(255, 95, 0, .55);
  box-shadow: 0 0 0 3px rgba(255, 95, 0, .08);
}

.wl-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B91B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.wl-field select option {
  background: #1C1830;
}

.wl-success {
  display: none;
  text-align: center;
  padding: 24px;
}

.wl-success.visible {
  display: block;
}

.wl-success-icon {
  font-size: 48px;
  margin-bottom: 14px;
}

.wl-success-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.wl-success-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
}

/* ── TIMELINE / ROADMAP ──────────────────────────────────── */
.roadmap-section {
  padding: 80px 0;
}

.roadmap-timeline {
  max-width: 680px;
  margin: 48px auto 0;
  position: relative;
  padding-left: 32px;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--violet), rgba(105, 0, 204, .10));
}

.roadmap-item {
  position: relative;
  margin-bottom: 28px;
}

.roadmap-item:last-child {
  margin-bottom: 0;
}

.roadmap-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--black);
  box-shadow: 0 0 0 3px rgba(105, 0, 204, .25);
}

/* Fases */
.roadmap-item.phase-done::before {
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .20);
}

.roadmap-item.phase-active::before {
  background: var(--violet);
  box-shadow: 0 0 0 3px rgba(105, 0, 204, .30), 0 0 0 6px rgba(105, 0, 204, .10);
  animation: pulseRm 2s ease-in-out infinite;
}

.roadmap-item.phase-soon::before {
  background: rgba(255, 255, 255, .20);
}

.roadmap-item.phase-future::before {
  background: rgba(255, 255, 255, .10);
}

@keyframes pulseRm {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(105, 0, 204, .30), 0 0 0 6px rgba(105, 0, 204, .10);
  }

  50% {
    box-shadow: 0 0 0 3px rgba(105, 0, 204, .50), 0 0 0 10px rgba(105, 0, 204, .05);
  }
}

.roadmap-phase {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.phase-done .roadmap-phase {
  color: #22C55E;
}

.phase-active .roadmap-phase {
  color: var(--violet);
}

.phase-soon .roadmap-phase {
  color: var(--yellow);
}

.phase-future .roadmap-phase {
  color: rgba(255, 255, 255, .35);
}

.roadmap-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.roadmap-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .52);
  line-height: 1.6;
}

.roadmap-item.phase-future .roadmap-title,
.roadmap-item.phase-future .roadmap-desc {
  opacity: .45;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .module-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .module-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compliance-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .module-features-grid {
    grid-template-columns: 1fr;
  }

  .dash-stats-row {
    grid-template-columns: 1fr 1fr;
  }
}



/*PRECIOS*/
/* ============================================================
   precios.css — /precios
   Depende de landing.css. Solo lo nuevo aquí.
   ============================================================ */

/* ── PRICING HERO (sin imagen, solo texto centrado) ──────── */
.pricing-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(105, 0, 204, .20) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 80% 80%, rgba(246, 0, 118, .10) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-hero-content {
  position: relative;
  z-index: 1;
}

.pricing-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.pricing-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  margin-bottom: 6px;
}

.pricing-hero-note {
  font-size: 15px;
  color: rgba(255, 255, 255, .45);
}

/* ── PRODUCT TYPE TABS (Completo vs Solo Tienda) ─────────── */
.product-type-section {
  padding: 0 0 80px;
}

.product-type-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.pt-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-xl);
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, .60);
  cursor: pointer;
  transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
}

.pt-tab:hover {
  border-color: rgba(105, 0, 204, .50);
  color: var(--white);
  background: rgba(105, 0, 204, .10);
}

.pt-tab.active {
  background: linear-gradient(135deg, var(--violet), var(--purple));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 6px 28px rgba(105, 0, 204, .40);
}

.pt-tab-icon {
  font-size: 20px;
}

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

.pt-tab-title {
  line-height: 1.2;
}

.pt-tab-desc {
  font-size: 11px;
  font-weight: 500;
  opacity: .70;
  margin-top: 1px;
}

/* Product tab panels */
.product-panel {
  display: none;
  animation: panelIn .3s ease;
}

.product-panel.active {
  display: block;
}

/* ── BILLING TOGGLE (shared) ─────────────────────────────── */
.billing-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}

.billing-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  cursor: pointer;
  transition: color .2s;
}

.billing-label.active {
  color: var(--white);
}

.billing-switch {
  position: relative;
  width: 52px;
  height: 28px;
}

.billing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.billing-switch .sw-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 100px;
  cursor: pointer;
  transition: background .3s;
}

.billing-switch .sw-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  left: 4px;
  top: 3px;
  transition: transform .3s;
}

.billing-switch input:checked+.sw-slider {
  background: var(--violet);
}

.billing-switch input:checked+.sw-slider::before {
  transform: translateX(24px);
}

.billing-save-badge {
  background: rgba(34, 197, 94, .15);
  border: 1px solid rgba(34, 197, 94, .30);
  color: #22C55E;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── PLAN GRIDS ──────────────────────────────────────────── */
.plan-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

.plan-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  align-items: start;
}

/* ── PLAN CARD ───────────────────────────────────────────── */
.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  position: relative;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* Featured plan (PRO) */
.plan-card.featured {
  border: 1.5px solid var(--violet);
  background: linear-gradient(160deg, rgba(105, 0, 204, .14), rgba(167, 0, 204, .08));
  box-shadow: 0 0 50px rgba(105, 0, 204, .22);
}

.plan-card.featured:hover {
  box-shadow: 0 12px 60px rgba(105, 0, 204, .35);
}

/* Popular badge */
.plan-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--strawberry), var(--purple));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Plan header */
.plan-tier {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.plan-card.featured .plan-tier {
  color: #C9A0FF;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 4px;
}

.plan-price-prefix {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
}

.plan-price-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  transition: all .3s ease;
}

.plan-price-period {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}

.plan-price-annual-note {
  font-size: 12px;
  color: #22C55E;
  font-weight: 600;
  margin-bottom: 12px;
  min-height: 18px;
}

.plan-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 16px;
}

/* Pedidos badge (shop plans) */
.plan-quota-badge {
  background: rgba(105, 0, 204, .12);
  border: 1px solid rgba(105, 0, 204, .25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 16px;
}

.plan-quota-main {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.plan-quota-extra {
  font-size: 11px;
  color: rgba(255, 255, 255, .50);
}

/* Feature list */
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  margin-bottom: 24px;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.45;
}

.plan-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(34, 197, 94, .15);
  border: 1px solid rgba(34, 197, 94, .30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 9px;
  color: #22C55E;
  margin-top: 1px;
}

.plan-feature.is-group {
  font-weight: 700;
  color: rgba(255, 255, 255, .90);
  margin-top: 4px;
}

.plan-feature.is-group .plan-check {
  background: rgba(105, 0, 204, .20);
  border-color: rgba(105, 0, 204, .40);
  color: #C9A0FF;
}

/* CTA button */
.plan-cta {
  margin-top: auto;
}

.plan-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 13px;
}

/* Scale card special styling */
.plan-card.scale-card {
  border-color: rgba(255, 203, 3, .30);
  background: linear-gradient(160deg, rgba(255, 203, 3, .07), rgba(255, 95, 0, .05));
}

.plan-card.scale-card:hover {
  border-color: rgba(255, 203, 3, .55);
  box-shadow: 0 12px 50px rgba(255, 203, 3, .12);
}

.plan-card.scale-card .plan-tier {
  color: var(--yellow);
}

/* ── TABLA COMPARATIVA COMPLETA ──────────────────────────── */
.comparison-full-section {
  padding: 80px 0 100px;
}

.comparison-full-table {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.cft-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  background: rgba(105, 0, 204, .08);
  border-bottom: 1px solid var(--border);
}

.cft-head-cell {
  padding: 16px 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.cft-head-cell.feat-col {
  color: var(--gray-400);
}

.cft-head-cell.plan-starter {
  color: var(--gray-400);
}

.cft-head-cell.plan-pro {
  color: #C9A0FF;
  background: rgba(105, 0, 204, .07);
}

.cft-head-cell.plan-advanced {
  color: var(--gray-400);
}

.cft-head-cell.plan-scale {
  color: var(--yellow);
}

.text-center {
  text-align: center;
}

.cft-section-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  background: rgba(255, 255, 255, .03);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding: 10px 14px;
}

.cft-section-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

.cft-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: background .15s;
}

.cft-row:last-child {
  border-bottom: none;
}

.cft-row:hover {
  background: rgba(255, 255, 255, .02);
}

.cft-cell {
  padding: 12px 14px;
  display: grid;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
}

.cft-cell.feat-name {
  justify-content: flex-start;
  color: rgba(255, 255, 255, .80);
}

.cft-cell.pro-col {
  background: rgba(105, 0, 204, .04);
}

.cft-yes {
  color: #22C55E;
  font-size: 16px;
}

.cft-no {
  color: rgba(255, 255, 255, .18);
  font-size: 16px;
}

.cft-value {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

/* ── MEDIOS DE PAGO ──────────────────────────────────────── */
.payments-info-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(105, 0, 204, .05), transparent);
}

.payments-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.payment-method-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
}

.payment-method-card:hover {
  transform: translateY(-3px);
  border-color: rgba(105, 0, 204, .40);
  box-shadow: 0 8px 24px rgba(105, 0, 204, .14);
}

.pmc-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.pmc-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.pmc-desc {
  font-size: 11px;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ── FAQ PRECIOS ─────────────────────────────────────────── */
.pricing-faq-section {
  padding: 80px 0 100px;
}

.pricing-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 48px;
}

/* Reutiliza .faq-item de landing.css */

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .plan-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cft-head,
  .cft-row,
  .cft-section-header {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    font-size: 11px;
  }

  .cft-head-cell,
  .cft-cell {
    padding: 10px 8px;
  }
}

@media (max-width: 768px) {
  .plan-grid-4 {
    grid-template-columns: 1fr;
  }

  .plan-grid-2 {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .product-type-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .pt-tab {
    justify-content: center;
    text-align: center;
  }

  .pt-tab-text {
    align-items: center;
  }

  .payments-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .comparison-full-table {
    display: none;
  }

  /* hide on mobile */
  .pricing-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .payment-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── COSTOS INICIALES (activación + certificado) ─────────── */
.plan-costs {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 16px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Costo de activación — visible solo en mensual */
.activation-cost {
  display: grid;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 203, 3, .07);
  border: 1px solid rgba(255, 203, 3, .20);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  transition: all .3s ease;
}

.activation-cost.hidden {
  display: none;
}

.ac-left {
  flex: 1;
}

.ac-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 2px;
}

.ac-name {
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.5;
}

.ac-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--yellow);
  white-space: nowrap;
  align-self: center;
}

/* Costo certificado firma digital */
.cert-cost {
  display: grid;
  align-items: flex-start;
  gap: 10px;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  border: 1px solid;
  transition: all .3s ease;
  margin-bottom: 16px;
}

/* Monthly state — shown as extra cost */
.cert-cost.state-monthly {
  background: rgba(105, 0, 204, .08);
  border-color: rgba(105, 0, 204, .22);
}

/* Annual state — shown as included */
.cert-cost.state-annual {
  background: rgba(34, 197, 94, .07);
  border-color: rgba(34, 197, 94, .22);
}

.cc-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.cc-left {
  flex: 1;
}

.cc-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.cert-cost.state-monthly .cc-label {
  color: #C9A0FF;
}

.cert-cost.state-annual .cc-label {
  color: #22C55E;
}

.cc-name {
  font-size: 12px;
  color: rgba(255, 255, 255, .60);
  line-height: 1.5;
}

.cc-price {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  align-self: center;
}

.cert-cost.state-monthly .cc-price {
  color: #C9A0FF;
}

.cert-cost.state-annual .cc-price {
  color: #22C55E;
}

/* Annual savings banner — replaces activation cost */
.annual-savings-note {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, .08);
  border: 1px solid rgba(34, 197, 94, .22);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 12px;
  color: #22C55E;
  font-weight: 600;
}

.annual-savings-note.visible {
  display: flex;
}

/* Table cost rows */
.cft-cell.cost-cell {
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}

.cft-cell.cert-cell {
  color: #C9A0FF;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}

.cft-cell.cert-cell.included {
  color: #22C55E;
}

/* SOLUCIONES PARA RESTAURANTES INDEPENDIENTES */
/* ============================================================
   audience.css — Páginas de solución por audiencia
   Compartido por /es/para-restaurantes-independientes,
   /es/para-franquicias, etc.
   Depende de landing.css. Solo lo nuevo aquí.
   ============================================================ */

/* ── AUDIENCE HERO ───────────────────────────────────────── */
.audience-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 88px 0 64px;
  /* 88 = navbar height + gap */
  position: relative;
  overflow: hidden;
}

.audience-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 55% 40%, rgba(105, 0, 204, .22) 0%, transparent 68%),
    radial-gradient(ellipse 35% 35% at 88% 76%, rgba(246, 0, 118, .13) 0%, transparent 60%),
    radial-gradient(ellipse 28% 28% at 6% 18%, rgba(255, 203, 3, .07) 0%, transparent 60%);
  pointer-events: none;
}

.audience-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(105, 0, 204, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 0, 204, .05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.audience-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.audience-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 203, 3, .10);
  border: 1px solid rgba(255, 203, 3, .28);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--yellow);
  margin-bottom: 24px;
}

.audience-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 20px;
}

.audience-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.audience-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.audience-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.audience-hero-trust .hero-trust-item {
  font-size: 13px;
  color: rgba(255, 255, 255, .52);
}

/* ── FOR-WHO SECTION (quién es esta solución) ────────────── */
.for-who-section {
  padding: 80px 0;
}

.for-who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Perfil del negocio típico */
.biz-profile {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.biz-profile-header {
  background: rgba(105, 0, 204, .10);
  border-bottom: 1px solid rgba(105, 0, 204, .15);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.biz-profile-icon {
  font-size: 36px;
}

.biz-profile-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
}

.biz-profile-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .52);
  margin-top: 2px;
}

.biz-profile-body {
  padding: 20px 24px;
}

.biz-profile-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: 13px;
}

.biz-profile-row:last-child {
  border-bottom: none;
}

.bpr-key {
  font-weight: 700;
  color: rgba(255, 255, 255, .80);
  width: 120px;
  flex-shrink: 0;
}

.bpr-val {
  color: rgba(255, 255, 255, .58);
  line-height: 1.55;
}

.bpr-val.highlight {
  color: var(--yellow);
  font-weight: 700;
}

/* ── PAIN POINTS ESPECÍFICOS ─────────────────────────────── */
.audience-pain-section {
  padding: 100px 0;
}

.audience-pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.audience-pain-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.audience-pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(105, 0, 204, .40);
  box-shadow: 0 16px 40px rgba(105, 0, 204, .12);
}

.apc-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: rgba(105, 0, 204, .12);
  border: 1px solid rgba(105, 0, 204, .22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.apc-body {}

.apc-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.apc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.65;
}

.apc-stat {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--strawberry);
  margin-top: 8px;
  display: inline-block;
}

/* ── SOLUTION MODULES TAILORED ───────────────────────────── */
.solution-section {
  padding: 100px 0;
}

.solution-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 52px;
}

.solution-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(105, 0, 204, .10);
  position: relative;
}

.solution-item:last-child {
  border-bottom: none;
}

/* Alternate layout */
.solution-item:nth-child(even) .solution-copy {
  order: 2;
}

.solution-item:nth-child(even) .solution-visual {
  order: 1;
}

.solution-module-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.solution-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.solution-copy p {
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  margin-bottom: 20px;
}

.solution-copy-perks {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.scp-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
}

.scp-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(34, 197, 94, .15);
  border: 1px solid rgba(34, 197, 94, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #22C55E;
  flex-shrink: 0;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  transition: gap .2s;
  text-decoration: none;
}

.solution-link:hover {
  gap: 10px;
}

/* Solution visual card */
.solution-visual-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.svc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.svc-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.svc-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.svc-metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.svc-metric {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-sm);
  padding: 12px;
}

.svc-metric-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  display: block;
  margin-bottom: 3px;
}

.svc-metric-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .48);
}

/* ── ROI / SAVINGS CALCULATOR ────────────────────────────── */
.roi-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(105, 0, 204, .05), transparent);
}

.roi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.roi-card {
  background: var(--card-bg);
  border: 1px solid rgba(34, 197, 94, .25);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(34, 197, 94, .07);
}

.roi-card-header {
  background: rgba(34, 197, 94, .08);
  border-bottom: 1px solid rgba(34, 197, 94, .15);
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #22C55E;
}

.roi-rows {
  padding: 8px 0;
}

.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: 13px;
}

.roi-row:last-child {
  border-bottom: none;
}

.roi-row-label {
  color: rgba(255, 255, 255, .70);
}

.roi-row-before {
  color: #EF4444;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}

.roi-row-after {
  color: #22C55E;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}

.roi-row.total-row {
  background: rgba(34, 197, 94, .06);
  border-top: 2px solid rgba(34, 197, 94, .20);
  margin-top: 4px;
}

.roi-row.total-row .roi-row-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.roi-row.total-row .roi-row-after {
  font-size: 20px;
}

/* ── SOCIAL PROOF MINI ───────────────────────────────────── */
.audience-testimonials {
  padding: 80px 0;
}

/* Reuse .testimonials-grid and .testimonial-card from landing.css */

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .for-who-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .audience-pain-grid {
    grid-template-columns: 1fr;
  }

  .solution-item {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solution-item:nth-child(even) .solution-copy {
    order: 1;
  }

  .solution-item:nth-child(even) .solution-visual {
    order: 2;
  }

  .roi-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .audience-hero {
    padding: 96px 0 56px;
  }

  .svc-metric-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .audience-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .audience-hero-ctas .btn {
    justify-content: center;
  }
}

/*FACTURACION ELECTRONICA*/
/* ============================================================
   facturacion.css — /es/facturacion-electronica-restaurantes
   Acento: Green #22C55E (cumplimiento DIAN)
   Depende de landing.css. Solo lo nuevo aquí.
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.module-hero.facturacion-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 68% 55% at 52% 42%, rgba(34, 197, 94, .18) 0%, transparent 68%),
    radial-gradient(ellipse 38% 38% at 88% 75%, rgba(105, 0, 204, .14) 0%, transparent 60%),
    radial-gradient(ellipse 28% 28% at 6% 18%, rgba(22, 163, 74, .10) 0%, transparent 60%);
  pointer-events: none;
}

.module-hero-chip.facturacion-chip {
  background: rgba(34, 197, 94, .12);
  border-color: rgba(34, 197, 94, .35);
  color: #6EE7A0;
}

/* ── FACTURA MOCKUP ──────────────────────────────────────── */
.facturacion-visual-wrap {
  position: relative;
}

.facturacion-screen {
  background: var(--surface-light-2);
  border: 1px solid rgba(21, 18, 36, .12);
  border-radius: var(--r-lg);
  box-shadow: 0 0 50px rgba(34, 197, 94, .18), var(--shadow-card);
  overflow: hidden;
}

.facturacion-topbar {
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.facturacion-topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.fac-status-badge {
  font-size: 11px;
  font-weight: 700;
  color: #22C55E;
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .28);
  padding: 3px 10px;
  border-radius: 100px;
}

/* Invoice header */
.fac-invoice-header {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(21, 18, 36, .08);
  background: rgba(34, 197, 94, .03);
}

.fac-invoice-id {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.fac-inv-label {
  font-size: 11px;
  font-weight: 600;
  color: rgb(255 255 255 / 78%);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.fac-inv-number {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
}

.fac-invoice-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fac-meta-row {
  display: flex;
  gap: 8px;
  font-size: 12px;
}

.fac-meta-k {
  color: rgb(255 255 255 / 78%);
  width: 90px;
  flex-shrink: 0;
}

.fac-meta-v {
  color: var(--text-dark);
}

/* Items */
.fac-items {
  border-bottom: 1px solid rgba(21, 18, 36, .07);
}

.fac-items-header {
  display: grid;
  grid-template-columns: 2fr 0.5fr 1fr;
  padding: 8px 18px;
  background: rgba(21, 18, 36, .04);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 78%);
}

.fac-item-row {
  display: grid;
  grid-template-columns: 2fr 0.5fr 1fr;
  padding: 9px 18px;
  border-bottom: 1px solid rgba(21, 18, 36, .05);
  font-size: 13px;
  transition: background .15s;
}

.fac-item-row:last-child {
  border-bottom: none;
}

.fac-item-row:hover {
  background: rgba(21, 18, 36, .03);
}

.fac-item-desc {
  color: var(--text-dark);
}

.fac-item-qty {
  color: rgba(21, 18, 36, .50);
  text-align: center;
}

.fac-item-sub {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-dark);
  text-align: right;
}

/* Totals */
.fac-totals {
  padding: 10px 18px;
  border-bottom: 1px solid rgba(21, 18, 36, .07);
}

.fac-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 4px 0;
  color: rgb(255 255 255 / 78%);
}

.fac-total-row.main {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  border-top: 1px solid rgba(21, 18, 36, .10);
  margin-top: 6px;
  padding-top: 8px;
}

/* DIAN footer */
.fac-dian-footer {
  background: rgba(34, 197, 94, .04);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fac-dian-row {
  display: flex;
  gap: 8px;
  font-size: 11px;
}

.fac-dian-label {
  color: rgb(255 255 255 / 78%);
  width: 80px;
  flex-shrink: 0;
  font-weight: 600;
}

.fac-dian-val {
  color: rgba(21, 18, 36, .70);
  word-break: break-all;
}

.fac-dian-val.ok {
  color: #16A34A;
  font-weight: 700;
}

.fac-dian-val.cufe {
  font-family: monospace;
  font-size: 10px;
  color: rgba(21, 18, 36, .45);
}

/* ── REQUISITOS DIAN ─────────────────────────────────────── */
.fac-requirements-card {
  background: var(--card-bg);
  border: 1px solid rgba(34, 197, 94, .22);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(34, 197, 94, .06);
}

.fac-req-header {
  background: rgba(34, 197, 94, .08);
  border-bottom: 1px solid rgba(34, 197, 94, .15);
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #22C55E;
}

.fac-req-list {
  padding: 4px 0;
}

.fac-req-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: background .15s;
}

.fac-req-item:last-child {
  border-bottom: none;
}

.fac-req-item:hover {
  background: rgba(34, 197, 94, .03);
}

.fac-req-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.fac-req-icon.done {
  background: rgba(34, 197, 94, .15);
  border: 1px solid rgba(34, 197, 94, .30);
  color: #22C55E;
}

.fac-req-body {
  flex: 1;
}

.fac-req-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.fac-req-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.55;
}

.fac-req-tag {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  align-self: center;
}

.fac-req-tag.done {
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .25);
  color: #22C55E;
}

/* ── 3 PASOS ─────────────────────────────────────────────── */
.fac-steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 52px;
  flex-wrap: wrap;
}

.fac-step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  position: relative;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.fac-step:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 197, 94, .35);
  box-shadow: 0 16px 40px rgba(34, 197, 94, .10);
}

.fac-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 24px rgba(34, 197, 94, .35);
  position: relative;
}

.fac-step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, .22);
}

.fac-step-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.fac-step h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.fac-step p {
  font-size: 13px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.7;
}

.fac-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  padding: 4px 12px;
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .22);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #22C55E;
}

.fac-step-arrow {
  font-size: 24px;
  color: rgba(34, 197, 94, .40);
  padding: 0 8px;
  flex-shrink: 0;
  align-self: center;
  margin-top: -40px;
  /* align with mid-card */
}

/* ── TIPOS DE DOCUMENTO ──────────────────────────────────── */
.fac-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 840px;
  margin: 0 auto;
}

.fac-type-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all .25s ease;
}

.fac-type-card:hover {
  border-color: rgba(34, 197, 94, .35);
  box-shadow: 0 10px 30px rgba(34, 197, 94, .08);
}

.fac-type-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.fac-type-icon {
  font-size: 24px;
}

.fac-type-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}

.fac-type-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.65;
  margin-bottom: 16px;
}

.fac-type-cases {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fac-case {
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .fac-steps-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .fac-step {
    max-width: 100%;
  }

  .fac-step-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .fac-types-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .fac-requirements-card .fac-req-item {
    flex-wrap: wrap;
  }

  .fac-req-tag {
    align-self: flex-start;
  }
}

/* PLATAFORMA */

/* ============================================================
   plataforma.css — /es/plataforma
   Depende de landing.css. Solo lo nuevo aquí.
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.plataforma-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.plataforma-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(105, 0, 204, .22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(246, 0, 118, .14) 0%, transparent 55%),
    radial-gradient(ellipse 35% 35% at 8% 80%, rgba(255, 203, 3, .08) 0%, transparent 55%);
  pointer-events: none;
}

.plataforma-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(105, 0, 204, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 0, 204, .06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 40%, transparent 100%);
}

.plataforma-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.plataforma-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 22px;
}

.plataforma-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.plataforma-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Module chip strip */
.plataforma-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.plataforma-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 100px;
  padding: 7px 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .70);
  transition: all .2s ease;
  text-decoration: none;
}

.plataforma-chip:hover {
  background: rgba(105, 0, 204, .18);
  border-color: rgba(105, 0, 204, .45);
  color: var(--white);
  transform: translateY(-2px);
}

.plataforma-chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── CICLO DEL RESTAURANTE ───────────────────────────────── */
.cycle-section {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(105, 0, 204, .04), transparent);
}

.cycle-section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Orbit ring container */
.cycle-wrap {
  position: relative;
  width: 560px;
  height: 560px;
  margin: 0 auto;
}

/* Center hub */
.cycle-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(105, 0, 204, .30), rgba(167, 0, 204, .20));
  border: 2px solid rgba(105, 0, 204, .50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  box-shadow: 0 0 60px rgba(105, 0, 204, .30), inset 0 0 40px rgba(105, 0, 204, .10);
}

.cycle-hub-icon {
  font-size: 36px;
  margin-bottom: 4px;
}

.cycle-hub-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}

.cycle-hub-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, .55);
  margin-top: 2px;
}

/* Orbit tracks */
.cycle-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(105, 0, 204, .15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cycle-orbit-1 {
  width: 300px;
  height: 300px;
}

.cycle-orbit-2 {
  width: 470px;
  height: 470px;
  border-style: dashed;
  border-color: rgba(105, 0, 204, .10);
}

/* Orbit arrow indicator */
.cycle-orbit-1::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(105, 0, 204, .60);
  border-right: 2px solid rgba(105, 0, 204, .60);
  transform: translateX(-50%) rotate(45deg);
  animation: orbitArrow 3s linear infinite;
}

@keyframes orbitArrow {
  0% {
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  25% {
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%) rotate(135deg);
  }

  50% {
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%) rotate(225deg);
  }

  75% {
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%) rotate(315deg);
  }

  100% {
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }
}

/* Step nodes on the orbit */
.cycle-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 80px;
  cursor: default;
  z-index: 5;
}

/* Positions: 10 nodes evenly on a circle r=235px centered at (280,280) */
/* angle = (i/10)*360 - 90, for i=0..9 */
/* node is 80x80, so offset -40 */
.cycle-node {
  transform-origin: center;
}

.cycle-node-bubble {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 2px solid;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  margin-bottom: 6px;
  position: relative;
}

.cycle-node:hover .cycle-node-bubble {
  transform: scale(1.20);
  box-shadow: 0 0 24px currentColor;
}

.cycle-node-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
}

.cycle-node-module {
  font-size: 9px;
  font-weight: 500;
  opacity: .55;
  margin-top: 2px;
}

/* Connector lines from hub to orbit — drawn as pseudo or inline SVG */
.cycle-svg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Step detail panel */
.cycle-detail-panel {
  max-width: 640px;
  margin: 40px auto 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 88px;
  transition: all .3s ease;
}

.cdp-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.cdp-body {
  flex: 1;
}

.cdp-step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 3px;
}

.cdp-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}

.cdp-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .60);
  line-height: 1.6;
}

.cdp-module {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid;
  white-space: nowrap;
}

/* ── 6 MODULE CARDS ──────────────────────────────────────── */
.modules-overview-section {
  padding: 100px 0;
}

.modules-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.mod-overview-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  text-decoration: none;
  display: block;
  color: var(--white);
}

.mod-overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.mod-card-top {
  padding: 28px 24px 20px;
  position: relative;
}

.mod-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.mod-overview-card:hover .mod-card-glow {
  opacity: 1;
}

.mod-card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.mod-card-name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.mod-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.mod-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.mod-card-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .02);
}

.mod-card-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mod-feat-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .04);
}

.mod-card-arrow {
  font-size: 16px;
  color: rgba(255, 255, 255, .30);
  transition: all .2s;
}

.mod-overview-card:hover .mod-card-arrow {
  color: var(--white);
  transform: translateX(4px);
}

/* Color per module */
.mod-pos {
  --mod-color: #C9A0FF;
  --mod-bg: rgba(105, 0, 204, .15);
  --mod-border: rgba(105, 0, 204, .35);
}

.mod-shop {
  --mod-color: #FF80B0;
  --mod-bg: rgba(246, 0, 118, .12);
  --mod-border: rgba(246, 0, 118, .30);
}

.mod-stock {
  --mod-color: #FFE066;
  --mod-bg: rgba(255, 203, 3, .10);
  --mod-border: rgba(255, 203, 3, .28);
}

.mod-loyalty {
  --mod-color: #E080FF;
  --mod-bg: rgba(167, 0, 204, .12);
  --mod-border: rgba(167, 0, 204, .30);
}

.mod-crm {
  --mod-color: #FFAA70;
  --mod-bg: rgba(255, 95, 0, .10);
  --mod-border: rgba(255, 95, 0, .28);
}

.mod-analytics {
  --mod-color: #80C8FF;
  --mod-bg: rgba(0, 140, 255, .10);
  --mod-border: rgba(0, 140, 255, .28);
}

.mod-overview-card .mod-card-icon-wrap {
  background: var(--mod-bg);
  border: 1px solid var(--mod-border);
}

.mod-overview-card .mod-card-name {
  color: var(--mod-color);
}

.mod-overview-card .mod-card-glow {
  background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--mod-color) 15%, transparent), transparent 70%);
}

.mod-overview-card:hover {
  border-color: var(--mod-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .40);
}

/* ── ESCALERA DEL ÉXITO GASTRONÓMICO ─────────────────────── */
.escalera-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(105, 0, 204, .04), transparent);
}

.escalera-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.escalera-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

/* Diagonal arrow line behind steps */
.escalera-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(to bottom, var(--yellow), var(--orange), var(--strawberry), var(--purple), var(--violet));
  z-index: 0;
}

.escalera-step {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: var(--r-md);
  padding: 16px 20px;
  position: relative;
  z-index: 1;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  cursor: default;
}

.escalera-step:hover {
  transform: translateX(6px);
}

.escalera-step-num {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
  color: var(--black);
}

.escalera-step-body {
  flex: 1;
}

.escalera-step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 3px;
  color: var(--white);
}

.escalera-step-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .60);
  line-height: 1.5;
}

.escalera-step-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.escalera-step-modules {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.esm-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .50);
  background: rgba(255, 255, 255, .05);
}

/* Step colors */
.es-1 {
  background: rgba(255, 203, 3, .08);
  border: 1px solid rgba(255, 203, 3, .20);
}

.es-1 .escalera-step-num {
  background: var(--yellow);
}

.es-2 {
  background: rgba(255, 95, 0, .08);
  border: 1px solid rgba(255, 95, 0, .20);
}

.es-2 .escalera-step-num {
  background: var(--orange);
}

.es-3 {
  background: rgba(246, 0, 118, .08);
  border: 1px solid rgba(246, 0, 118, .20);
}

.es-3 .escalera-step-num {
  background: var(--strawberry);
}

.es-4 {
  background: rgba(167, 0, 204, .10);
  border: 1px solid rgba(167, 0, 204, .22);
}

.es-4 .escalera-step-num {
  background: var(--purple);
  color: var(--white);
}

.es-5 {
  background: rgba(105, 0, 204, .12);
  border: 1px solid rgba(105, 0, 204, .28);
  box-shadow: 0 0 30px rgba(105, 0, 204, .10);
}

.es-5 .escalera-step-num {
  background: linear-gradient(135deg, var(--violet), var(--purple));
  color: var(--white);
}

/* ── MARKETING FRIENDLY ECOSYSTEM ────────────────────────── */
.marketing-section {
  padding: 100px 0;
  overflow: hidden;
}

.marketing-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

/* Funnel flow visual */
.marketing-flow {
  position: relative;
}

.mf-row {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  margin-bottom: 12px;
}

.mf-step {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 10px;
  text-align: center;
  position: relative;
  transition: all .25s ease;
  cursor: default;
}

.mf-step:hover {
  border-color: rgba(105, 0, 204, .45);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(105, 0, 204, .15);
}

.mf-step-icon {
  font-size: 20px;
  margin-bottom: 4px;
  display: block;
}

.mf-step-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .80);
}

.mf-step-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, .42);
  margin-top: 2px;
  line-height: 1.4;
}

.mf-arrow {
  color: rgba(105, 0, 204, .50);
  font-size: 14px;
  flex-shrink: 0;
  padding: 0 4px;
}

/* Niceeat badge on flow */
.mf-niceeat-badge {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--violet), var(--purple));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 2;
}

/* Bottom row (metrics/postventa) */
.mf-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 16px;
  background: rgba(105, 0, 204, .06);
  border: 1px solid rgba(105, 0, 204, .15);
  border-radius: var(--r-md);
}

.mf-bottom-icon {
  font-size: 20px;
}

.mf-bottom-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .80);
}

.mf-bottom-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  margin-left: 4px;
}

/* ── INTEGRATIONS MATRIX ─────────────────────────────────── */
.integrations-matrix {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(246, 0, 118, .03), transparent);
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(105, 0, 204, .12);
  border: 1px solid rgba(105, 0, 204, .15);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 52px;
}

.matrix-cell {
  background: var(--card-bg);
  padding: 16px;
  text-align: center;
  transition: background .2s;
  position: relative;
}

.matrix-cell:hover {
  background: rgba(105, 0, 204, .15);
}

.matrix-cell.header-row {
  background: rgba(105, 0, 204, .08);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 8px;
}

.matrix-cell.header-row .hc-icon {
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

.matrix-cell.header-row .hc-name {
  color: rgba(255, 255, 255, .65);
  font-size: 10px;
}

.matrix-check {
  font-size: 16px;
}

.mc-yes {
  color: #22C55E;
}

.mc-partial {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
}

.mc-no {
  color: rgba(255, 255, 255, .15);
  font-size: 14px;
}

.matrix-cell.row-label {
  background: rgba(255, 255, 255, .02);
  text-align: left;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .70);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rl-icon {
  font-size: 16px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .modules-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .escalera-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .marketing-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .matrix-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cycle-wrap {
    width: 420px;
    height: 420px;
  }
}

@media (max-width: 768px) {
  .modules-overview-grid {
    grid-template-columns: 1fr;
  }

  .cycle-wrap {
    width: 320px;
    height: 320px;
  }

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

@media (max-width: 480px) {
  .plataforma-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .plataforma-hero-ctas .btn {
    justify-content: center;
  }
}

/* NOSOTROS */
/* ============================================================
   nosotros.css — /es/nosotros
   Depende de landing.css. Solo lo nuevo aquí.
   ============================================================ */

/* ── HERO NOSOTROS ───────────────────────────────────────── */
.nosotros-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.nosotros-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(105, 0, 204, .20) 0%, transparent 68%),
    radial-gradient(ellipse 35% 35% at 92% 20%, rgba(246, 0, 118, .12) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 5% 80%, rgba(255, 203, 3, .07) 0%, transparent 55%);
  pointer-events: none;
}

.nosotros-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(105, 0, 204, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 0, 204, .05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 40%, transparent 100%);
}

.nosotros-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.nosotros-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 22px;
}

.nosotros-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, .70);
  line-height: 1.80;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ── ORIGIN STORY ────────────────────────────────────────── */
.story-section {
  padding: 100px 0;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-timeline {
  position: relative;
  padding-left: 32px;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--violet), var(--strawberry), transparent);
}

.story-beat {
  position: relative;
  margin-bottom: 40px;
}

.story-beat::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--violet);
  border: 2px solid var(--black);
  box-shadow: 0 0 0 3px rgba(105, 0, 204, .25);
}

.story-year {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}

.story-beat h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.25;
}

.story-beat p {
  font-size: 14px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.75;
}

/* Quote callout */
.story-quote {
  background: linear-gradient(135deg, rgba(105, 0, 204, .12), rgba(246, 0, 118, .08));
  border: 1px solid rgba(105, 0, 204, .25);
  border-left: 4px solid var(--violet);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 24px 28px;
  margin-top: 40px;
}

.story-quote-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--white);
  font-style: italic;
  margin-bottom: 12px;
}

.story-quote-text::before {
  content: '"';
  color: var(--violet);
  font-style: normal;
  font-size: 24px;
}

.story-quote-text::after {
  content: '"';
  color: var(--violet);
  font-style: normal;
  font-size: 24px;
}

.story-quote-author {
  font-size: 13px;
  color: rgba(255, 255, 255, .50);
  font-style: normal;
}

/* ── STATS ───────────────────────────────────────────────── */
.stats-section {
  padding: 80px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.stat-block {
  background: var(--card-bg);
  padding: 40px 32px;
  text-align: center;
  transition: background .2s;
}

.stat-block:hover {
  background: rgba(105, 0, 204, .10);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--violet), var(--strawberry));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-sub {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.4;
}

/* ── FOUNDERS ────────────────────────────────────────────── */
.founders-section {
  padding: 100px 0;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 760px;
  margin: 52px auto 0;
}

.founder-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.founder-card:hover {
  transform: translateY(-6px);
  border-color: rgba(105, 0, 204, .45);
  box-shadow: 0 20px 50px rgba(105, 0, 204, .15);
}

/* Photo placeholder */
.founder-photo {
  height: 240px;
  background: linear-gradient(135deg, rgba(105, 0, 204, .20), rgba(167, 0, 204, .15));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, .30);
  font-size: 13px;
}

.founder-photo-placeholder .fpp-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(105, 0, 204, .20);
  border: 2px dashed rgba(105, 0, 204, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.founder-info {
  padding: 24px;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 3px;
}

.founder-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 14px;
}

.founder-bio {
  font-size: 13px;
  color: rgba(255, 255, 255, .60);
  line-height: 1.70;
  margin-bottom: 16px;
}

.founder-social {
  display: flex;
  gap: 8px;
}

.founder-social a {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all .2s;
  color: var(--white);
  text-decoration: none;
}

.founder-social a:hover {
  background: rgba(105, 0, 204, .20);
  border-color: var(--violet);
}

/* ── VALORES ─────────────────────────────────────────────── */
.values-section {
  padding: 100px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(105, 0, 204, .40);
  box-shadow: 0 16px 40px rgba(105, 0, 204, .12);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--strawberry));
  opacity: 0;
  transition: opacity .3s;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.value-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.value-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.70;
}

/* ── RECONOCIMIENTOS ─────────────────────────────────────── */
.recognition-section {
  padding: 80px 0;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.recognition-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
}

.recognition-card:hover {
  transform: translateY(-4px);
  border-color: rgba(105, 0, 204, .35);
  box-shadow: 0 12px 32px rgba(105, 0, 204, .10);
}

/* Logo placeholder */
.recognition-logo {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recognition-logo img {
  max-height: 56px;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .70;
  transition: opacity .2s;
}

.recognition-card:hover .recognition-logo img {
  opacity: 1;
}

/* Logo placeholder box (when no img yet) */
.recognition-logo-placeholder {
  height: 56px;
  width: 140px;
  background: rgba(255, 255, 255, .05);
  border: 1px dashed rgba(255, 255, 255, .15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .30);
  letter-spacing: .05em;
}

.recognition-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
}

.recognition-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .50);
  line-height: 1.55;
}

.recognition-year {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--violet);
  background: rgba(105, 0, 204, .10);
  border: 1px solid rgba(105, 0, 204, .20);
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: auto;
}

/* ── INVERSORES / ALIADOS ────────────────────────────────── */
.allies-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(105, 0, 204, .04), transparent);
}

.allies-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ally-cta-card {
  border-radius: var(--r-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.ally-cta-card.investors {
  background: linear-gradient(135deg, rgba(105, 0, 204, .14), rgba(167, 0, 204, .10));
  border: 1px solid rgba(105, 0, 204, .30);
}

.ally-cta-card.partners {
  background: linear-gradient(135deg, rgba(255, 203, 3, .08), rgba(255, 95, 0, .06));
  border: 1px solid rgba(255, 203, 3, .25);
}

.ally-cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
}

.ally-cta-card.investors::before {
  background: radial-gradient(circle, rgba(105, 0, 204, .15), transparent 70%);
}

.ally-cta-card.partners::before {
  background: radial-gradient(circle, rgba(255, 203, 3, .10), transparent 70%);
}

.ally-card-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.ally-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.ally-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.70;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.ally-card-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.ally-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
}

.ally-perk::before {
  content: '→';
  font-weight: 700;
}

.ally-cta-card.investors .ally-perk::before {
  color: var(--violet);
}

.ally-cta-card.partners .ally-perk::before {
  color: var(--yellow);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .founders-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

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

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

  .allies-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .founders-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

@media (max-width: 480px) {
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

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

/* CONTACTO */
/* ============================================================
   contacto.css — /es/contacto
   Depende de landing.css. Solo lo nuevo aquí.
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.contacto-hero {
  padding: 120px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contacto-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(105, 0, 204, .18) 0%, transparent 68%),
    radial-gradient(ellipse 30% 30% at 85% 15%, rgba(246, 0, 118, .10) 0%, transparent 55%);
  pointer-events: none;
}

.contacto-hero-inner {
  position: relative;
  z-index: 1;
}

.contacto-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}

.contacto-hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, .65);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* ── CONTACT CHANNELS ────────────────────────────────────── */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 80px;
}

.contact-channel-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  display: block;
}

.contact-channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.ccc-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.ccc-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}

.ccc-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .52);
  line-height: 1.55;
  margin-bottom: 14px;
}

.ccc-action {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid;
  display: inline-block;
  transition: all .2s;
}

/* WhatsApp */
.contact-channel-card.whatsapp {
  border-color: rgba(37, 211, 102, .22);
}

.contact-channel-card.whatsapp:hover {
  border-color: rgba(37, 211, 102, .55);
  box-shadow: 0 16px 40px rgba(37, 211, 102, .10);
}

.contact-channel-card.whatsapp .ccc-action {
  color: #25D366;
  border-color: rgba(37, 211, 102, .30);
  background: rgba(37, 211, 102, .06);
}

/* Email */
.contact-channel-card.email {
  border-color: rgba(105, 0, 204, .22);
}

.contact-channel-card.email:hover {
  border-color: rgba(105, 0, 204, .55);
  box-shadow: 0 16px 40px rgba(105, 0, 204, .12);
}

.contact-channel-card.email .ccc-action {
  color: #C9A0FF;
  border-color: rgba(105, 0, 204, .30);
  background: rgba(105, 0, 204, .06);
}

/* Demo */
.contact-channel-card.demo {
  border-color: rgba(246, 0, 118, .22);
  background: linear-gradient(135deg, rgba(246, 0, 118, .07), rgba(105, 0, 204, .07));
}

.contact-channel-card.demo:hover {
  border-color: rgba(246, 0, 118, .50);
  box-shadow: 0 16px 40px rgba(246, 0, 118, .12);
}

.contact-channel-card.demo .ccc-action {
  color: #FF80B0;
  border-color: rgba(246, 0, 118, .30);
  background: rgba(246, 0, 118, .06);
}

/* ── MAIN LAYOUT (form + info) ───────────────────────────── */
.contacto-main {
  padding: 0 0 100px;
}

.contacto-main-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.contact-form-header {
  background: rgba(105, 0, 204, .10);
  border-bottom: 1px solid rgba(105, 0, 204, .15);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form-header-icon {
  font-size: 20px;
}

.contact-form-header-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
}

.contact-form-header-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, .50);
}

/* Subject tabs */
.contact-subject-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(105, 0, 204, .12);
  overflow-x: auto;
  scrollbar-width: none;
}

.contact-subject-tabs::-webkit-scrollbar {
  display: none;
}

.cst-btn {
  flex: 1;
  min-width: 100px;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.cst-btn:hover {
  color: rgba(255, 255, 255, .75);
  background: rgba(105, 0, 204, .06);
}

.cst-btn.active {
  color: var(--white);
  border-bottom-color: var(--violet);
  background: rgba(105, 0, 204, .08);
}

/* Form body */
.contact-form-body {
  padding: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 7px;
}

.form-label .req {
  color: var(--strawberry);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, .28);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(105, 0, 204, .60);
  box-shadow: 0 0 0 3px rgba(105, 0, 204, .10);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B91B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-select option {
  background: var(--card-bg);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Consent */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--violet);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.form-consent label {
  font-size: 12px;
  color: rgba(255, 255, 255, .50);
  line-height: 1.55;
  cursor: pointer;
}

.form-consent label a {
  color: rgba(105, 0, 204, .80);
  text-decoration: underline;
}

/* Submit button + state feedback */
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.form-submit-row .btn {
  flex-shrink: 0;
}

.form-success-msg {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #22C55E;
}

.form-success-msg.visible {
  display: flex;
}

/* ── CONTACT INFO SIDEBAR ────────────────────────────────── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}

.cib-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cib-title-icon {
  font-size: 14px;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: 13px;
}

.contact-detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cdr-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.cdr-body {}

.cdr-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .40);
  font-weight: 600;
  margin-bottom: 2px;
}

.cdr-val {
  color: rgba(255, 255, 255, .82);
  line-height: 1.5;
}

.cdr-val a {
  color: rgba(255, 255, 255, .82);
  transition: color .2s;
}

.cdr-val a:hover {
  color: var(--violet);
}

/* Support hours table */
.support-hours {
  width: 100%;
  font-size: 12px;
  border-collapse: collapse;
}

.support-hours td {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.support-hours tr:last-child td {
  border-bottom: none;
}

.support-hours .sh-plan {
  color: rgba(255, 255, 255, .55);
  padding-right: 12px;
}

.support-hours .sh-hours {
  color: rgba(255, 255, 255, .80);
  font-weight: 600;
}

.support-hours .sh-channels {
  color: rgba(255, 255, 255, .45);
  font-size: 11px;
  padding-left: 8px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .contacto-main-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-channels {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .contact-channels {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* DEMO */
/* ============================================================
   demo.css — /es/demo
   Depende de landing.css. Solo lo nuevo aquí.
   ============================================================ */

/* ── DEMO SECTION ────────────────────────────────────────── */
.demo-section {
  padding: 32px 0 80px;
}

.demo-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}

/* ── COPY — columna izquierda ────────────────────────────── */
.demo-h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}

.demo-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Qué pasa en la demo */
.demo-what {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 28px;
}

.demo-what-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.demo-what-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.demo-what-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.dwi-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--strawberry));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.dwi-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dwi-body strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.dwi-body span {
  font-size: 12px;
  color: rgba(255, 255, 255, .52);
  line-height: 1.5;
}

/* Trust pills */
.demo-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.demo-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r-md);
  padding: 10px 14px;
  flex: 1;
  min-width: 110px;
}

.dti-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.demo-trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.demo-trust-item span {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
}

/* Testimonial snippet */
.demo-testimonial {
  background: linear-gradient(135deg, rgba(105, 0, 204, .10), rgba(246, 0, 118, .07));
  border: 1px solid rgba(105, 0, 204, .22);
  border-radius: var(--r-lg);
  padding: 20px 22px;
}

.demo-testimonial-stars {
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.demo-testimonial-text {
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 14px;
}

.demo-testimonial-text::before {
  content: '"';
  color: var(--violet);
  font-size: 18px;
  font-style: normal;
}

.demo-testimonial-text::after {
  content: '"';
  color: var(--violet);
  font-size: 18px;
  font-style: normal;
}

.demo-testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--strawberry));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.demo-testimonial-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.demo-testimonial-author span {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
}

/* ── WIDGET — columna derecha ────────────────────────────── */
.demo-widget {
  position: sticky;
  top: 96px;
}

.demo-widget-card {
  background: var(--card-bg);
  border: 1px solid rgba(105, 0, 204, .30);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 0 50px rgba(105, 0, 204, .15);
}

.demo-widget-header {
  background: rgba(105, 0, 204, .12);
  border-bottom: 1px solid rgba(105, 0, 204, .18);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-widget-header-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.demo-widget-header strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.demo-widget-header span {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
}

/* HubSpot widget wrapper — ensure it fills the card cleanly */
.demo-widget-body {
  padding: 0;
  min-height: 560px;
  background: var(--white);
  /* HubSpot widget has white bg */
}

/* The HubSpot iframe inherits the card width */
.demo-widget-body .meetings-iframe-container {
  width: 100% !important;
  min-height: 560px;
}

.demo-widget-body .meetings-iframe-container iframe {
  width: 100% !important;
  border: none;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .demo-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .demo-widget {
    position: static;
  }
}

@media (max-width: 480px) {
  .demo-trust {
    gap: 8px;
  }

  .demo-trust-item {
    min-width: 90px;
  }
}

/* CASOS DE ÉXITO */
/* ============================================================
   casos.css — /es/casos-de-exito
   Depende de landing.css. Solo lo nuevo aquí.
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.casos-hero {
  padding: 120px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.casos-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 45%, rgba(105, 0, 204, .20) 0%, transparent 68%),
    radial-gradient(ellipse 30% 30% at 88% 18%, rgba(246, 0, 118, .10) 0%, transparent 55%);
  pointer-events: none;
}

.casos-hero-inner {
  position: relative;
  z-index: 1;
}

.casos-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}

.casos-hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, .65);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* Aggregate stats strip */
.casos-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.css-stat {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .06);
}

.css-stat:last-child {
  border-right: none;
}

.css-stat-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  display: block;
  background: linear-gradient(135deg, var(--violet), var(--strawberry));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.css-stat-lbl {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
  display: block;
}

/* ── FILTER TABS ─────────────────────────────────────────── */
.casos-filters {
  padding: 56px 0 0;
  text-align: center;
}

.filter-tabs {
  display: inline-flex;
  gap: 6px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-tab {
  padding: 9px 20px;
  border-radius: var(--r-xl);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all .22s ease;
  white-space: nowrap;
}

.filter-tab:hover {
  color: var(--white);
  background: rgba(105, 0, 204, .12);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--violet), var(--purple));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(105, 0, 204, .35);
}

/* ── CASE CARDS GRID ─────────────────────────────────────── */
.casos-grid-section {
  padding: 40px 0 100px;
}

.casos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.caso-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
  flex-direction: column;
}

.caso-card:hover {
  transform: translateY(-6px);
  border-color: rgba(105, 0, 204, .40);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .40);
}

.caso-card[data-category] {
  /* JS toggles display:none */
}

/* Card header — color band */
.caso-card-header {
  height: 8px;
}

/* Card emoji banner */
.caso-card-banner {
  padding: 28px 24px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.caso-emoji {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.caso-type-badge {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid;
  white-space: nowrap;
  align-self: flex-start;
}

/* Card body */
.caso-card-body {
  padding: 0 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.caso-restaurant {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 3px;
  color: var(--white);
}

.caso-location {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 14px;
}

.caso-challenge {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

/* Metrics row */
.caso-metrics {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.caso-metric {
  flex: 1;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-sm);
  padding: 10px;
  text-align: center;
}

.caso-metric-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}

.caso-metric-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, .42);
  line-height: 1.4;
}

/* Modules used */
.caso-modules {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.caso-module-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(105, 0, 204, .10);
  border: 1px solid rgba(105, 0, 204, .20);
  color: #C9A0FF;
}

/* Quote */
.caso-quote {
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
  border-left: 2px solid rgba(105, 0, 204, .35);
  padding-left: 12px;
  margin-bottom: 0;
}

.caso-quote::before {
  content: '"';
  color: var(--violet);
}

.caso-quote::after {
  content: '"';
  color: var(--violet);
}

/* ── CASO DESTACADO (Featured — full width) ──────────────── */
.caso-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.caso-featured .caso-card-banner,
.caso-featured .caso-card-body {
  padding: 36px 36px;
}

.caso-featured .caso-card-banner {
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, .06);
}

.caso-featured .caso-restaurant {
  font-size: 24px;
}

.caso-featured .caso-challenge {
  font-size: 14px;
}

.caso-featured-results {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cfr-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.cfr-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cfr-metric {
  background: rgba(105, 0, 204, .08);
  border: 1px solid rgba(105, 0, 204, .18);
  border-radius: var(--r-md);
  padding: 16px;
}

.cfr-metric-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}

.cfr-metric-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.4;
}

.cfr-story {
  font-size: 14px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.75;
}

.cfr-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.cfr-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}

.cfr-author-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.cfr-author-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.casos-cta-section {
  padding: 0 0 100px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .casos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .caso-featured {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .caso-featured .caso-card-banner {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }
}

@media (max-width: 768px) {
  .casos-grid {
    grid-template-columns: 1fr;
  }

  .caso-featured {
    grid-column: auto;
  }

  .filter-tabs {
    padding: 4px;
  }

  .filter-tab {
    font-size: 12px;
    padding: 8px 14px;
  }

  .css-stat-val {
    font-size: 22px;
  }

  .cfr-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

/* CIUDADES */
/* ============================================================
   geo.css — Páginas de posicionamiento local SEO
   Compartido: /es/software-restaurantes-cali, -bogota, etc.
   Depende de landing.css. Solo lo nuevo aquí.
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.geo-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.geo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 60% at 55% 42%, rgba(105, 0, 204, .22) 0%, transparent 68%),
    radial-gradient(ellipse 35% 35% at 90% 78%, rgba(246, 0, 118, .13) 0%, transparent 58%),
    radial-gradient(ellipse 28% 28% at 6% 18%, rgba(255, 203, 3, .07) 0%, transparent 55%);
  pointer-events: none;
}

.geo-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(105, 0, 204, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 0, 204, .05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 100%);
}

.geo-hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── HERO COPY ───────────────────────────────────────────── */
.geo-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 203, 3, .10);
  border: 1px solid rgba(255, 203, 3, .28);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 24px;
}

.geo-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 20px;
}

.geo-hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.geo-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.geo-hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── GEO STATS CARD (hero visual) ───────────────────────── */
.geo-stats-card {
  background: var(--card-bg);
  border: 1px solid rgba(105, 0, 204, .30);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 0 50px rgba(105, 0, 204, .18), var(--shadow-card);
}

.geo-stats-header {
  background: rgba(105, 0, 204, .12);
  border-bottom: 1px solid rgba(105, 0, 204, .18);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.geo-stats-city {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  padding: 16px 18px 8px;
  color: var(--white);
}

.geo-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .06);
  margin: 8px 0 0;
}

.geo-stat-cell {
  background: var(--card-bg);
  padding: 16px 18px;
  transition: background .15s;
}

.geo-stat-cell:hover {
  background: rgba(105, 0, 204, .12);
}

.geo-stat-val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.geo-stat-lbl {
  font-size: 11px;
  color: var(--gray-400);
  line-height: 1.4;
}

.geo-stats-footer {
  padding: 12px 18px;
  background: rgba(34, 197, 94, .06);
  border-top: 1px solid rgba(34, 197, 94, .12);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #22C55E;
  font-weight: 600;
}

/* ── LOCAL CONTEXT SECTION ───────────────────────────────── */
.geo-context-section {
  padding: 80px 0;
}

.geo-context-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Retos locales */
.geo-retos {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.geo-reto-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 18px;
  transition: all .25s ease;
}

.geo-reto-item:hover {
  border-color: rgba(105, 0, 204, .35);
  transform: translateX(4px);
}

.geo-reto-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(105, 0, 204, .10);
  border: 1px solid rgba(105, 0, 204, .20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.geo-reto-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.geo-reto-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.55;
}

/* Barrios / zonas */
.geo-zones {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.geo-zones-header {
  background: rgba(105, 0, 204, .08);
  border-bottom: 1px solid rgba(105, 0, 204, .12);
  padding: 14px 18px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.geo-zone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  font-size: 13px;
  transition: background .15s;
}

.geo-zone-row:last-child {
  border-bottom: none;
}

.geo-zone-row:hover {
  background: rgba(105, 0, 204, .06);
}

.geo-zone-name {
  color: rgba(255, 255, 255, .80);
}

.geo-zone-type {
  font-size: 11px;
  color: var(--gray-400);
}

.geo-zone-check {
  color: #22C55E;
  font-size: 14px;
}

/* ── PLANES LOCALES ──────────────────────────────────────── */
.geo-planes-section {
  padding: 80px 0;
}

.geo-planes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

/* Reuses .plan-card from precios.css but simplified */
.geo-plan-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: all .3s ease;
}

.geo-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.geo-plan-card.featured {
  border-color: var(--violet);
  background: linear-gradient(160deg, rgba(105, 0, 204, .12), rgba(167, 0, 204, .07));
  box-shadow: 0 0 40px rgba(105, 0, 204, .20);
}

.geo-plan-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--violet), var(--strawberry));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .05em;
}

.geo-plan-name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.geo-plan-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.geo-plan-price span {
  font-size: 16px;
  color: var(--gray-400);
  font-weight: 500;
}

.geo-plan-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .50);
  margin-bottom: 16px;
  line-height: 1.5;
}

.geo-plan-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
  text-align: left;
}

.geo-plan-feat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255, 255, 255, .70);
}

.geo-plan-feat::before {
  content: '✓';
  color: #22C55E;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .geo-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .geo-stats-card {
    max-width: 420px;
  }

  .geo-context-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .geo-planes-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

@media (max-width: 768px) {
  .geo-hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .geo-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* LEGAL */
/* ============================================================
   legal.css — Páginas legales Niceeat
   Compartido: /es/privacidad y /es/terminos-y-condiciones
   Depende de landing.css. Solo lo nuevo aquí.
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.legal-hero {
  padding: 120px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 50% 50%, rgba(105, 0, 204, .15) 0%, transparent 65%),
    radial-gradient(ellipse 28% 28% at 88% 20%, rgba(246, 0, 118, .09) 0%, transparent 55%);
  pointer-events: none;
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 14px;
}

.legal-hero-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 8px;
}

.legal-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, .60);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  padding: 64px 0 100px;
}

/* ── SIDEBAR — índice ────────────────────────────────────── */
.legal-sidebar {
  position: sticky;
  top: 88px;
}

.legal-toc {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.legal-toc-header {
  background: rgba(105, 0, 204, .10);
  border-bottom: 1px solid rgba(105, 0, 204, .15);
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #C9A0FF;
}

.legal-toc-list {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.legal-toc-list li a {
  display: block;
  padding: 7px 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, .50);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all .15s;
  line-height: 1.45;
}

.legal-toc-list li a:hover,
.legal-toc-list li a.active {
  color: var(--white);
  border-color: var(--violet);
  background: rgba(105, 0, 204, .08);
}

.legal-toc-footer {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 12px 16px;
}

.legal-toc-footer a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s;
}

.legal-toc-footer a:hover {
  color: var(--white);
}

/* ── DOCUMENT BODY ───────────────────────────────────────── */
.legal-doc {
  max-width: 820px;
}

/* Chapter / section headings */
.legal-doc h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin: 48px 0 18px;
  padding: 20px 0 14px;
  border-bottom: 2px solid rgba(105, 0, 204, .25);
  line-height: 1.25;
  scroll-margin-top: 100px;
}

.legal-doc h3:first-child {
  margin-top: 0;
}

.legal-doc h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, .90);
  margin: 28px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--violet);
  line-height: 1.35;
  scroll-margin-top: 100px;
}

/* Body text */
.legal-doc p {
  font-size: 14px;
  line-height: 1.80;
  color: rgba(255, 255, 255, .70);
  margin: 0 0 14px;
}

.legal-doc strong {
  color: var(--white);
  font-weight: 700;
}

/* Lists */
.legal-doc ul,
.legal-doc ol {
  padding-left: 22px;
  margin: 0 0 16px;
}

.legal-doc li {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .68);
  margin-bottom: 6px;
}

.legal-doc ol ol,
.legal-doc ul ul,
.legal-doc ol ul,
.legal-doc ul ol {
  margin-top: 6px;
  margin-bottom: 6px;
  padding-left: 18px;
}

/* Nested list items slightly dimmer */
.legal-doc ul ul li,
.legal-doc ol ul li,
.legal-doc ul ol li {
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
}

/* Tables */
.legal-doc .table_finalidades {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 24px;
  font-size: 13px;
  border-radius: var(--r-md);
  overflow: hidden;
}

.legal-doc .table_finalidades thead tr,
.legal-doc .table_finalidades tr:first-child:has(th) {
  background: rgba(105, 0, 204, .12);
  border-bottom: 1px solid rgba(105, 0, 204, .25);
}

.legal-doc .table_finalidades th {
  padding: 12px 14px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .60);
  border: 1px solid rgba(255, 255, 255, .08);
}

.legal-doc .table_finalidades td {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .68);
  line-height: 1.6;
  vertical-align: top;
}

.legal-doc .table_finalidades tr:nth-child(even) td {
  background: rgba(255, 255, 255, .02);
}

.legal-doc .table_finalidades td:first-child {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
  min-width: 140px;
}

/* Links inside legal doc */
.legal-doc a {
  color: rgba(105, 0, 204, .90);
  text-decoration: underline;
  transition: color .2s;
}

.legal-doc a:hover {
  color: #C9A0FF;
}

/* Sections from PHP files */
.legal-doc section {
  margin-bottom: 8px;
}

/* Important callout */
.legal-callout {
  background: rgba(105, 0, 204, .08);
  border: 1px solid rgba(105, 0, 204, .22);
  border-left: 4px solid var(--violet);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
}

.legal-callout strong {
  color: var(--white);
}

/* Warning callout */
.legal-callout.warning {
  background: rgba(255, 203, 3, .07);
  border-color: rgba(255, 203, 3, .22);
  border-left-color: var(--yellow);
  color: rgba(255, 255, 255, .75);
}

/* ── AVISO DE PRIVACIDAD BOXES ───────────────────────────── */
.aviso-box {
  background: var(--card-bg);
  border: 1px solid rgba(105, 0, 204, .28);
  border-radius: var(--r-lg);
  margin-bottom: 24px;
  overflow: hidden;
}

.aviso-box-header {
  background: rgba(105, 0, 204, .10);
  border-bottom: 1px solid rgba(105, 0, 204, .18);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.aviso-box-icon {
  font-size: 18px;
}

.aviso-box-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.aviso-box-body {
  padding: 20px 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.75;
}

.aviso-box-body p {
  margin-bottom: 12px;
}

.aviso-box-body p:last-child {
  margin-bottom: 0;
}

/* ── VERSION / DATE BADGE ────────────────────────────────── */
.legal-version-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, .08);
  border: 1px solid rgba(34, 197, 94, .20);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #22C55E;
  margin-bottom: 20px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .legal-doc h3 {
    font-size: 17px;
    margin-top: 36px;
  }

  .legal-doc .table_finalidades {
    font-size: 12px;
  }

  .legal-doc .table_finalidades th,
  .legal-doc .table_finalidades td {
    padding: 8px 10px;
  }
}


/* AUTH */

/* ── FONDO GENERAL ───────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 24px 16px;
}

/* Gradiente de fondo */
.auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(105, 0, 204, .30) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(246, 0, 118, .18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 10%, rgba(167, 0, 204, .15) 0%, transparent 55%);
}

/* Grid de puntos */
.auth-page::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(105, 0, 204, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 0, 204, .06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 40%, transparent 100%);
}

/* ── CARD CENTRAL ────────────────────────────────────────── */
.auth-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: rgba(28, 24, 48, 0.92);
  border: 1px solid rgba(105, 0, 204, .28);
  border-radius: var(--r-xl);
  padding: 36px 36px 28px;
  box-shadow: 0 0 60px rgba(105, 0, 204, .20), 0 24px 48px rgba(0, 0, 0, .50);
  backdrop-filter: blur(16px);
}

/* Layout 2 columnas (solo signup negocios) */
.auth-page.auth-wide {
  align-items: flex-start;
  padding: 48px 16px;
}

.auth-card.auth-card-wide {
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.auth-card-wide .auth-side-left {
  padding: 40px 36px;
  background: linear-gradient(160deg, rgba(105, 0, 204, .20), rgba(167, 0, 204, .12));
  border-right: 1px solid rgba(105, 0, 204, .18);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-card-wide .auth-side-right {
  padding: 40px 36px;
}

/* ── LOGO ────────────────────────────────────────────────── */
.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.auth-logo a {
  display: inline-flex;
  align-items: center;
}

.auth-logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* ── TITULARES ───────────────────────────────────────────── */
.auth-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 6px;
  text-align: center;
}

.auth-subtitle {
  font-size: 14px;
  color: var(--gray);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ── CAMPOS ──────────────────────────────────────────────── */
.auth-field {
  margin-bottom: 14px;
  position: relative;
}

.auth-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-bottom: 6px;
}

.auth-field .field-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .32);
  font-size: 16px;
  pointer-events: none;
}

.auth-field.has-icon .form-control {
  padding-left: 40px;
}

.form-control,
input.form-control,
select.form-control {
  width: 100%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, .28);
}

.form-control:focus {
  border-color: rgba(105, 0, 204, .65);
  box-shadow: 0 0 0 3px rgba(105, 0, 204, .12);
  background: rgba(255, 255, 255, .09);
}

/* Select arrow */
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B91B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

select.form-control option {
  background: #1C1830;
  color: var(--white);
}

/* Password toggle */
.password-wrap {
  position: relative;
}

.password-wrap .form-control {
  padding-right: 42px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .40);
  font-size: 16px;
  cursor: pointer;
  transition: color .2s;
  background: none;
  border: none;
  padding: 2px;
}

.toggle-password:hover {
  color: var(--white);
}

/* Date input */
input[type="date"].form-control {
  color-scheme: dark;
}

input[type="date"].form-control::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(.4);
  cursor: pointer;
}

/* ── BOTÓN PRINCIPAL ─────────────────────────────────────── */
.btn-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 24px;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
  margin-top: 6px;
}

.btn-auth-primary {
  background: linear-gradient(135deg, var(--violet), var(--purple));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(105, 0, 204, .35);
}

.btn-auth-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(105, 0, 204, .50);
  filter: brightness(1.08);
}

.btn-auth-primary:active {
  transform: translateY(0);
}

.btn-auth-secondary {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--white);
}

.btn-auth-secondary:hover {
  background: rgba(105, 0, 204, .15);
  border-color: rgba(105, 0, 204, .40);
}

/* ── SEPARADOR ───────────────────────────────────────────── */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--gray-dim);
  font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .10);
}

/* ── FOOTER LINKS ────────────────────────────────────────── */
.auth-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: 13px;
  color: var(--gray);
}

.auth-footer a {
  color: #C9A0FF;
  font-weight: 600;
}

.auth-footer a:hover {
  color: var(--white);
}

.auth-link {
  font-size: 13px;
  color: var(--gray);
  text-align: center;
  margin-top: 12px;
}

.auth-link a {
  color: #C9A0FF;
  font-weight: 600;
}

.auth-link a:hover {
  color: var(--white);
}

/* ── BADGE DE PLAN ───────────────────────────────────────── */
.auth-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(105, 0, 204, .15);
  border: 1px solid rgba(105, 0, 204, .30);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: #C9A0FF;
  margin-bottom: 16px;
}

/* ── BENEFITS LIST (signup wide) ─────────────────────────── */
.auth-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.auth-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.5;
}

.auth-benefits li::before {
  content: '✓';
  color: #22C55E;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  background: rgba(34, 197, 94, .12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Testimonial en el panel izquierdo del signup */
.auth-testimonial {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--r-md);
  padding: 16px;
  margin-top: auto;
}

.auth-testimonial-stars {
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.auth-testimonial-text {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 10px;
}

.auth-testimonial-author {
  font-size: 12px;
  color: rgba(255, 255, 255, .40);
}

/* ── PRIVACY NOTE ────────────────────────────────────────── */
.auth-privacy {
  font-size: 11px;
  color: rgba(255, 255, 255, .30);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

.auth-privacy a {
  color: rgba(105, 0, 204, .70);
}

.auth-privacy a:hover {
  color: #C9A0FF;
}

/* ── FORM GROUPS LEGACY (compatibilidad) ─────────────────── */
.form-group {
  margin-bottom: 14px;
}

.form-group-default {
  position: relative;
}

.controls {
  position: relative;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .auth-card.auth-card-wide {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .auth-card-wide .auth-side-left {
    border-right: none;
    border-bottom: 1px solid rgba(105, 0, 204, .18);
  }

  .auth-card-wide .auth-side-right {
    padding-top: 28px;
  }
}

@media (max-width: 480px) {
  .auth-card {
    padding: 28px 22px 22px;
  }

  .auth-card-wide .auth-side-left,
  .auth-card-wide .auth-side-right {
    padding: 24px 20px;
  }
}

/* ── Checkboxes personalizados ─────────────────────────── */
.auth-check-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.auth-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
}

.auth-check-item:has(input:checked) {
  background: rgba(105, 0, 204, .10);
  border-color: rgba(105, 0, 204, .30);
}

.auth-check-item input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #6900CC;
  cursor: pointer;
  margin-top: 2px;
}

.auth-check-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.55;
  cursor: pointer;
  user-select: none;
}

.auth-check-label a {
  color: #C9A0FF;
  font-weight: 600;
  text-decoration: underline;
  transition: color .2s;
}

.auth-check-label a:hover {
  color: var(--white);
}

/* Callout informativo */
.auth-policy-notice {
  background: rgba(105, 0, 204, .08);
  border: 1px solid rgba(105, 0, 204, .20);
  border-left: 3px solid #6900CC;
  border-radius: 0 10px 10px 0;
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
  margin-bottom: 22px;
}

.auth-policy-notice strong {
  color: var(--white);
}

/* HELP */
/* ============================================================
   ayuda.css — Centro de Ayuda Niceeat
   Estilos para colección, categorías y artículos del CMS.
   Depende de landing.css. Solo lo nuevo aquí.
   ============================================================ */

/* ── VARIABLES LOCALES ───────────────────────────────────── */
:root {
  --help-hero-bg: var(--black);
  /* overridden by $collection->getColorTitle() */
  --help-hero-text: var(--white);
  /* overridden by $collection->getColorTitleText() */
  --help-body-bg: var(--black);
  /* overridden by $collection->getColorBG() */
  --help-body-text: rgba(255, 255, 255, .80);
  /* overridden by $collection->getColorText() */
}

/* ── CONTAINERS ──────────────────────────────────────────── */
.nice__containerxl {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nice__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.nice__containerMd {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HERO HEADER ─────────────────────────────────────────── */
.collection-theme .headerHero,
.page-theme .headerHero {
  position: relative;
  overflow: hidden;
}

.collection-theme .headerHero::before,
.page-theme .headerHero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 60%, rgba(105, 0, 204, .30) 0%, transparent 68%),
    radial-gradient(ellipse 35% 40% at 90% 20%, rgba(246, 0, 118, .14) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.collection-theme .headerHero::after,
.page-theme .headerHero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(105, 0, 204, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 0, 204, .06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 60%, black 40%, transparent 100%);
}

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

.nice__hero.ovf-hdn {
  overflow: hidden;
}

.nice__hero.pt-200 {
  padding-top: 88px;
  /* height of navbar */
  padding-bottom: 64px;
}

.nice__hero-textHome-container {
  padding: 0 16px;
}

/* Hero titles */
.home-h1.font-out {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 16px;
  color: var(--white);
  /* overridden inline */
}

.font-int {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, .65);
  /* overridden inline */
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-16 {
  margin-bottom: 16px;
}

/* ── SEARCH BAR (colección) ──────────────────────────────── */
.help-search-wrap {
  max-width: 520px;
  margin: 24px auto 0;
  position: relative;
}

.help-search-input {
  width: 100%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--r-xl);
  padding: 14px 52px 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  backdrop-filter: blur(8px);
}

.help-search-input::placeholder {
  color: rgba(255, 255, 255, .45);
}

.help-search-input:focus {
  border-color: rgba(105, 0, 204, .70);
  box-shadow: 0 0 0 3px rgba(105, 0, 204, .18);
  background: rgba(255, 255, 255, .16);
}

.help-search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .45);
  font-size: 18px;
  pointer-events: none;
}

/* ── BODY CONTENT ────────────────────────────────────────── */
.nice__bodyContent {
  background: var(--black);
  /* overridden inline */
  padding: 64px 0 100px;
}

.collection-body {}

/* ── PILL TAB BUTTON ─────────────────────────────────────── */
.n-pilltab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: all .2s;
  backdrop-filter: blur(4px);
}

.n-pilltab:hover {
  background: rgba(105, 0, 204, .30);
  border-color: rgba(105, 0, 204, .55);
}

/* ── CATEGORY LINK ───────────────────────────────────────── */
.nice__categoryLink span {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s;
}

.nice__categoryLink span:hover {
  color: var(--violet);
}

.d-flex {
  display: flex;
}

.alg-center {
  align-items: center;
}

.gap-8 {
  gap: 8px;
}

/* ── COLLECTION CATEGORIES GRID ──────────────────────────── */
.nice__collection-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Column classes generated by CMS */
.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.col-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ── CATEGORY CARD ───────────────────────────────────────── */
.n-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.n-card-item {
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.n-card-item:hover {
  transform: translateY(-5px);
  border-color: rgba(105, 0, 204, .40);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .40);
}

.nice__collection-category {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Category icon (set per-card) */
.help-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: rgba(105, 0, 204, .12);
  border: 1px solid rgba(105, 0, 204, .22);
  flex-shrink: 0;
}

.nice__collectionCategoryTitle {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
  text-decoration: none;
}

.nice__collectionCategoryTitle:hover {
  color: var(--violet);
}

.help-cat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
  flex: 1;
}

.help-cat-count {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .38);
  letter-spacing: .05em;
}

.nice__categoryPages-link {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.nice__categoryPages-link .nice__categoryLink {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  transition: all .2s;
}

.nice__categoryPages-link .nice__categoryLink:hover {
  color: var(--white);
  gap: 10px;
}

/* ── ARTICLE LIST IN CATEGORY ────────────────────────────── */
.nice__collectionPagesContainer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nice__collectionPage {
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  flex-direction: column;
}

.nice__collectionPage:hover {
  border-color: rgba(105, 0, 204, .45);
}

.nice__pageCover {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}

/* When no image — show icon placeholder */
.help-page-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: rgba(105, 0, 204, .12);
  border: 1px solid rgba(105, 0, 204, .20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.nice__collectionPage h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 5px;
  line-height: 1.35;
  text-decoration: none;
  transition: color .2s;
}

.nice__collectionPage:hover h3 {
  color: var(--violet);
}

.nice__collectionPage p {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
  margin: 0;
}

.help-page-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, .25);
  font-size: 18px;
  flex-shrink: 0;
  align-self: center;
  transition: all .2s;
}

.nice__collectionPage:hover .help-page-arrow {
  color: rgba(105, 0, 204, .80);
  transform: translateX(4px);
}

/* ── ARTICLE CONTENT ─────────────────────────────────────── */
/* Article body typography */
.nice__collection-page h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin: 36px 0 14px;
  line-height: 1.3;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.nice__collection-page h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.nice__collection-page h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 10px;
}

.nice__collection-page p {
  font-size: 15px;
  line-height: 1.80;
  margin: 0 0 16px;
}

.nice__collection-page ul,
.nice__collection-page ol {
  padding-left: 22px;
  margin: 0 0 20px;
}

.nice__collection-page li {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 8px;
}

.nice__collection-page a {
  color: var(--violet);
  text-decoration: underline;
  transition: color .2s;
}

.nice__collection-page a:hover {
  color: #C9A0FF;
}

.nice__collection-page strong {
  font-weight: 700;
}

/* Info / warning callout boxes */
.nice__collection-page .help-callout {
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin: 24px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.65;
}

.nice__collection-page .help-callout.info {
  background: rgba(105, 0, 204, .10);
  border: 1px solid rgba(105, 0, 204, .22);
  color: #C9A0FF;
}

.nice__collection-page .help-callout.success {
  background: rgba(34, 197, 94, .08);
  border: 1px solid rgba(34, 197, 94, .20);
  color: #22C55E;
}

.nice__collection-page .help-callout.warning {
  background: rgba(255, 203, 3, .08);
  border: 1px solid rgba(255, 203, 3, .20);
  color: var(--yellow);
}

.nice__collection-page .help-callout-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* Steps numbered list */
.nice__collection-page .help-steps {
  counter-reset: help-step;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.nice__collection-page .help-steps li {
  counter-increment: help-step;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.nice__collection-page .help-steps li:last-child {
  border-bottom: none;
}

.nice__collection-page .help-steps li::before {
  content: counter(help-step);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--strawberry));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Code / command blocks */
.nice__collection-page code {
  background: rgba(105, 0, 204, .12);
  border: 1px solid rgba(105, 0, 204, .22);
  border-radius: 5px;
  padding: 2px 7px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #C9A0FF;
}

/* Divider */
.nice__collection-page hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin: 32px 0;
}

/* CTA block at end of article */
.help-article-cta {
  background: linear-gradient(135deg, rgba(105, 0, 204, .15), rgba(246, 0, 118, .10));
  border: 1px solid rgba(105, 0, 204, .28);
  border-radius: var(--r-lg);
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}

.help-article-cta h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px !important;
  border: none !important;
  padding: 0 !important;
  margin-top: 0 !important;
}

.help-article-cta p {
  margin-bottom: 20px !important;
}

/* Breadcrumb inside CMS pages */
.help-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 0;
  flex-wrap: wrap;
}

.help-breadcrumb a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s;
}

.help-breadcrumb a:hover {
  color: var(--white);
}

.help-breadcrumb .sep {
  color: rgba(255, 255, 255, .25);
}

.help-breadcrumb .current {
  color: rgba(255, 255, 255, .70);
}

/* Sticky sidebar for article (TOC) */
.help-article-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 48px;
  align-items: start;
}

.help-toc {
  position: sticky;
  top: 96px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
}

.help-toc-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}

.help-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.help-toc-list li a {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  display: block;
  padding: 4px 8px;
  border-radius: var(--r-xs);
  border-left: 2px solid transparent;
  transition: all .15s;
}

.help-toc-list li a:hover,
.help-toc-list li a.active {
  color: var(--white);
  border-color: var(--violet);
  background: rgba(105, 0, 204, .08);
}

.help-toc-help {
  border-top: 1px solid rgba(255, 255, 255, .07);
  margin-top: 20px;
  padding-top: 16px;
  color: var(--white);
}

/* ── COLLECTION HEADER — quick links row ─────────────────── */
.help-quick-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.help-quick-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  transition: all .2s;
}

.help-quick-link:hover {
  background: rgba(105, 0, 204, .20);
  border-color: rgba(105, 0, 204, .45);
  color: var(--white);
}

/* ── RELATED ARTICLES (at bottom of article) ─────────────── */
.help-related {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.help-related-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.help-related-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.help-related-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgb(201 201 201 / 45%);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: all .2s;
}

.help-related-item:hover {
  border-color: rgba(105, 0, 204, .35);
  background: rgba(105, 0, 204, .06);
}

.help-related-item span {
  font-size: 14px;
  flex: 1;
}

.help-related-item span:hover {
  color: var(--purple);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nice__collection-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .col-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-article-layout {
    grid-template-columns: 1fr;
  }

  .help-toc {
    position: static;
  }
}

@media (max-width: 768px) {
  .nice__collection-categories {
    grid-template-columns: 1fr;
  }

  .col-2,
  .col-3 {
    grid-template-columns: 1fr;
  }

  .nice__hero.pt-200 {
    padding-top: 96px;
    padding-bottom: 48px;
  }
}


/* GROWTH PARTNER*/
/* ============================================================
   growth.css — /es/niceeat-growth-partner
   Depende de landing.css. Tono premium, escasez, exclusividad.
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.growth-hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.growth-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(105, 0, 204, .22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 92% 20%, rgba(246, 0, 118, .14) 0%, transparent 55%),
    radial-gradient(ellipse 35% 35% at 5% 80%, rgba(255, 95, 0, .08) 0%, transparent 55%);
  pointer-events: none;
}

.growth-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(105, 0, 204, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 0, 204, .05) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 40%, transparent 100%);
}

.growth-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

/* Badge de acceso limitado */
.growth-limited-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246, 0, 118, .10);
  border: 1px solid rgba(246, 0, 118, .28);
  border-radius: 100px;
  padding: 7px 18px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #FF80B0;
  margin-bottom: 28px;
}

.growth-limited-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F60076;
  animation: pulseDotRed 1.8s ease-in-out infinite;
}

@keyframes pulseDotRed {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(246, 0, 118, .4);
  }

  50% {
    opacity: .7;
    transform: scale(.7);
    box-shadow: 0 0 0 6px rgba(246, 0, 118, 0);
  }
}

.growth-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.028em;
  margin-bottom: 22px;
}

.growth-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* Métricas en el hero */
.growth-hero-metrics {
  display: flex;
  justify-content: center;
  gap: 2px;
  max-width: 640px;
  margin: 48px auto 0;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.ghm-item {
  flex: 1;
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .07);
  transition: background .2s;
}

.ghm-item:last-child {
  border-right: none;
}

.ghm-item:hover {
  background: rgba(105, 0, 204, .10);
}

.ghm-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
  background: linear-gradient(135deg, var(--violet), var(--strawberry));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ghm-lbl {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.4;
}

/* ── PARA QUIÉN ES — screening ───────────────────────────── */
.growth-fit-section {
  padding: 100px 0;
}

.growth-fit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}

.growth-fit-card {
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.growth-fit-card.good {
  background: linear-gradient(135deg, rgba(34, 197, 94, .08), rgba(22, 163, 74, .05));
  border: 1px solid rgba(34, 197, 94, .22);
}

.growth-fit-card.bad {
  background: linear-gradient(135deg, rgba(246, 0, 118, .07), rgba(105, 0, 204, .05));
  border: 1px solid rgba(246, 0, 118, .18);
}

.growth-fit-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.growth-fit-card.good .growth-fit-title {
  color: #22C55E;
}

.growth-fit-card.bad .growth-fit-title {
  color: #FF80B0;
}

.growth-fit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.growth-fit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.55;
}

.growth-fit-item .fi {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.growth-fit-card.good .fi {
  color: #22C55E;
}

.growth-fit-card.bad .fi {
  color: #FF80B0;
}

/* ── PILARES DE SERVICIO ─────────────────────────────────── */
.growth-services-section {
  padding: 100px 0;
}

.growth-service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.growth-service-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.growth-service-block.reverse {
  direction: rtl;
}

.growth-service-block.reverse>* {
  direction: ltr;
}

/* Número grande decorativo */
.growth-service-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, rgba(105, 0, 204, .20), rgba(105, 0, 204, .05));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: -8px;
}

.growth-service-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
}

.growth-service-block h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}

.growth-service-block>div>p {
  font-size: 15px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.80;
  margin-bottom: 24px;
}

.growth-service-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gsc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.55;
}

.gsc-item::before {
  content: '✓';
  color: #22C55E;
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  background: rgba(34, 197, 94, .10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icono visual del servicio */
.growth-service-visual {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}

.growth-service-visual-inner {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 300px;
}

.growth-visual-icon {
  font-size: 52px;
  text-align: center;
  margin-bottom: 8px;
}

/* Mini métricas dentro del visual */
.growth-mini-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gmm-cell {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-sm);
  padding: 12px;
  text-align: center;
}

.gmm-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

.gmm-lbl {
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* Ads simulada */
.growth-ad-mock {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--r-md);
  padding: 14px;
  font-size: 12px;
}

.ad-mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.ad-mock-platform {
  background: rgba(105, 0, 204, .15);
  border-radius: 4px;
  padding: 2px 8px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: #C9A0FF;
}

.ad-mock-label {
  font-size: 10px;
  color: rgba(255, 255, 255, .35);
}

.ad-mock-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

.ad-mock-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, .50);
  line-height: 1.5;
  margin-bottom: 8px;
}

.ad-mock-cta {
  font-size: 10px;
  font-weight: 700;
  color: var(--violet);
}

.growth-roas-bar {
  margin-top: 12px;
}

.roas-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 5px;
}

.roas-bar-track {
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .06);
  overflow: hidden;
}

.roas-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--violet), var(--strawberry));
  transition: width 1.5s ease;
}

/* Brand identity mock */
.growth-brand-mock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.gbm-swatch {
  height: 60px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: flex-end;
  padding: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
}

.gbm-typography {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-sm);
  padding: 12px;
}

.gbm-font-name {
  font-size: 9px;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 4px;
}

.gbm-font-sample {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
}

/* ── PROCESO DE TRABAJO ──────────────────────────────────── */
.growth-process-section {
  padding: 100px 0;
}

.growth-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 52px auto 0;
  position: relative;
}

/* Línea vertical */
.growth-process-steps::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--violet), rgba(105, 0, 204, .10));
}

.gps-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 32px 0;
  position: relative;
}

.gps-step:last-child {
  padding-bottom: 0;
}

.gps-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--purple));
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--black), 0 0 0 6px rgba(105, 0, 204, .25);
}

.gps-content {
  flex: 1;
  padding-top: 8px;
}

.gps-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--white);
}

.gps-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.65;
}

.gps-time {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .30);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── VROE FRAMEWORK ──────────────────────────────────────── */
.growth-vroe-section {
  padding: 80px 0;
}

.vroe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.vroe-card {
  background: var(--card-bg);
  padding: 32px 24px;
  text-align: center;
  transition: background .2s;
  position: relative;
}

.vroe-card:hover {
  background: rgba(105, 0, 204, .10);
}

/* Line right separator */
.vroe-card+.vroe-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, .07);
}

.vroe-letter {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--violet), var(--strawberry));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vroe-word {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.vroe-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .50);
  line-height: 1.55;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .growth-fit-inner {
    grid-template-columns: 1fr;
  }

  .growth-service-block {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .growth-service-block.reverse {
    direction: ltr;
  }

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

  .growth-hero-metrics {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .growth-hero-metrics {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }

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

  .growth-mini-metrics {
    grid-template-columns: 1fr;
  }
}

/* PROGRAMAS */
/* ============================================================
   programs.css — Programas de partners y referidos Niceeat
   Compartido: /es/partners y /es/referidos
   Depende de landing.css.
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.program-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.program-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Partners — violeta */
.program-hero.partners-hero::before {
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(105, 0, 204, .22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(167, 0, 204, .14) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 8% 75%, rgba(246, 0, 118, .08) 0%, transparent 55%);
}

/* Referidos — yellow/orange */
.program-hero.referidos-hero::before {
  background:
    radial-gradient(ellipse 65% 55% at 50% 45%, rgba(255, 203, 3, .14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(255, 95, 0, .12) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 8% 75%, rgba(105, 0, 204, .10) 0%, transparent 55%);
}

.program-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(105, 0, 204, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 0, 204, .05) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 40%, transparent 100%);
}

.program-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.program-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.028em;
  margin-bottom: 20px;
}

.program-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 36px;
}

/* ── TIERS DE COMISIÓN ───────────────────────────────────── */
.tiers-section {
  padding: 100px 0;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

/* Para referidos — solo 2 tiers */
.tiers-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.tier-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  position: relative;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .40);
}

.tier-card.featured {
  border-color: rgba(105, 0, 204, .45);
  background: linear-gradient(160deg, rgba(105, 0, 204, .12), rgba(167, 0, 204, .07));
  box-shadow: 0 0 40px rgba(105, 0, 204, .20);
}

.tier-card.featured-yellow {
  border-color: rgba(255, 203, 3, .40);
  background: linear-gradient(160deg, rgba(255, 203, 3, .10), rgba(255, 95, 0, .06));
  box-shadow: 0 0 40px rgba(255, 203, 3, .15);
}

.tier-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--violet), var(--strawberry));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .05em;
}

.tier-popular.yellow {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--black);
}

.tier-icon {
  font-size: 40px;
  margin-bottom: 14px;
  display: block;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.tier-commission {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.tier-commission-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .50);
  margin-bottom: 18px;
}

.tier-condition {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r-sm);
  padding: 9px 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  text-align: center;
  margin-bottom: 22px;
}

.tier-perks {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  flex: 1;
}

.tier-perk {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.5;
}

.tier-perk::before {
  content: '✓';
  font-weight: 800;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 3px;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.tier-card.featured .tier-perk::before {
  background: rgba(105, 0, 204, .15);
  color: #C9A0FF;
}

.tier-card.featured-yellow .tier-perk::before {
  background: rgba(255, 203, 3, .15);
  color: var(--yellow);
}

.tier-card:not(.featured):not(.featured-yellow) .tier-perk::before {
  background: rgba(34, 197, 94, .12);
  color: #22C55E;
}

/* ── CÓMO FUNCIONA — STEPS ───────────────────────────────── */
.program-steps-section {
  padding: 100px 0;
}

.program-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}

/* Línea conectora */
.program-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), rgba(105, 0, 204, .10));
}

.program-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.program-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid rgba(105, 0, 204, .40);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
  box-shadow: 0 0 0 6px var(--black), 0 0 0 8px rgba(105, 0, 204, .15);
  transition: all .3s;
}

.program-step:hover .program-step-num {
  background: linear-gradient(135deg, var(--violet), var(--purple));
  border-color: transparent;
  box-shadow: 0 0 0 6px var(--black), 0 8px 24px rgba(105, 0, 204, .35);
}

.program-step h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 7px;
  color: var(--white);
}

.program-step p {
  font-size: 12px;
  color: rgba(255, 255, 255, .52);
  line-height: 1.60;
}

/* Versión referidos — steps amarillos */
.program-steps.yellow-steps::before {
  background: linear-gradient(90deg, var(--yellow), rgba(255, 203, 3, .10));
}

.program-steps.yellow-steps .program-step:hover .program-step-num {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-color: transparent;
  color: var(--black);
  box-shadow: 0 0 0 6px var(--black), 0 8px 24px rgba(255, 203, 3, .35);
}

/* ── BENEFICIOS EXTRA (partners) ─────────────────────────── */
.extra-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.extra-benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.extra-benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(105, 0, 204, .40);
  box-shadow: 0 12px 32px rgba(105, 0, 204, .12);
}

.ebc-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.ebc-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 7px;
  color: var(--white);
}

.ebc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
}

/* ── PARTNER PROFILES (tipos de partner) ─────────────────── */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.profile-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-md);
  padding: 18px;
  transition: all .2s;
}

.profile-card:hover {
  border-color: rgba(105, 0, 204, .30);
  background: rgba(105, 0, 204, .06);
}

.profile-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.profile-card h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--white);
}

.profile-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, .52);
  line-height: 1.55;
}

/* ── CALCULADORA SIMPLE ──────────────────────────────────── */
.calc-section {
  padding: 80px 0;
}

.calc-card {
  max-width: 720px;
  margin: 48px auto 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.calc-header {
  background: rgba(255, 203, 3, .08);
  border-bottom: 1px solid rgba(255, 203, 3, .15);
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-body {
  padding: 28px 24px;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.calc-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 7px;
}

.calc-field input,
.calc-field select {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}

.calc-field input:focus,
.calc-field select:focus {
  border-color: rgba(255, 203, 3, .55);
  box-shadow: 0 0 0 3px rgba(255, 203, 3, .08);
}

.calc-result {
  background: rgba(255, 203, 3, .08);
  border: 1px solid rgba(255, 203, 3, .20);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
  margin-top: 4px;
}

.calc-result-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 6px;
}

.calc-result-val {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}

.calc-result-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .40);
  margin-top: 6px;
}

/* ── FORMULARIO REGISTRO ─────────────────────────────────── */
.register-section {
  padding: 80px 0;
}

.register-form-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid rgba(105, 0, 204, .28);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(105, 0, 204, .12);
}

.register-form-header {
  background: rgba(105, 0, 204, .12);
  border-bottom: 1px solid rgba(105, 0, 204, .18);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rfh-icon {
  font-size: 20px;
}

.rfh-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
}

.rfh-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
}

.register-form-body {
  padding: 28px 24px;
}

.rff {
  margin-bottom: 16px;
}

.rff label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 7px;
}

.rff .req {
  color: var(--strawberry);
  margin-left: 2px;
}

.rff input,
.rff select,
.rff textarea {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}

.rff input::placeholder,
.rff textarea::placeholder {
  color: rgba(255, 255, 255, .25);
}

.rff input:focus,
.rff select:focus,
.rff textarea:focus {
  border-color: rgba(105, 0, 204, .60);
  box-shadow: 0 0 0 3px rgba(105, 0, 204, .10);
}

.rff select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B91B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.rff select option {
  background: #1C1830;
}

.rff textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}

/* ── PARTNERS LOGOS ──────────────────────────────────────── */
.partners-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-logo-item {
  filter: grayscale(1) brightness(1.4) opacity(.50);
  transition: filter .2s;
}

.partner-logo-item:hover {
  filter: grayscale(0) brightness(1) opacity(1);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tiers-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .tiers-grid.two-col {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .extra-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .program-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .program-steps::before {
    display: none;
  }

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

  .calc-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .extra-benefits-grid {
    grid-template-columns: 1fr;
  }

  .tiers-grid {
    max-width: 100%;
  }
}