@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,600,700,800,900&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f5f7fa;
  --border: #e5e8f0;
  --text: #171A29;
  --text-muted: #6b7280;
  --accent: #38B6FF;
  --accent-glow: rgba(56, 182, 255, 0.15);
  --accent-2: #2a9de8;
  --secondary: #00C8B3;
  --secondary-hover: #00b3a0;
  --radius: 20px;
  --shadow: 0 4px 32px rgba(56, 182, 255, 0.08);
  --shadow-hover: 0 12px 48px rgba(56, 182, 255, 0.18);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Unbounded', 'Satoshi', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'Unbounded', 'Satoshi', sans-serif; line-height: 1.1; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4vw;
  background: rgba(248, 250, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--accent);
  color: white !important;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  background: var(--accent-2) !important;
  box-shadow: 0 4px 20px var(--accent-glow) !important;
}

/* ─── HERO ─── */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 4vw 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(56, 182, 255, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 82, 204, 0.06), transparent),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(56, 182, 255, 0.05), transparent);
  z-index: -1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-glow);
  border: 1px solid rgba(56, 182, 255, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 860px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent), #38B6FF, var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 560px;
  margin: 1.5rem auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(56, 182, 255, 0.3);
}

.btn-ghost {
  background: var(--secondary);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  transition: all 0.25s;
}

.btn-ghost:hover {
  background: var(--secondary-hover);
  color: white;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  animation: fadeUp 0.8s 0.4s ease both;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Satoshi', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* ─── FLOATING ORBS ─── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px; height: 400px;
  background: rgba(56, 182, 255, 0.08);
  top: 10%; right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px; height: 300px;
  background: rgba(0, 82, 204, 0.06);
  bottom: 10%; left: -80px;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* ─── SECTIONS ─── */
section {
  padding: 6rem 4vw;
  position: relative;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 600px;
}

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

/* ─── PARTNERS CAROUSEL ─── */
.partners-section {
  padding: 3rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.partners-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: carousel-scroll 30s linear infinite;
}

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

.carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 48px;
  padding: 0 1rem;
}

.carousel-item img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.3s ease;
}

.carousel-item img:hover {
  filter: grayscale(0%) opacity(1);
}

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

/* ─── VALUE PROPS ─── */
.value-section {
  background: var(--surface);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  margin-top: 4rem;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.value-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}

