/* ══════════════════════════════════════════════════════════
   TOKENS & RESET
══════════════════════════════════════════════════════════ */
:root {
  --primary: #0F172A;
  --accent: #06B6D4;
  --success: #10B981;
  --danger: #EF4444;
  --bg-light: #F8FAFC;
  
  --ink:     #0F172A;
  --ink2:    #334155;
  --muted:   #64748B;
  --border:  #E2E8F0;
  --card:    #FFFFFF;
  --bg:      #F1F5F9;
  --amber:   #F59E0B;
  
  --radius:  12px;
  --shadow:  0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --font-b:  'Inter', sans-serif;
  --font-d:  'Inter', sans-serif;
  --nav-w:   240px;
}

/* --- MODAL PRIVACIDAD --- */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(4px);
  display: none; justify-content: center; align-items: center; z-index: 9999;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: #fff; width: 100%; max-width: 900px; height: 90vh;
  border-radius: 20px; position: relative; overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: modalScale 0.3s ease-out;
}
@keyframes modalScale { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close {
  position: absolute; top: 20px; right: 20px; width: 40px; height: 40px;
  background: #fff; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; cursor: pointer; border: 1px solid #E2E8F0;
  color: #0F172A; z-index: 10; transition: 0.2s;
}
.modal-close:hover { background: #F1F5F9; transform: rotate(90deg); }
.modal-iframe { width: 100%; height: 100%; border: none; }

/* --- TRUST NOTE --- */
.trust-note {
  margin-top: 24px; padding: 12px; background: rgba(255,255,255,0.05); 
  border-radius: 8px; font-size: 12px; color: rgba(255,255,255,0.5); 
  border: 1px solid rgba(255,255,255,0.1); max-width: 600px; 
  margin-left: auto; margin-right: auto;
}

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

/* Hide number input spinners */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--ink);
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════════════════════
   SIDEBAR NAV
══════════════════════════════════════════════════════════ */
.nav {
  width: var(--nav-w);
  flex-shrink: 0;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 100;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.sidebar-collapsed .nav {
  transform: translateX(-100%);
}

/* ══════════════════════════════════════════════════════════
   SIDEBAR TOGGLE BUTTON
══════════════════════════════════════════════════════════ */
.sidebar-toggle {
  position: fixed;
  left: var(--nav-w);
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 101;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: none;
}

body.sidebar-collapsed .sidebar-toggle {
  left: 0;
}

.sidebar-toggle svg {
  transition: transform .4s;
  transform: rotate(0deg);
}

body.sidebar-collapsed .sidebar-toggle svg {
  transform: rotate(180deg);
}

.sidebar-toggle:hover {
  width: 28px;
  background: var(--accent);
}

.nav-logo {
  padding: 24px 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, .5);
  font-family: var(--font-b);
  margin-top: 1px;
}

.nav-section {
  padding: 14px 12px 4px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin: 1px 8px;
  border-radius: 8px;
  cursor: pointer;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 500;
  transition: all .3s;
  text-decoration: none;
}

.nav-item:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.nav-item.active {
  background: var(--accent);
  color: #fff;
}

.nav-item svg {
  flex-shrink: 0;
  opacity: .8;
}

.nav-item.active svg {
  opacity: 1;
}

.nav-spacer {
  flex: 1;
}

.nav-user {
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-avatar {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.nav-user-info {
  flex: 1;
  min-width: 0;
}

.nav-user-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-user-role {
  font-size: 10px;
  color: rgba(255, 255, 255, .45);
}

/* ══════════════════════════════════════════════════════════
   MAIN CONTENT AREA
══════════════════════════════════════════════════════════ */
.main {
  margin-left: var(--nav-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: margin-left .4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.sidebar-collapsed .main {
  margin-left: 0;
}

.topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-title {
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-badge {
  background: var(--bg-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.topbar-notif {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.notif-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 7px;
  height: 7px;
  background: var(--danger);
  border-radius: 50%;
  border: 1.5px solid #fff;
}

.lang-selector {
  background: transparent;
  border: none;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  outline: none;
}

.content {
  padding: 28px;
  flex: 1;
}

/* ══════════════════════════════════════════════════════════
   PAGES (visibility)
══════════════════════════════════════════════════════════ */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ══════════════════════════════════════════════════════════
   LANDING PAGE
══════════════════════════════════════════════════════════ */
.landing {
  padding: 0;
  background: #fff;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1E293B 100%);
  padding: 72px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(6, 182, 212, .25);
  border: 1px solid rgba(6, 182, 212, .4);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-d);
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-title em {
  color: var(--accent);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: rgba(6, 182, 212, .4);
}

.hero-flags-row {
  margin-top: 32px;
  padding-bottom: 8px;
}

.hero-flags-inline {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
}

.hero-flags-inline .fi {
  width: 32px;
  line-height: 24px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: help;
}

.hero-flags-inline .fi:hover {
  transform: translateY(-8px) scale(1.6);
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0,0,0,0.6);
  border-color: var(--accent);
}

.hero-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--success);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-stat-n {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.hero-stat-l {
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  margin-top: 2px;
}

/* Mockups panel */
.hero-mockups {
  position: relative;
  height: 420px;
}

.mockup-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  background: #111;
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .1);
}

.mockup-dash {
  position: absolute;
  right: 120px;
  top: 0;
  width: 300px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
}

/* Phone mockup content */
.phone-status {
  background: #111;
  color: #fff;
  font-size: 9px;
  padding: 10px 16px 4px;
  display: flex;
  justify-content: space-between;
}

.phone-app {
  background: var(--primary);
  min-height: 340px;
}

.phone-header {
  background: var(--primary);
  padding: 12px 14px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.phone-header-title {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.phone-greeting {
  font-size: 9px;
  color: rgba(255, 255, 255, .6);
  margin-top: 1px;
}

.phone-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.phone-metric {
  background: rgba(16, 185, 129, .15);
  border: 1px solid rgba(16, 185, 129, .2);
  border-radius: 8px;
  padding: 8px;
}

.phone-metric-n {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.phone-metric-l {
  font-size: 8px;
  color: rgba(255, 255, 255, .5);
  margin-top: 1px;
}

.phone-scan-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  font-family: var(--font-b);
}

.phone-canal-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.phone-canal {
  background: rgba(255, 255, 255, .05);
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-canal-name {
  font-size: 9px;
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
}

.phone-canal-stock {
  font-size: 8px;
  color: rgba(255, 255, 255, .45);
}

.phone-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot-g {
  background: var(--success);
}

.dot-a {
  background: var(--amber);
}

.dot-r {
  background: var(--danger);
}

/* Dashboard mockup content */
.dash-header {
  background: var(--primary);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-header-logo {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 800;
  color: #fff;
}

.dash-body {
  padding: 10px 12px;
  background: var(--bg-light);
}

.dash-title {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.dash-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.dash-kpi {
  background: #fff;
  border-radius: 6px;
  padding: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.dash-kpi-n {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.dash-kpi-l {
  font-size: 8px;
  color: var(--muted);
  margin-top: 1px;
}

.dash-shelves {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 3px;
  margin-top: 6px;
}

.dash-cell {
  aspect-ratio: 1;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, .05);
}

.dc-g {
  background: var(--success);
}

.dc-a {
  background: var(--amber);
}

.dc-r {
  background: var(--danger);
}

.dc-e {
  background: var(--border);
}

/* About section */
.about-section {
  padding: 64px 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(6, 182, 212, .1);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-d);
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.15;
}

.section-title em {
  color: var(--accent);
  font-style: normal;
}

.section-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

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

.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: box-shadow .3s, transform .3s;
  box-shadow: var(--shadow);
}

.feat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.feat-icon {
  width: 40px;
  height: 40px;
  background: rgba(6, 182, 212, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.feat-title {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.feat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   WHO USES FARMYX SECTION
══════════════════════════════════════════════════════════ */
.who-uses-section {
  padding: 72px 0 80px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
  overflow: hidden;
}

.who-uses-inner {
  padding: 0 60px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.who-uses-desc {
  margin: 0 auto 20px;
  text-align: center;
  max-width: 620px;
}

.who-uses-cta-text {
  display: inline-block;
  background: linear-gradient(135deg, rgba(6,182,212,0.08) 0%, rgba(6,182,212,0.15) 100%);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 16px;
  padding: 14px 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink2);
  max-width: 580px;
  text-align: center;
}

.who-uses-cta-text strong {
  color: var(--primary);
}

/* ── Carousel Wrapper ── */
.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
  padding: 16px 0 20px;
}

/* ── Track: uses CSS animation for seamless infinite scroll ── */
.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.desktop-track {
  animation: carouselScroll 28s linear infinite;
}

.mobile-track {
  display: none;
}

/* Pause on hover of the wrapper */
.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

@keyframes carouselScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes carouselScrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── Individual Cards ── */
.who-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px 22px;
  width: 168px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15,23,42,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.who-card:hover {
  box-shadow: 0 12px 32px rgba(6,182,212,0.18);
  transform: translateY(-6px);
  border-color: var(--accent);
}

.who-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: background 0.3s;
}

.who-card:hover .who-card-icon {
  background: rgba(6, 182, 212, 0.14);
}

.who-card-icon svg {
  width: 100%;
  height: 100%;
}

.who-card-title {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  line-height: 1.3;
}

.who-card-sub {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}

@media (max-width: 768px) {
  .who-uses-inner {
    padding: 0 24px;
  }
  .who-uses-cta-text {
    font-size: 13px;
    padding: 12px 18px;
  }
  .who-card {
    width: 148px;
    padding: 22px 16px 18px;
  }
  
  /* Restructure carousel for mobile (two alternating rows) */
  .desktop-track {
    display: none;
  }
  .mobile-track {
    display: flex;
  }
  .carousel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 0 16px;
  }
  .mt-1 {
    animation: carouselScroll 14s linear infinite;
  }
  .mt-2 {
    animation: carouselScrollRight 14s linear infinite;
  }
}

/* ══════════════════════════════════════════════════════════
   PRICING SECTION
══════════════════════════════════════════════════════════ */
.pricing-section {
  padding: 64px 60px;
  background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
}

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

.pricing-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
  max-width: calc(75% + 12px);
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

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

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(6, 182, 212, .12);
}

.price-header {
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--border);
}

.price-flag {
  margin-bottom: 10px;
}

.price-flag .fi {
  width: 28px;
  line-height: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.price-country {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.price-currency {
  font-size: 11px;
  color: var(--muted);
}

.price-amount-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 10px;
}

.price-amount {
  font-family: var(--font-d);
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
}

.price-period {
  font-size: 11px;
  color: var(--muted);
  margin-left: 2px;
}

.price-body {
  padding: 14px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.price-features li {
  font-size: 11.5px;
  color: var(--ink2);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
}

.price-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-extra {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  line-height: 1.5;
}

.price-footer {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
}

.price-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.method-pill {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink2);
}

.btn-pay {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all .3s;
  background: var(--success);
  color: #fff;
}

.btn-pay:hover {
  background: #059669;
}

.price-card.featured .btn-pay {
  background: var(--accent);
}

.price-card.featured .btn-pay:hover {
  background: #0891B2;
}

/* ══════════════════════════════════════════════════════════
   CALCULADORA
══════════════════════════════════════════════════════════ */
.calc-section {
  padding: 64px 60px;
  background: #fff;
}

.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.calc-box {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 32px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.calc-slogan {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}

.calc-slogan em {
  color: var(--accent);
  font-style: normal;
}

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

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

.calc-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.calc-select, .calc-input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-b);
  font-size: 13px;
  outline: none;
  transition: border-color .3s;
  -webkit-appearance: none;
}

.calc-select option {
  background: var(--primary);
  color: #fff;
}

.calc-select:focus, .calc-input:focus {
  border-color: var(--accent);
}

.calc-input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.calc-btn {
  width: 100%;
  padding: 13px;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background .3s;
  margin-top: 8px;
}

.calc-btn:hover {
  background: #0891B2;
}

.calc-result {
  margin-top: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  display: none;
}

.calc-result.show {
  display: block;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.calc-result-row:last-child {
  border: none;
}

.calc-result-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}

.calc-result-value {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.calc-result-value.saving {
  color: var(--success);
  font-size: 18px;
}

.calc-result-value.losing {
  color: var(--danger);
}

.calc-info-box {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}

.calc-info-title {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.calc-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 8px;
  padding: 14px;
  border: 1px solid var(--border);
}

.calc-info-emoji {
  font-size: 20px;
  flex-shrink: 0;
}

.calc-info-text {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.5;
}

.calc-info-text strong {
  color: var(--ink);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════
   DASHBOARD INTERNO (páginas del sistema)
══════════════════════════════════════════════════════════ */

/* KPI cards */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.kpi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow);
}

.kpi-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.kpi-value {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.kpi-value.green {
  color: var(--success);
}

.kpi-value.red {
  color: var(--danger);
}

.kpi-value.amber {
  color: var(--amber);
}

.kpi-sub {
  font-size: 11px;
  color: var(--muted);
}

.kpi-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  width: fit-content;
}

.kpi-badge.up {
  background: rgba(16, 185, 129, .15);
  color: #059669;
}

.kpi-badge.down {
  background: rgba(239, 68, 68, .15);
  color: #B91C1C;
}

/* Two-col layout */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Panels */
.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.panel-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-title {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.panel-body {
  padding: 18px;
}

/* Shelf map */
.shelf-section {
  margin-bottom: 20px;
}

.shelf-section-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 8px;
}

.shelf-row {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.canal-cell {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .1s;
  color: #fff;
}

.canal-cell:hover {
  transform: scale(1.1);
}

.cc-ok {
  background: var(--success);
  border-color: #059669;
}

.cc-low {
  background: var(--amber);
  border-color: #D97706;
}

.cc-crit {
  background: var(--danger);
  border-color: #B91C1C;
}

.cc-empty {
  background: #E2E8F0;
  border-color: #CBD5E1;
  color: var(--muted);
}

/* Alert list */
.alert-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.alert-item:last-child {
  border: none;
  padding-bottom: 0;
}

.alert-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.alert-dot.red {
  background: var(--danger);
}

.alert-dot.amber {
  background: var(--amber);
}

.alert-dot.green {
  background: var(--success);
}

.alert-text {
  font-size: 12px;
  color: var(--ink2);
  line-height: 1.5;
}

.alert-time {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

/* Activity */
.activity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}

.activity-item:last-child {
  border: none;
  padding-bottom: 0;
}

.activity-badge {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.ab-in {
  background: rgba(16, 185, 129, .15);
}

.ab-out {
  background: rgba(239, 68, 68, .15);
}

.activity-desc {
  flex: 1;
  color: var(--ink2);
}

.activity-time {
  color: var(--muted);
  font-size: 11px;
}

/* Table */
.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

th {
  text-align: left;
  padding: 9px 12px;
  background: var(--bg-light);
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1px solid var(--border);
}

td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--ink2);
}

tr:last-child td {
  border: none;
}

tr:hover td {
  background: var(--bg-light);
}

.td-bold {
  font-weight: 600;
  color: var(--ink);
}

.status-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
}

.sp-ok {
  background: rgba(16, 185, 129, .15);
  color: #059669;
}

.sp-low {
  background: rgba(245, 158, 11, .15);
  color: #B45309;
}

.sp-crit {
  background: rgba(239, 68, 68, .15);
  color: #B91C1C;
}

/* Forms */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.form-label.required::after {
  content: " *";
  color: var(--danger);
}

.form-input, .form-select {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .3s;
}

.form-input:focus, .form-select:focus {
  border-color: var(--accent);
}

.btn-sm {
  padding: 8px 16px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font-b);
  transition: all .3s;
}

.btn-sm-primary {
  background: var(--success);
  color: #fff;
}

.btn-sm-primary:hover {
  background: #059669;
}

.btn-sm-ghost {
  background: #fff;
  color: var(--ink2);
  border: 1px solid var(--border);
}

.btn-sm-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Page headers */
.page-header {
  margin-bottom: 24px;
}

.page-header h2 {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}

.page-header p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* QR preview box */
.qr-preview {
  background: var(--primary);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.qr-code-mock {
  width: 100px;
  height: 100px;
  background: repeating-linear-gradient(45deg, #fff 0, #fff 4px, #111 4px, #111 8px);
  border-radius: 6px;
  opacity: .9;
}

.qr-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  text-align: center;
}

.qr-code-text {
  font-family: monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .5px;
}

/* ══════════════════════════════════════════════════════════
   SVG GUIDE INTERACTIVA
══════════════════════════════════════════════════════════ */
.svg-guide-section {
  padding: 64px 60px;
  background: #fff;
}

.svg-guide-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.svg-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svg-step {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: all .3s;
}

.svg-step.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(6, 182, 212, .12);
  background: var(--bg-light);
}

.svg-step-title {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.svg-step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.svg-graphic-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.shelf-promo-title {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
  text-align: center;
  padding: 10px 20px;
  background: var(--bg-light);
  border-radius: 12px;
  border: 1px dashed var(--accent);
}

.shelf-highlight {
  background: linear-gradient(90deg, var(--accent), var(--success));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
}

.svg-graphic {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  border: 1px solid var(--border);
}

.shelf-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* ══════════════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--bg-light);
  border-radius: 16px;
  padding: 20px;
  width: 380px;
  max-width: calc(100% - 48px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-text {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.cookie-btn.accept {
  background: var(--success);
  color: white;
}

.cookie-btn.accept:hover {
  background: #059669;
}

.cookie-btn.decline {
  background: transparent;
  color: var(--muted);
  text-decoration: underline;
  padding: 8px;
}

.cookie-btn.decline:hover {
  color: var(--ink);
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    border-radius: 16px 16px 0 0;
    padding: 16px;
    gap: 12px;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .cookie-text {
    font-size: 0.82rem;
  }
}

/* SVG Animations */
.shelf-module-label {
  opacity: 0;
  transition: opacity 0.5s;
}

.step-1 .shelf-module-label, .step-4 .shelf-module-label {
  opacity: 1;
}

.shelf-divider {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s;
}

.step-2 .shelf-divider, .step-3 .shelf-divider, .step-4 .shelf-divider {
  opacity: 1;
  transform: translateY(0);
}

.shelf-qr {
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s;
  transform-origin: center;
}

.step-3 .shelf-qr, .step-4 .shelf-qr {
  opacity: 1;
  transform: scale(1);
}

.shelf-channel-hover {
  opacity: 0;
  fill: var(--success);
  transition: opacity 0.3s;
  cursor: pointer;
}

.step-4 .shelf-channel-hover:hover {
  opacity: 0.3;
}

.download-btn-container {
  margin-top: 32px;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════
   TRIAL FORM
══════════════════════════════════════════════════════════ */
.trial-section {
  padding: 64px 60px;
  background: var(--bg-light);
}

.trial-container {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.trial-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.trial-msg {
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
  margin-top: 16px;
}

.trial-msg.success {
  background: rgba(16, 185, 129, .15);
  color: #059669;
  border: 1px solid #10B981;
}

.trial-msg.error {
  background: rgba(239, 68, 68, .15);
  color: #B91C1C;
  border: 1px solid #EF4444;
}

/* Responsive tweaks */
@media (max-width: 1100px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svg-guide-container {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════
   TOGGLE SWITCH (PRICING)
══════════════════════════════════════════════════════════ */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}
input:checked + .slider {
  background-color: var(--success);
}
input:checked + .slider:before {
  transform: translateX(26px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}

/* ══════════════════════════════════════════════════════════
   ANTI-ABOUT SECTION (WHAT IT IS NOT)
   Designed for contrast and impact
══════════════════════════════════════════════════════════ */
.anti-about-section {
  padding: 80px 60px;
  background: #0F172A; /* Dark contrast */
  color: #fff;
  border-top: 4px solid var(--danger);
  position: relative;
  overflow: hidden;
}

.anti-about-section::after {
  content: 'NOT POS';
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  white-space: nowrap;
}

.anti-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.anti-about-content .section-title {
  color: #fff;
}

.anti-about-content .section-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.text-danger {
  color: var(--danger) !important;
}

.tag-danger {
  background: rgba(239, 68, 68, 0.15) !important;
  color: #EF4444 !important;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.anti-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.anti-feat-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.anti-feat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--danger);
  transform: translateX(5px);
}

.anti-feat-icon {
  width: 48px;
  height: 48px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--danger);
  flex-shrink: 0;
}

.anti-feat-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.anti-feat-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ══════════════════════════════════════════════════════════
   ANDROID MOCKUP CSS
══════════════════════════════════════════════════════════ */
.android-device {
  position: relative;
  width: 280px;
  height: 560px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5), 
              0 30px 60px -30px rgba(0,0,0,0.5),
              inset 0 -2px 10px rgba(255,255,255,0.1);
}

.device-bezel {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}

.device-screen {
  width: 100%;
  height: 100%;
  background: #0F172A;
  display: flex;
  flex-direction: column;
}

.device-header {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.device-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Scan Animation */
.scan-container {
  width: 200px;
  height: 200px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  box-shadow: 0 0 15px var(--accent);
  animation: scan 2.5s infinite ease-in-out;
}

.scan-visor {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
}

.scan-corners::before, .scan-corners::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent);
}

.scan-corners::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.scan-corners::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }

@keyframes scan {
  0% { top: 0; }
  50% { top: 100%; }
  100% { top: 0; }
}

/* Voice Animation */
.voice-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.voice-waves {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 40px;
}

.wave {
  width: 4px;
  height: 10px;
  background: var(--danger);
  border-radius: 2px;
  animation: wave 1s infinite ease-in-out;
}

.wave:nth-child(1) { animation-delay: 0.1s; }
.wave:nth-child(2) { animation-delay: 0.2s; }
.wave:nth-child(3) { animation-delay: 0.3s; }
.wave:nth-child(4) { animation-delay: 0.4s; }
.wave:nth-child(5) { animation-delay: 0.5s; }

@keyframes wave {
  0%, 100% { height: 10px; }
  50% { height: 35px; }
}

.voice-label {
  font-size: 11px;
  color: var(--danger);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* UI Mock */
.device-ui-mock {
  margin-top: 40px;
  width: 100%;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.1);
}

.ui-pill {
  display: inline-block;
  padding: 2px 8px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 8px;
}

.ui-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.ui-stats {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}

/* Device side buttons */
.device-power {
  position: absolute;
  right: -2px;
  top: 100px;
  width: 4px;
  height: 40px;
  background: #333;
  border-radius: 0 4px 4px 0;
}

.device-volume {
  position: absolute;
  left: -2px;
  top: 80px;
  width: 4px;
  height: 80px;
  background: #333;
  border-radius: 4px 0 0 4px;
}

@media (max-width: 992px) {
  .anti-about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .anti-feat-card {
    text-align: left;
  }
  .anti-about-visual {
    order: -1;
  }
}

/* ══════════════════════════════════════════════════════════
   LANDING FOOTER (IMPACTFUL)
══════════════════════════════════════════════════════════ */
.landing-footer {
  margin-top: 80px;
  background: var(--primary);
  color: #fff;
  padding: 60px 40px 20px;
  position: relative;
  overflow: hidden;
}

.footer-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
}

.footer-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 30px;
}

.footer-feat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-feat-item:first-child {
  padding-left: 0;
}

.footer-feat-item:last-child {
  padding-right: 0;
}

.footer-feat-icon {
  width: 56px;
  height: 56px;
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-feat-text h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-feat-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-phrase {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(to right, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-slogan {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.footer-contact-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.contact-info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(37, 211, 102, 0.4);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -1px;
}

.footer-links {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
  .footer-features {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-feat-item {
    padding: 30px 0;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-feat-item:last-child {
    border-bottom: none;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-phrase {
    font-size: 26px;
  }
}
