@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800;900&display=swap');

:root {
  --navy: #081A3A;
  --navy-light: #0d254f;
  --navy-bg: #061226;
  --blue: #1D66FF;
  --cyan: #25C7F7;
  --violet: #7A5CFF;
  --green: #10B981;
  --orange: #FF8A00;
  --ink: #0B1B34;
  --text: #5D6D82;
  --muted: #8A98AA;
  --line: rgba(228, 235, 243, 0.7);
  --paper: #F7FAFE;
  --white: #FFFFFF;
  
  /* Glassmorphism & Shadows */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.6);
  --shadow-premium: 0 24px 70px rgba(8, 26, 58, 0.06), 0 6px 20px rgba(8, 26, 58, 0.02);
  --shadow-hover: 0 36px 90px rgba(8, 26, 58, 0.12), 0 12px 30px rgba(8, 26, 58, 0.04);
  --shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.25);
  
  /* Borders & Radius */
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  
  --max: 1200px;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: 'Poppins', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & behavior & scrollbar */
* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(29, 102, 255, 0.25);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 5%, rgba(37, 199, 247, 0.08), transparent 30%),
    radial-gradient(circle at 95% 15%, rgba(29, 102, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 50%, #FFFFFF 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

p {
  margin: 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.page {
  overflow: clip;
}

/* Nav & Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
}

.nav.scrolled {
  top: 16px;
  width: min(var(--max), calc(100% - 40px));
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 16px 36px rgba(8, 26, 58, 0.06);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled .nav-inner {
  height: 58px;
  padding: 0 24px;
}

.brand {
  width: 150px;
  display: block;
}

.brand img {
  width: 100%;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  left: 150%;
  transition: left 0.75s ease-in-out;
}

.btn svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 30px rgba(29, 102, 255, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 15px 35px rgba(29, 102, 255, 0.3);
  background: linear-gradient(135deg, #185bf2, #18bdf0);
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
  box-shadow: 0 4px 12px rgba(8, 26, 51, 0.03);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 8px 20px rgba(29, 102, 255, 0.08);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-dark:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 60px 0 80px;
  isolation: isolate;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 26, 51, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 26, 51, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 20%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 20%, black 20%, transparent 80%);
  z-index: -2;
}

.mesh {
  position: absolute;
  inset: -120px -100px auto auto;
  width: 480px;
  height: 480px;
  background:
    radial-gradient(circle at 30% 30%, rgba(37, 199, 247, 0.25), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(29, 102, 255, 0.2), transparent 45%);
  filter: blur(30px);
  border-radius: 50%;
  animation: meshMove 15s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes meshMove {
  from { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  to { transform: translate3d(-50px, 60px, 0) rotate(90deg) scale(1.15); }
}

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

@media (min-width: 1024px) {
  .hero {
    padding: 100px 0 120px;
  }
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(29, 102, 255, 0.12);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(8, 26, 51, 0.02);
  backdrop-filter: blur(10px);
}

.eyebrow i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 4px rgba(29, 102, 255, 0.15);
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--navy);
}

h1 span {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  margin-top: 24px;
  color: var(--text);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  align-items: center;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.proof {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(5px);
}

/* Interactive Hero Stage */
.hero-stage {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(37, 199, 247, 0.12), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(122, 92, 255, 0.08), transparent 35%),
    linear-gradient(145deg, #FFFFFF, #F1F6FD);
  border: 1px solid rgba(228, 235, 243, 0.8);
  box-shadow: var(--shadow-premium);
  transform-style: preserve-3d;
  perspective: 1000px;
  isolation: isolate;
  transition: transform 0.1s ease-out;
}

@media (min-width: 768px) {
  .hero-stage {
    min-height: 560px;
  }
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(29, 102, 255, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
  opacity: 0.5;
  z-index: 0;
}

.hero-logo-card {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 5;
  width: 140px;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(8, 26, 51, 0.05);
}

.hero-logo-card img {
  width: 100%;
  display: block;
}

.hero-dashboard {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 90px;
  bottom: 140px;
  background: rgba(8, 26, 58, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  transform: translate3d(0, 0, 10px);
}

@media (max-width: 480px) {
  .hero-dashboard {
    bottom: 155px;
    top: 90px;
    left: 16px;
    right: 16px;
    padding: 10px;
  }
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.dash-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dash-pulse {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.dash-time {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.7);
}

.dash-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dash-metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
}

.dm-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.dm-val {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
  color: #fff;
}

.dash-queue {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  flex: 1;
}

.dash-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.di-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.di-id {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.di-store {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
}

.di-store.TN { color: #5D9CEC; }
.di-store.ML { color: #F5D76E; }

.di-status {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  background: rgba(255, 138, 0, 0.15);
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 4px;
}

.dash-pulse-yellow {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulseYellow 1.5s infinite;
}

@keyframes pulseYellow {
  0% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.5); }
  70% { box-shadow: 0 0 0 4px rgba(255, 138, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0); }
}

.di-status.success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
}

.di-status.shipping {
  background: rgba(37, 199, 247, 0.15);
  color: var(--cyan);
}

@keyframes floatMark {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

.badge-float {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 12px 30px rgba(8, 26, 51, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: floatBadge 6s ease-in-out infinite;
  transform: translate3d(0, 0, 20px);
}

.badge-float svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue);
}

.bf1 { left: 24px; top: 120px; }
.bf2 { right: 24px; top: 60px; animation-delay: 1s; }
.bf3 { right: 36px; top: 150px; animation-delay: 2s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0) translate3d(0, 0, 20px); }
  50% { transform: translateY(-8px) translate3d(0, 0, 20px); }
}

.hero-statement {
  position: absolute;
  z-index: 5;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-premium);
  transform: translate3d(0, 0, 30px);
}

@media (min-width: 768px) {
  .hero-statement {
    left: 30px;
    right: 30px;
    bottom: 30px;
    padding: 28px;
  }
}

.hero-statement strong {
  display: block;
  color: var(--blue);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-statement p {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-size: clamp(18px, 3.5vw, 24px);
}

/* Marquee Banner */
.marquee {
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee 35s linear infinite;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

.marquee-track span {
  display: flex;
  gap: 48px;
  align-items: center;
}

.marquee-track b {
  color: var(--blue);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Section Common Styles */
section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  section {
    padding: 100px 0;
  }
}

.section-head {
  max-width: 800px;
  margin-bottom: 40px;
}

.kicker {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-copy {
  margin-top: 20px;
  color: var(--text);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
}

/* Section Mirada (Story Grid) */
.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .story {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
  }
}

.story-primary {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius-xl);
  padding: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(37, 199, 247, 0.18), transparent 40%),
    linear-gradient(145deg, var(--navy), var(--navy-bg));
  color: #fff;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .story-primary {
    position: sticky;
    top: 100px;
    align-self: start;
    min-height: 480px;
    padding: 48px;
  }
}

.story-primary img {
  position: absolute;
  width: 300px;
  right: -60px;
  bottom: -60px;
  opacity: 0.05;
  transform: rotate(-10deg);
  pointer-events: none;
}

.story-primary h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

.story-primary p {
  position: relative;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.6;
}

.story-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.story-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-premium);
  transition: var(--transition);
}