.value-card:hover {
  background: var(--surface-2);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.value-icon:empty {
  display: none;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ─── BSUITE SECTION ─── */
.bsuite-section {
  background: var(--surface);
  padding: 5rem 4vw;
  overflow: hidden;
}

/* ─── Wrapper: card | mid (features + phone) ─── */
.bsuite-wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

/* ─── Mid: feature-cards + teléfono juntos ─── */
.bsuite-mid {
  display: flex;
  gap: 2rem;
  align-items: center;
}

/* ─── Card (izquierda) ─── */
.bsuite-card {
  max-width: 480px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.bsuite-card .section-label { margin-bottom: 0.6rem; }

.bsuite-card .section-title {
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.bsuite-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.bsuite-features {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}

.bsuite-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.bsuite-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.bg-green { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.bg-blue  { background: rgba(56, 182, 255, 0.12); color: var(--accent); }
.bg-purple{ background: rgba(139, 92, 246, 0.12); color: #8b5cf6; }
.bg-amber { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }

.bsuite-feat h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  letter-spacing: -0.01em;
}

.bsuite-feat p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 300;
}

.bsuite-actions {
  display: flex;
  gap: 0.75rem;
}

.bsuite-actions .btn-primary,
.bsuite-actions .btn-ghost {
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
}

/* ─── FEATURE CARDS (centro) ─── */
.bsuite-feat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 480px;
}

.bsuite-feat-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.bsuite-feat-card:hover {
  border-color: rgba(56, 182, 255, 0.25);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.bsuite-feat-icon-sm {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.bsuite-feat-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.bsuite-feat-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ─── Visual (derecha) ─── */
.bsuite-visual {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bsuite-phone-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  background: #0d0d0d;
  border-radius: 30px;
  padding: 9px;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.1);
}

.bsuite-phone-frame img,
.bsuite-phone-frame video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 21px;
}

.bsuite-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 22px;
  background: #0d0d0d;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

@media (max-width: 900px) {
  .bsuite-section {
    padding: 3rem 0 3rem 4vw;
    overflow: visible;
  }
  .bsuite-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
  .bsuite-mid {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
  .bsuite-card {
    max-width: 100%;
    margin-right: 4vw;
  }
  .bsuite-feat-cards {
    max-width: 100%;
    margin-right: 4vw;
  }
  .bsuite-visual {
    justify-content: center;
    width: 100%;
  }
  .bsuite-phone-frame {
    max-width: 240px;
  }
  .bsuite-actions {
    flex-direction: column;
  }
}

/* ─── ECOSISTEMA ELEXGEAR ─── */
.ecosystem-section {
  background: var(--surface);
  padding: 5rem 4vw;
}
.ecosystem-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3.5rem;
  position: relative;
}
.ecosystem-flow::before {
  content: '';
  position: absolute;
  left: 14%;
  right: 14%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
  opacity: 0.2;
  pointer-events: none;
}
.eco-step {
  text-align: center;
  width: 220px;
  flex-shrink: 0;
  padding: 2rem 1.5rem 1.75rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.eco-step:hover {
  border-color: rgba(56, 182, 255, 0.25);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.eco-step.eco-featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  box-shadow: 0 4px 24px var(--accent-glow);
}
.eco-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.eco-icon-1 { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.eco-icon-2 { background: rgba(56, 182, 255, 0.12); color: var(--accent); }
.eco-icon-3 { background: rgba(139, 92, 246, 0.12); color: #8b5cf6; }
.eco-icon-4 { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.eco-step h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.eco-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 300;
}
.eco-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .ecosystem-flow {
    flex-direction: column;
    gap: 1rem;
  }
  .eco-arrow {
    transform: rotate(90deg);
  }
  .eco-step {
    width: 100%;
    max-width: 280px;
  }
  .ecosystem-flow::before { display: none; }
}

/* ─── HERO BADGE ─── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(56, 182, 255, 0.15);
  border: 1px solid rgba(56, 182, 255, 0.3);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  white-space: nowrap;
}

/* ─── BSUITE FEATURES SUBTITLE ─── */
.bsuite-features-subtitle {
  max-width: 640px;
  margin: 1rem auto 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── HERRAMIENTAS ESTRELLA (KISAMI) ─── */
.tools-section {
  background: var(--surface);
  padding: 6rem 4vw;
  overflow: hidden;
}

.tools-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.tools-header .section-title {
  margin: 0 auto;
}

.tool-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card Kisami */
.tool-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  position: relative;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #25d366, var(--accent), #38B6FF);
}

.tool-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.tool-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(37, 211, 102, 0.12);
  color: #1da851;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tool-logo-row h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.tool-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1da851;
  background: rgba(37, 211, 102, 0.12);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin-top: 0.3rem;
}

.tool-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.tool-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.tool-feat {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.tool-feat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.tool-feat h4 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  letter-spacing: -0.01em;
}

.tool-feat p {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
  font-weight: 300;
}

.tool-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tool-actions .btn-primary,
.tool-actions .btn-ghost {
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
}

/* Mockup WhatsApp */
.tool-mockup {
  display: flex;
  justify-content: center;
}

.mock-phone {
  width: 100%;
  max-width: 360px;
  border-radius: 28px;
  background: #e5ddd5;
  border: 8px solid #171A29;
  box-shadow: 0 24px 64px rgba(13, 18, 32, 0.25);
  overflow: hidden;
  position: relative;
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: #075e54;
  color: white;
}

.mock-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-name {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
}

.mock-status {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
}

.mock-chat {
  padding: 1.1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(56, 182, 255, 0.06), transparent 40%),
    #e5ddd5;
  min-height: 340px;
}

.bubble {
  max-width: 78%;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.45;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}

.bubble p {
  margin: 0;
  padding-bottom: 1.1rem;
  font-weight: 400;
}

.bubble-time {
  position: absolute;
  bottom: 0.35rem;
  right: 0.6rem;
  font-size: 0.62rem;
  color: rgba(0,0,0,0.4);
}

.bubble-in {
  background: white;
  align-self: flex-start;
  border-top-left-radius: 3px;
  color: var(--text);
}

.bubble-out {
  background: #dcf8c6;
  align-self: flex-end;
  border-top-right-radius: 3px;
  color: var(--text);
}

.bubble-system {
  background: #fef3c7;
  align-self: center;
  text-align: center;
  border-radius: 12px;
}

.bubble-system p {
  padding-bottom: 0;
  font-size: 0.75rem;
  color: #92400e;
}

.bubble-system .bubble-time { display: none; }

.mock-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  background: #f0f0f0;
}

.mock-input span {
  color: #9aa0a6;
  font-size: 0.82rem;
}

.mock-send {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #075e54;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Responsive herramientas */
@media (max-width: 900px) {
  .tool-featured {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .mock-phone { max-width: 380px; }
}

@media (max-width: 600px) {
  .tool-feats { grid-template-columns: 1fr; }
  .tool-card { padding: 1.75rem; }
}

/* ─── SECURITY SECTION ─── */
.security-section {
  background: var(--surface);
  padding: 6rem 4vw;
  overflow: hidden;
}

.security-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 3.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.security-copy .section-title {
  margin-bottom: 1.25rem;
}

.security-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.security-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.security-feat {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.security-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.security-feat h4 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  letter-spacing: -0.01em;
}

.security-feat p {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
  font-weight: 300;
}

.security-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.security-actions .btn-primary,
.security-actions .btn-ghost {
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
}

/* ─── Security visual panel ─── */
.security-visual {
  display: flex;
  justify-content: center;
}

.sec-panel {
  width: 100%;
  max-width: 560px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  padding: 1.5rem;
  box-shadow: 0 24px 64px rgba(10, 22, 40, 0.35);
  color: white;
}

.sec-panel-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  padding: 0.35rem 0.35rem 1.15rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sec-panel-dot,
.sec-panel-foot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.sec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
}

.sec-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.1rem 1.1rem;
  transition: all 0.25s;
}

.sec-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(56, 182, 255, 0.35);
}

.sec-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sec-card-cam .sec-card-icon { background: rgba(56, 182, 255, 0.15); color: #38B6FF; }
.sec-card-access .sec-card-icon { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.sec-card-alarm .sec-card-icon { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.sec-card-smoke .sec-card-icon { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
.sec-card-barrier .sec-card-icon { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.sec-card-siren .sec-card-icon { background: rgba(16, 185, 129, 0.15); color: #34d399; }

.sec-card-info {
  min-width: 0;
}

.sec-card-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sec-card-status {
  font-size: 0.74rem;
  font-weight: 500;
  margin-top: 0.2rem;
}

.sec-card-status.ok { color: #34d399; }
.sec-card-status.warn { color: #fbbf24; }

.sec-panel-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Responsive security */
@media (max-width: 900px) {
  .security-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .security-feats { grid-template-columns: 1fr; }
  .sec-panel { max-width: 360px; }
}

/* ─── PACKAGES ─── */
.packages-section { background: var(--bg); }

.packages-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.pkg-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.pkg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #38B6FF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.pkg-card:hover {
  border-color: rgba(56, 182, 255, 0.3);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.pkg-card:hover::before { transform: scaleX(1); }

.pkg-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.pkg-model {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.pkg-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

.pkg-card .tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.pkg-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.pkg-features-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 400;
}

.pkg-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.pkg-benefits {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.benefit-tag {
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.25rem 0.7rem;
  color: var(--text-muted);
}

/* ─── HOW WE WORK ─── */
.process-section {
  background: var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
  opacity: 0.3;
}

.process-step {
  padding: 0 2rem;
  text-align: center;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.process-step:hover .step-num {
  background: var(--accent);
  color: white;
}

.process-step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
  color: white;
  text-align: center;
  padding: 8rem 4vw;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(56, 182, 255, 0.15), transparent);
}

.cta-section .section-label { color: #38B6FF; }

.cta-section h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 700px;
  margin: 1rem auto 1.5rem;
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  font-weight: 300;
  position: relative;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  position: relative;
}

.btn-white {
  background: var(--accent);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(56, 182, 255, 0.25);
}

.btn-white:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(56, 182, 255, 0.35);
}

.btn-outline-white {
  background: var(--secondary);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  transition: all 0.25s;
}

.btn-outline-white:hover {
  background: var(--secondary-hover);
  color: white;
  transform: translateY(-2px);
}

/* ─── FOOTER ─── */
footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.4);
  padding: 3rem 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

footer p {
  font-size: 0.8rem;
}

.footer-city {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .packages-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-grid::before { display: none; }
  .hero-stats { gap: 2rem; }
}

@media (max-width: 600px) {
  .packages-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-group { flex-direction: column; align-items: center; }
}
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;

  display: flex;
  align-items: center;
  gap: 10px;

  background: #25D366;
  color: white;

  padding: 14px 16px;
  border-radius: 50px;

  text-decoration: none;

  z-index: 99999;

  box-shadow: 0 10px 28px rgba(0,0,0,0.25);

  transition: all 0.25s ease;
}

.wa-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
}

.wa-float svg {
  flex-shrink: 0;
}

.wa-label {
  font-size: 0.9rem;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 600px) {
  .wa-float {
    padding: 12px;
  }

  .wa-label {
    display: none;
  }
}

.ig-float {
  position: fixed;
  right: 24px;
  bottom: 92px; /* arriba del WhatsApp */

  display: flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  color: white;

  padding: 14px 16px;
  border-radius: 50px;

  text-decoration: none;

  z-index: 99999;

  box-shadow: 0 10px 28px rgba(0,0,0,0.25);

  transition: all 0.25s ease;
}

.ig-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
}

.ig-float svg {
  flex-shrink: 0;
}

.ig-label {
  font-size: 0.9rem;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 600px) {
  .ig-float {
    padding: 12px;
    bottom: 86px;
  }

  .ig-label {
    display: none;
  }
}

/* ─── HAMBURGER MENU ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── PKG CARD FEATURED ─── */
.pkg-card-featured {
  border-color: var(--accent) !important;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%) !important;
}
.pkg-card-featured .pkg-model {
  background: var(--accent);
  color: white;
}
.pkg-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.pkg-link:hover { text-decoration: underline; }

/* ─── ENHANCED FOOTER ─── */
footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.4);
  padding: 4rem 4vw 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col h5 {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col a,
.footer-col span {
  display: block;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: rgba(255,255,255,0.8);
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  margin: 0;
  transition: all 0.25s;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}
.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ─── RESPONSIVE OVERRIDES ─── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(248, 250, 255, 0.98);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 150;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    font-size: 1.2rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  section { padding: 4rem 4vw; }
  .packages-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 2rem; }
  .cta-group { flex-direction: column; align-items: center; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .packages-grid { grid-template-columns: 1fr; }
}