@media (min-width: 600px) {
  .story-card {
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 28px;
  }
}

.story-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(29, 102, 255, 0.15);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(29, 102, 255, 0.08), rgba(37, 199, 247, 0.1));
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.story-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.story-card p {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Bento Grid */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
  }
}

.bento-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-premium);
  transition: var(--transition);
}

@media (min-width: 768px) {
  .bento-card {
    padding: 30px;
  }
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(29, 102, 255, 0.15);
}

.bento-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -40px;
  bottom: -40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(29, 102, 255, 0.08), rgba(37, 199, 247, 0.06));
  z-index: 0;
  pointer-events: none;
}

.bento-card.large {
  background: linear-gradient(145deg, #ffffff, #f7faff);
}

@media (min-width: 768px) {
  .bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.bento-card.wide {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .bento-card.wide {
    grid-column: span 2;
  }
}

.bento-card h3 {
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.bento-card p {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.55;
}

.bento-num {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.15em;
  font-size: 11px;
}

.mini-quote {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--glass-border);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.03em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-top: 24px;
  box-shadow: 0 10px 30px rgba(8, 26, 51, 0.04);
}

/* AI Criterio Section */
.ai-section {
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 199, 247, 0.1), transparent 35%),
    #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-premium);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .ai-section {
    padding: 40px;
  }
}

@media (min-width: 1024px) {
  .ai-section {
    padding: 50px;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: start;
  }
}

.ai-section h2 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.15;
}

.ai-copy {
  color: var(--text);
  font-size: clamp(15px, 1.6vw, 16.5px);
  line-height: 1.65;
}

.ai-copy p + p {
  margin-top: 16px;
}

.ai-paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

@media (min-width: 600px) {
  .ai-paths {
    grid-template-columns: 1fr 1fr;
  }
}

.ai-path {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #ffffff, #f9fcff);
  transition: var(--transition);
}

.ai-path:hover {
  border-color: rgba(29, 102, 255, 0.15);
  box-shadow: 0 10px 30px rgba(29, 102, 255, 0.04);
}

.ai-path strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.ai-path span {
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.5;
}

/* Pickmaster Highlight Section */
.pickmaster {
  background: linear-gradient(180deg, #f7fafe 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pick-shell {
  border-radius: var(--radius-xl);
  padding: 24px;
  background:
    radial-gradient(circle at 95% 5%, rgba(122, 92, 255, 0.08), transparent 30%),
    linear-gradient(145deg, #ffffff, #f7faff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

@media (min-width: 768px) {
  .pick-shell {
    padding: 40px;
  }
}

.pick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .pick-grid {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 48px;
  }
}

.pick-logo {
  width: min(100%, 260px);
  display: block;
  margin-bottom: 20px;
}

.pick-logo img {
  width: 100%;
  display: block;
}

.partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(29, 102, 255, 0.06);
  border: 1px solid rgba(29, 102, 255, 0.12);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.partner i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(37, 199, 247, 0.15);
}

.pick-copy p {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(8, 26, 51, 0.02);
}

.chip svg {
  width: 14px;
  height: 14px;
  stroke: var(--blue);
}

.integrations-row {
  margin: 0 0 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.integration-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.integration-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.integration-logo {
  height: 16px;
  display: flex;
  align-items: center;
}

.integration-logo img {
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.integration-logo:hover img {
  transform: scale(1.08);
}

.integration-soon {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.integration-soon::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.6;
}

/* Pickmaster Video Play Card */
.video-cta {
  padding: 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(29, 102, 255, 0.06), rgba(37, 199, 247, 0.06));
  border: 1px solid rgba(29, 102, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

@media (min-width: 600px) {
  .video-cta {
    padding: 20px;
    gap: 24px;
  }
}

.video-cta strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.video-cta span {
  color: var(--text);
  font-size: 13px;
  line-height: 1.4;
  display: block;
}

.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 8px 20px rgba(29, 102, 255, 0.2);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.play-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(29, 102, 255, 0.3);
  animation: pulsePulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes pulsePulse {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

.play-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 25px rgba(29, 102, 255, 0.25);
}

.play-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  transform: translateX(1.5px);
}

/* Pickmaster Product Mockups Stage */
.product-stage {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(122, 92, 255, 0.18), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(37, 199, 247, 0.12), transparent 30%),
    linear-gradient(145deg, #091c38, #061122);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), var(--shadow-dark);
}

/* Embedded video container & mockup styling */
.product-stage.video-container {
  background: transparent;
  box-shadow: none;
  min-height: auto;
  overflow: visible;
}

.video-mockup {
  background: var(--navy-bg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  width: 100%;
  transition: var(--transition);
}

.video-mockup:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  border-color: rgba(29, 102, 255, 0.2);
}

.mockup-header {
  height: 36px;
  background: #111b2d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
  position: relative;
}

.mockup-header .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.mockup-header .dot.red { background: #ff5f56; }
.mockup-header .dot.yellow { background: #ffbd2e; }
.mockup-header .dot.green { background: #27c93f; }

.mockup-header .mockup-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (min-width: 768px) {
  .product-stage {
    min-height: 520px;
  }
}

.desktop-frame {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 24px;
  z-index: 2;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

/* Browser mock frame dots */
.desktop-frame::before {
  content: "";
  display: block;
  height: 18px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  z-index: 5;
}

.desktop-frame img {
  width: 100%;
  display: block;
}

.phone {
  position: absolute;
  z-index: 4;
  width: 150px;
  border-radius: 26px;
  padding: 6px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: phoneFloat 7s ease-in-out infinite;
}

@media (min-width: 480px) {
  .phone {
    width: 180px;
  }
}

.phone img {
  width: 100%;
  border-radius: 21px;
  display: block;
}

.phone.one {
  left: 20px;
  bottom: 24px;
  transform: rotate(-3deg);
}

.phone.two {
  right: 20px;
  bottom: 30px;
  transform: rotate(3deg);
  animation-delay: 1.5s;
}

.analytics-mini {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 250px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 480px) {
  .analytics-mini {
    width: 290px;
  }
}

.analytics-mini img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.pick-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .pick-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pick-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pick-feature {
  padding: 20px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-premium);
  transition: var(--transition);
}

.pick-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(29, 102, 255, 0.12);
}

.pick-feature h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.pick-feature p {
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.55;
}

/* Section Personas (Human Cards) */
.human {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.human-card {
  min-height: 300px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .human-card {
    padding: 40px;
  }
}

.human-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(29, 102, 255, 0.12);
}

.human-card h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.15;
}

.human-card p {
  margin-top: 16px;
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.6;
}

/* Contact Grid & Section Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
  }
}

.contact-info {
  padding-top: 10px;
}

.contact-info h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-premium);
  transition: var(--transition);
}

.contact-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 102, 255, 0.15);
  box-shadow: var(--shadow-hover);
}

.contact-channel .channel-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(29, 102, 255, 0.08), rgba(37, 199, 247, 0.1));
  color: var(--blue);
  display: grid;
  place-items: center;
}

.contact-channel .channel-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.channel-details strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
}

.channel-details span {
  font-size: 13px;
  color: var(--text);
}

/* Contact Form Glassmorphic Card */
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

@media (min-width: 600px) {
  .contact-card {
    padding: 40px;
  }
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--navy);
  background: var(--paper);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(29, 102, 255, 0.08);
}

/* Honeypot field (anti-spam) */
.form-group-honey {
  display: none !important;
}

.form-alert {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  line-height: 1.5;
  margin-top: 10px;
}

.form-alert.success {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: #065f46;
}

.form-alert.error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: #991b1b;
}

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

.spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 8px;
}

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

/* Bento Cards Glow effect */
.bento-card {
  position: relative;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    250px circle at var(--mouse-x, 0) var(--mouse-y, 0),
    rgba(29, 102, 255, 0.05),
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.bento-card * {
  position: relative;
  z-index: 1;
}

.bento-card.large * {
  z-index: 1;
}

.bento-card .mini-quote {
  z-index: 2;
}

/* Cinema Light Pulsing Backlight Glow */
.product-stage.video-container {
  position: relative;
}

.product-stage.video-container::before {
  content: '';
  position: absolute;
  inset: 20px;
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--violet));
  filter: blur(60px);
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  animation: cinemaPulse 6s ease-in-out infinite alternate;
}

@keyframes cinemaPulse {
  0% { opacity: 0.08; filter: blur(50px); }
  100% { opacity: 0.18; filter: blur(75px); }
}

.video-mockup {
  position: relative;
  z-index: 1;
}

/* Footer Section */
footer {
  padding: 40px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer-inner img {
  width: 120px;
  display: block;
}

/* Scroll reveal class animations */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Premium Modal for Video */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background: rgba(6, 18, 38, 0.82);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.open {
  display: flex;
  opacity: 1;
}

.modal-card {
  width: min(100%, 900px);
  border-radius: var(--radius-lg);
  background: #000;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal.open .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.video-frame {
  aspect-ratio: 16/9;
  width: 100%;
  background: #000;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Tablet adjustments */
@media (max-width: 1020px) {
  .product-stage {
    min-height: 480px;
  }
}

/* Mobile responsive fixes */
@media (max-width: 767px) {
  .brand {
    width: 130px;
  }
  .nav-links a:not(.btn) {
    display: none;
  }
  .nav-links .btn {
    min-height: 38px;
    padding: 0 16px;
    font-size: 13px;
  }
  .proof-row {
    margin-top: 24px;
  }
  .hero-statement {
    padding: 16px;
  }
  .hero-statement p {
    font-size: 17px;
  }
  .hero-stage {
    min-height: 400px;
  }
  .bf3 {
    display: none;
  }
  .bf1 { left: 16px; top: 100px; }
  .bf2 { right: 16px; top: 20px; }
  
  .product-stage {
    min-height: 440px;
  }
  .desktop-frame {
    left: 12px;
    right: 12px;
    top: 16px;
    border-radius: 12px;
  }
  .desktop-frame::before {
    height: 14px;
  }
  .phone {
    width: 120px;
  }
  .phone.one {
    left: 12px;
    bottom: 10px;
  }
  .phone.two {
    right: 12px;
    bottom: 24px;
  }
  .analytics-mini {
    width: 190px;
    bottom: 10px;
  }
  
  .video-cta {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SECCION PRODUCTOS (ECOSISTEMA KAUI) - MODULAR Y REMOVIBLE
   ========================================================================== */
.products-section {
  position: relative;
  background: transparent;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  box-shadow: var(--shadow-premium);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(29, 102, 255, 0.25);
}

/* Specific styling for pickmaster card to stand out as flagship */
.product-card.pickmaster-card {
  background: linear-gradient(to bottom, var(--white), rgba(247, 250, 254, 0.5));
}

.product-card.pickmaster-card:hover {
  box-shadow: 0 30px 85px rgba(29, 102, 255, 0.08), 0 10px 30px rgba(29, 102, 255, 0.02);
}

.product-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.product-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  display: inline-block;
}

.badge-insignia {
  background: rgba(29, 102, 255, 0.1);
  color: var(--blue);
}

.badge-lanzado {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.badge-beta {
  background: rgba(122, 92, 255, 0.1);
  color: var(--violet);
}

.product-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-title-wrap h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.product-card-logo {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

.product-logo-link {
  display: block;
  transition: opacity 0.2s ease;
}

.product-logo-link:hover {
  opacity: 0.85;
}

.product-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.product-card-icon svg {
  width: 22px;
  height: 22px;
}

.icon-live {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.icon-exhibilo {
  background: linear-gradient(135deg, var(--green), #34d399);
}

.icon-buyersona {
  background: linear-gradient(135deg, var(--orange), #ffb24d);
}


.product-body p {
  color: var(--text);
  font-size: clamp(14px, 1.6vw, 15px);
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.product-footer {
  margin-top: auto;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}

.product-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-link:hover {
  color: var(--cyan);
}

.product-link:hover svg {
  transform: translateX(4px);
}

/* Grid layout logic */
@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .product-card.pickmaster-card { grid-column: span 3; }
  .product-card.sales-card { grid-column: span 3; }
  .product-card.exhibilo-card { grid-column: span 3; }
  .product-card.buyersona-card { grid-column: span 3; }
  .product-card.magilore-card { grid-column: span 6; }
}

@media (min-width: 1024px) {
  .product-card.exhibilo-card { grid-column: span 2; }
  .product-card.buyersona-card { grid-column: span 2; }
  .product-card.magilore-card { grid-column: span 2; }
}
/* ==========================================================================
   FIN SECCION PRODUCTOS
   ========================================================================== */
