:root {
  --bg-main: #f8f9fc;
  --bg-darker: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --border-color: #e2e8f0;
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --secondary: #6366f1;
  --accent: #8b5cf6;
  --pack-basic: #64748b;
  --pack-pro: #3b82f6;
  --pack-elite: #8b5cf6;
  --gold: #f59e0b;
  --text-main: #0f172a;
  --text-muted: #475569;
  --font-heading: 'Kanit',sans-serif;
  --font-main: 'Red Hat Display',sans-serif;
  --section-padding: 40px 0;
  --transition: all 0.3s ease
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
html {
  overflow-x: hidden
}
body {
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  font-family: var(--font-main);
  overflow-x: hidden;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 30px 30px
}
.container {
  max-width: 1200px;
  min-width: 0;
  margin: 0 auto;
  padding: 0 clamp(30px, 3vw, 20px)
}
.section-padding {
  padding: var(--section-padding)
}
.dark-bg {
  background-color: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0
}
.nav-links.active-link {
  color: var(--primary)!important;
  opacity: 1!important;
  font-weight: 800;
  position: relative
}
.nav-links.active-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px
}
.dark-bg-hero {
  background: linear-gradient(135deg, #0f172a 0, #1e293b 60%, #0f172a 100%);
  padding: 100px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden
}
.dark-bg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(59, 130, 246, .15) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none
}
.page-hero {
  position: relative;
  z-index: 1
}
.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .4)
}
.gradient-text-dark {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}
.page-hero__sub {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, .75);
  max-width: 650px;
  margin: 0 auto;
  font-weight: 500
}
.quick-access {
  background: #f8f9fc
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px
}
.quick-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: var(--text-main);
  transition: transform .3s,box-shadow .3s,border-color .3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
  position: relative;
  overflow: hidden
}
.quick-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s
}
.quick-card:hover::before {
  transform: scaleX(1)
}
.quick-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, .13);
  border-color: rgba(59, 130, 246, .3)
}
.qc-icon {
  width: 52px;
  height: 52px;
  background: rgba(59, 130, 246, .1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  transition: background .3s
}
.quick-card:hover .qc-icon {
  background: var(--primary);
  color: #fff
}
.quick-card h3 {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  color: var(--text-main);
  margin: 0
}
.quick-card p {
  font-size: .9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  flex-grow: 1
}
.qc-arrow {
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: gap .2s
}
.quick-card:hover .qc-arrow {
  gap: 10px
}
.quick-card--accent {
  border-top: 4px solid var(--secondary)
}
.quick-card--accent .qc-icon {
  background: rgba(99, 102, 241, .1);
  color: var(--secondary)
}
.quick-card--accent:hover .qc-icon {
  background: var(--secondary);
  color: #fff
}
.quick-card--accent .qc-arrow,
.quick-card--accent:hover {
  border-color: rgba(99, 102, 241, .3)
}
.quick-card--gold {
  border-top: 4px solid var(--gold)
}
.quick-card--gold .qc-icon {
  background: rgba(245, 158, 11, .1);
  color: var(--gold)
}
.quick-card--gold:hover .qc-icon {
  background: var(--gold);
  color: #fff
}
.quick-card--green {
  border-top: 4px solid #25d366
}
.quick-card--green .qc-icon {
  background: rgba(37, 211, 102, .1);
  color: #25d366
}
.quick-card--green:hover .qc-icon {
  background: #25d366;
  color: #fff
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center
}
.stat-card {
  padding: 32px 20px;
  background: #f8f9fc;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: transform .3s,box-shadow .3s
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(59, 130, 246, .1)
}
.stat-number {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1
}
.stat-label {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 600
}
.comment-form-container {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  max-width: 600px;
  margin: 0 auto 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06)
}
.comment-form-container h4 {
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 16px;
  font-family: var(--font-heading)
}
.stars-input {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  align-items: center;
  font-size: 1.8rem;
  user-select: none;
}
/* Soporte SVG (sprite) — input de medias estrellas */
.stars-input .star-slot {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 0;
}
.stars-input .star-bg,
.stars-input .star-fg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  display: block;
}
.stars-input .star-bg { color: #cbd5e1; fill: currentColor; }
.stars-input .star-fg {
  color: #f59e0b;
  fill: currentColor;
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  transition: clip-path .12s ease;
}
.stars-input .star-slot.full .star-fg { clip-path: inset(0 0 0 0); -webkit-clip-path: inset(0 0 0 0); }
.stars-input .star-slot.half .star-fg { clip-path: inset(0 50% 0 0); -webkit-clip-path: inset(0 50% 0 0); }
.stars-input .star-zone {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}
.stars-input .star-zone.left  { left: 0; }
.stars-input .star-zone.right { right: 0; }
.stars-input .star-zone:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  border-radius: 2px;
}
.stars-input .rating-label {
  margin-left: 10px;
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 600;
  min-width: 60px;
}
.stars-input .rating-label.has-value { color: #f59e0b; }
/* Fallback legacy: <i class="fa-star"> (compat) */
.stars-input > i.fa-star {
  font-size: 1.6rem;
  color: #cbd5e1;
  transition: color .15s, transform .15s;
  cursor: pointer;
}
.stars-input > i.fa-star.active,
.stars-input > i.fa-star:hover {
  color: #f59e0b;
  transform: scale(1.15);
}
.social-links-contact h4 {
  color: var(--text-main);
  margin-bottom: 12px
}
@media (max-width:750px) {
  .quick-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px
  }
  .quick-card {
    padding: 20px 16px
  }
  .qc-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem
  }
  .dark-bg-hero {
    padding: 90px 20px 50px
  }
  .page-hero__title {
    font-size: 1.8rem
  }
  .stat-number {
    font-size: 2rem
  }
  .comment-form-container {
    padding: 20px
  }
}
.pt-large {
  padding-top: 120px
}
.text-center {
  text-align: center
}
.text-left {
  text-align: left
}
.mt-3 {
  margin-top: 1rem
}
.mt-4 {
  margin-top: 2rem
}
.mt-5 {
  margin-top: 3rem
}
.mb-2 {
  margin-bottom: .5rem
}
.mb-3 {
  margin-bottom: 1rem
}
.mb-4 {
  margin-bottom: 2rem
}
.mb-5 {
  margin-bottom: 3rem
}
.w-100 {
  width: 100%
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px
}
.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: .5px
}
h2 {
  font-size: 2.5rem
}
p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500
}
.text-light {
  color: #64748b
}
.text-dark {
  color: #0f172a!important
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .05),0 2px 4px -1px rgba(0, 0, 0, .03)
}
.glass-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, .1),0 8px 10px -6px rgba(0, 0, 0, .05)
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition)
}
ul {
  list-style: none
}
.dark-bg .brand-logo,
.dark-theme .brand-logo {
  filter: brightness(0) invert(1)
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
  border: none;
  font-family: var(--font-main)
}
.btn-primary {
  background-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, .3)
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(59, 130, 246, .5);
  transform: translateY(-2px)
}
.btn-secondary {
  background-color: var(--pack-elite);
  color: #fff
}
.btn-secondary:hover {
  background-color: #7c3aed
}
.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 800
}
.btn-outline:hover {
  background-color: var(--primary);
  color: #fff
}
.btn-outline-dark {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid var(--text-main)
}
.btn-outline-dark:hover {
  background-color: var(--text-main);
  color: #fff
}
.btn-large {
  padding: 14px 32px;
  font-size: 1.1rem
}
.dev-btn {
  flex: 1;
  min-width: 100px;
  padding: 15px 10px;
  font-size: 1rem
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, .4)
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(59, 130, 246, 0)
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0)
  }
}
.pulse {
  animation: 2s infinite pulse
}
.pulse-whatsapp {
  animation: 2.5s infinite pulse-wa;
  background-color: #25d366;
  color: #fff!important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, .4)
}
@keyframes pulse-wa {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .4)
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0)
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
  }
}
.pulse-whatsapp:hover {
  background-color: #20ba56
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 8px 20px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  transform: translateY(0);
  will-change: transform;
  transition: transform .35s cubic-bezier(.4,0,.2,1), padding .3s ease, box-shadow .3s ease, background .3s ease
}
.navbar.is-scrolled {
  padding: 10px 20px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
}
.navbar.is-hidden {
  transform: translateY(-100%)
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
}
.logo {
  font-size: 1.5rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading)
}
.logo span {
  opacity: .8
}
.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-main);
  opacity: .8
}
.nav-links:hover {
  opacity: 1;
  color: var(--primary)
}
.highlight-link {
  color: var(--secondary);
  opacity: 1
}
.nav-menu li {
  position: relative
}
.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px
}
.dropdown-arrow {
  font-size: .75rem;
  transition: transform .3s
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  border-radius: 12px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  border: 1px solid rgba(0,0,0,.05);
  z-index: 1050;
  pointer-events: none
}
.dropdown-menu li {
  width: 100%
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-main);
  font-weight: 600;
  font-size: .95rem;
  transition: .2s
}
.dropdown-menu a:hover {
  background: #f8fafc;
  color: var(--primary);
  padding-left: 25px
}
@media (min-width:751px) {
  .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto
  }
  .has-dropdown:hover > a .dropdown-arrow {
    transform: rotate(180deg)
  }
}
.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media (min-width:751px) and (max-width:960px) {
  .nav-container {
    padding: 0 10px
  }
  .nav-menu {
    gap: 14px
  }
  .nav-links {
    font-size: .8rem
  }
  .brand-logo {
    height: 30px!important
  }
  .logo {
    margin-left: 4px!important
  }
  .nav-actions .btn {
    font-size: .78rem;
    padding: 8px 14px
  }
}
.menu-toggle {
  display: none;
  cursor: pointer
}
.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: var(--transition);
  background-color: var(--text-main)
}
.bar-dark {
  background-color: var(--text-main)!important
}
.hero {
  position: relative;
  height: 68vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px
}
.hero-video-container {
  pointer-events: none
}
.bg-video-iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: brightness(1.2)
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, .7) 0, rgba(248, 249, 252, .95) 100%);
  z-index: 1
}
.video-overlay-light {
  background: linear-gradient(to bottom, rgba(10, 15, 30, .55) 0, rgba(10, 15, 30, .45) 60%, rgba(10, 15, 30, .6) 100%)!important
}
.hero-content {
  max-width: 780px;
  padding: 2vh 20px
}
.hero-content h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .6)
}
.gradient-text {
  color: #fff;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 20px rgba(59, 130, 246, .8),0 0 40px rgba(99, 102, 241, .5),0 2px 12px rgba(0, 0, 0, .8);
  paint-order: stroke fill;
  font-style: italic
}
.hero-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .5)
}
.hero-features {
  --icon-size: 34px;
  --text-size: 0.85rem;
  --row-spacing: 16px;
  --item-spacing: 24px;
  --item-width: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--row-spacing);
  margin: 24px 0
}
.features-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--item-spacing);
  flex-wrap: wrap
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 8px;
  width: var(--item-width)
}
.feature-item i, .feature-item .fa-icon {
  font-size: var(--icon-size);
  color: #fff;
  fill: #fff;
  width: auto;
  text-align: center;
  display: inline-block
}
.feature-item span {
  font-size: var(--text-size);
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
  width: 100%;
  display: block;
  line-height: 1.2
}
.tabs-container {
  max-width: 100%;
  margin: 0 auto
}
.tabs-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px
}
.tab-btn {
  padding: 12px 30px;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  background: 0 0;
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition)
}
.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary)
}
.tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(59, 130, 246, .4)
}
.tab-content {
  display: none;
  animation: .4s fadeIn
}
.tab-content.active {
  display: block
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
.b2b-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 35px;
  align-items: start
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: 0 12px 30px -5px rgba(0, 0, 0, .08);
  height: fit-content
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px -8px rgba(0, 0, 0, .14)
}
.pack-basic {
  border-top: 6px solid var(--pack-basic);
  background: linear-gradient(160deg, #f8faff 0, #f1f5f9 100%)
}
.pack-pro {
  border-top: 6px solid var(--pack-pro);
  transform: scale(1.02);
  background: linear-gradient(160deg, #eff6ff 0, #dbeafe 60%, #fff 100%);
  border-color: rgba(59, 130, 246, .25)
}
.pack-pro:hover {
  transform: scale(1.02) translateY(-6px)
}
.pack-elite {
  border-top: 6px solid var(--pack-elite);
  background: linear-gradient(160deg, #f5f3ff 0, #ede9fe 60%, #fff 100%);
  border-color: rgba(139, 92, 246, .2)
}
.pack-b2b-pro {
  border: 2px solid var(--secondary);
  border-top: 6px solid var(--secondary);
  background: linear-gradient(160deg, #eef2ff 0, #e0e7ff 60%, #fff 100%)
}
.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pack-pro);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px
}
.card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--text-main)
}
.card-header p {
  font-size: .9rem;
  margin-bottom: 0;
  min-height: 45px
}
.price {
  margin: 20px 0;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px
}
.price h4 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0;
  color: var(--text-main);
  font-family: var(--font-main)
}
.price .currency {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: .8
}
.b2b-calc {
  font-size: .9rem;
  font-style: italic;
  opacity: .8;
  margin-top: -10px;
  margin-bottom: 15px;
  color: var(--text-muted)
}
.pricing-features {
  margin-bottom: 25px;
  flex-grow: 1
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .95rem;
  line-height: 1.4;
  font-weight: 600
}
@media screen and (min-width:992px) {
  .pricing-features li {
    margin-bottom: 15px
  }
}
.pricing-features i {
  margin-top: 3px;
  font-size: 1rem;
  color: #10b981
}
.feature-disabled {
  opacity: .5
}
.feature-disabled i {
  color: #f43f5e
}
.pricing-card button {
  margin-top: auto
}
.liquid-metal-note {
  font-size: .8rem;
  color: #d97706;
  font-weight: 700;
  margin: 0 0 10px;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px
}
.liquid-metal-note i {
  color: #d97706;
  flex-shrink: 0
}
.warranty-note {
  font-size: .8rem;
  color: #065f46;
  font-weight: 600;
  margin: 0 0 10px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 8px;
  padding: 7px 10px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4
}
.warranty-note i {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px
}
.info-note {
  font-size: .8rem;
  color: #1e40af;
  font-weight: 600;
  margin: 0 0 10px;
  background: #eff6ff;
  border: 1px solid #93c5fd;
  border-radius: 8px;
  padding: 7px 10px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4
}
.info-note i {
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 2px
}
.cpu-compat {
  margin-top: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  text-align: left
}
.cpu-compat .comp-title {
  font-size: .8rem;
  letter-spacing: 1px;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: 800;
  text-transform: uppercase
}
.cpu-brand {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
  font-weight: 600
}
.cpu-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px
}
.pill {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  display: inline-block;
  border: 1px solid transparent
}
.pill.gray {
  background: #e2e8f0;
  color: #334155;
  border-color: #cbd5e1
}
.pill.blue {
  background: #0284c7;
  color: #fff;
  border-color: #0369a1
}
.pill.brown {
  background: #9a3412;
  color: #fff;
  border-color: #7c2d12
}
.usage-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 5px;
  font-weight: 600
}
.usage-dot i {
  font-size: .5rem
}
.usage-dot.green i {
  color: #22c55e
}
.usage-dot.blue i {
  color: #3b82f6
}
.usage-dot.red i {
  color: #ef4444
}
.ensambles-banner {
  background: linear-gradient(135deg, #2563eb, #6366f1);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  box-shadow: 0 15px 30px rgba(37, 99, 235, .3);
  position: relative;
  overflow: hidden
}
.ensambles-banner h2 {
  color: #fff;
  margin-bottom: 10px
}
.ensambles-banner p {
  color: rgba(255, 255, 255, .9);
  font-size: 1.1rem
}
.ensambles-banner i.bg-icon {
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 12rem;
  opacity: .1;
  transform: rotate(-15deg)
}
.light-animated-bg {
  background: radial-gradient(circle at center, rgba(59, 130, 246, .1) 0, rgba(255, 255, 255, 0) 50%),radial-gradient(circle at 80% 20%, rgba(139, 92, 246, .05) 0, rgba(255, 255, 255, 0) 40%)
}
.relative-z {
  position: relative;
  z-index: 1
}
.light-warranty {
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary)
}
.light-glass {
  background: #fff;
  border-color: rgba(0, 0, 0, .1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
}
.build-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 30px;
  align-items: center
}
.build-visual {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center
}
.build-images {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  height: 350px
}
.pc-float-left {
  width: 55%;
  border-radius: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  box-shadow: -10px 10px 20px rgba(0, 0, 0, .1)
}
.pc-float-right {
  width: 60%;
  border-radius: 10px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, .15)
}
.light-price-tag h3 {
  background: #f8f9fc;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 30px;
  border-radius: 10px
}
.build-details {
  flex: 1.5;
  min-width: 300px
}
.fps-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px
}
.light-stat {
  background: #f1f5f9;
  border: 1px solid #e2e8f0
}
.light-stat h5 {
  color: var(--text-muted)
}
.light-stat span {
  color: var(--text-main)
}
.components-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px
}
.light-comp {
  background: #f8f9fc;
  border-left: 3px solid var(--primary);
  color: var(--text-main)
}
.light-comp i {
  color: var(--primary);
  width: 20px
}
.gold-border-container {
  border: 3px solid var(--gold);
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  position: relative;
  box-shadow: 0 0 30px rgba(245, 158, 11, .2)
}
.b2b-gold-title {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  padding: 5px 20px;
  border-radius: 5px;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .1)
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  justify-items: center
}
.video-card {
  padding: 15px;
  width: 100%;
  max-width: 350px
}
.video-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 25px rgba(59, 130, 246, .4)
}
.video-wrapper iframe {
  pointer-events: none
}
.shorts-wrapper {
  aspect-ratio: 9/16;
  padding-bottom: 0;
  height: auto
}
.shorts-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 450px
}
.landscape-wrapper {
  aspect-ratio: 16/9;
  padding-bottom: 0;
  height: auto
}
.landscape-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: unset
}
.b2b-zoom-wrapper {
  aspect-ratio: 4/3;
  padding-bottom: 0;
  height: auto
}
.b2b-zoom-wrapper iframe {
  width: 140%;
  height: 140%;
  border: none;
  min-height: unset;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}
.b2b-zoom-wrapper .video-lazy-thumb img {
  object-fit: cover;
  transform: scale(1.3)
}
.b2b-zoom-wrapper .video-lazy-thumb:hover img {
  transform: scale(1.35);
  filter: brightness(.7)
}
.b2b-vertical-wrapper {
  aspect-ratio: 3/4;
  padding-bottom: 0;
  height: auto
}
.b2b-vertical-wrapper iframe {
  width: 200%;
  height: 200%;
  border: none;
  min-height: unset;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}
.b2b-vertical-wrapper .video-lazy-thumb img {
  object-fit: cover;
  transform: scale(1.6)
}
.b2b-vertical-wrapper .video-lazy-thumb:hover img {
  transform: scale(1.65);
  filter: brightness(.7)
}
.b2b-highlight-video {
  max-width: 400px;
  margin: 0 auto
}
.video-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0;
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--text-main)
}
.video-lazy-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 25px rgba(59, 130, 246, .4)
}
.video-lazy-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s,filter .3s
}
.video-lazy-thumb:hover img {
  transform: scale(1.05);
  filter: brightness(.7)
}
.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, .95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 25px rgba(0, 0, 0, .3);
  transition: transform .3s,background .3s;
  z-index: 3
}
.play-btn-overlay i {
  font-size: 1.5rem;
  color: #1e293b;
  margin-left: 4px
}
.video-lazy-thumb:hover .play-btn-overlay {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--primary)
}
.video-lazy-thumb:hover .play-btn-overlay i {
  color: #fff
}
.comments-marquee-container {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  padding: 30px 0 50px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  cursor: grab
}
.comments-marquee-container:active {
  cursor: grabbing
}
.comment-list {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  gap: 20px 20px;
  width: max-content;
  will-change: scroll-position
}
.comment-item {
  background: #fff;
  padding: 26px;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  width: clamp(260px, 28vw, 400px);
  white-space: normal;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.22, .68, 0, 1.2),box-shadow .3s,border-left-color .3s;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06)
}
.comment-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 28px rgba(59, 130, 246, .13);
  border-left-color: var(--gold)
}
.comment-item.lifted {
  transform: translateY(-16px) scale(1.04);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .5),0 24px 48px rgba(0, 0, 0, .12);
  z-index: 10
}
.comment-item .header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 10px
}
.comment-item h5 {
  margin: 0;
  font-size: 1rem;
  font-family: var(--font-main);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3
}
.comment-item .stars {
  color: var(--gold);
  font-size: .85rem;
  flex-shrink: 0;
  unicode-bidi: bidi-override;
  direction: ltr
}
.star-display {
  display: inline-flex;
  gap: 1px;
  font-size: inherit;
  position: relative
}
.star-display .star-empty,
.star-display .star-half,
.star-display .star-full {
  display: inline-block;
  width: 1em;
  height: 1em;
  position: relative
}
.star-display .star-full::before {
  content: '\f005';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #f59e0b
}
.star-display .star-half::before {
  content: '\f5c0';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #f59e0b
}
.star-display .star-empty::before {
  content: '\f005';
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
  color: #cbd5e1
}
.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: .65rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 20px;
  padding: 2px 8px;
  margin-left: 6px;
  vertical-align: middle
}
.badge-verified i {
  font-size: .55rem
}
.badge-google {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: .65rem;
  font-weight: 700;
  color: #4285f4;
  background: rgba(66,133,244,0.1);
  border: 1px solid rgba(66,133,244,0.25);
  border-radius: 20px;
  padding: 2px 8px;
  margin-left: 6px;
  vertical-align: middle
}
.badge-google i {
  font-size: .55rem
}
.comment-source-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px
}
.comment-source-row .source-label {
  font-size: .7rem;
  color: var(--text-muted)
}
/* Half-star input for rating selector */
.stars-input.half-stars i {
  position: relative;
  width: .8em;
  overflow: visible
}
.stars-input.half-stars i.half-left::after {
  content: '\f5c0';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #f59e0b;
  opacity: 0;
  transition: opacity .15s
}
.stars-input.half-stars i.half-left.hover-half::after {
  opacity: 1
}
.comment-item p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0
}
@media (max-width:750px) {
  .comments-marquee-container {
    padding: 16px 0 32px;
    -webkit-mask-image: linear-gradient(to right,
                transparent 0%,
                black 5%,
                black 95%,
                transparent 100%);
    mask-image: linear-gradient(to right,
                transparent 0%,
                black 5%,
                black 95%,
                transparent 100%);
    cursor: grab;
    touch-action: pan-y;
    will-change: scroll-position
  }
  .comments-marquee-container:active {
    cursor: grabbing
  }
  .comment-list {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    gap: 20px 30px;
    width: max-content
  }
  .comment-item {
    width: 82vw;
    min-width: 280px;
    max-width: 380px;
    padding: 20px 18px;
    transition: transform .25s cubic-bezier(.22, .68, 0, 1.2),box-shadow .25s,border-left-color .25s;
    will-change: transform
  }
  .comment-item:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06)
  }
  .comment-item.lifted {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .5),0 20px 40px rgba(0, 0, 0, .12);
    z-index: 10
  }
  .comment-item h5 {
    font-size: .88rem
  }
  .comment-item p {
    font-size: .82rem;
    line-height: 1.5
  }
  .comment-item .stars {
    font-size: .75rem
  }
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 30px
}
.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px
}
.avatar {
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, .1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem
}
.testimonial-card h5 {
  color: var(--text-main);
  margin-bottom: 5px;
  font-family: var(--font-main);
  font-weight: 800
}
.testimonial-card .stars {
  color: var(--gold);
  font-size: .8rem
}
.testimonial-card p {
  font-style: italic;
  margin: 0;
  color: var(--text-muted)
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}
.contact-details i {
  width: 40px;
  height: 40px;
  background: rgba(59, 130, 246, .1);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px
}
.contact-left .map-container {
  margin-top: 10px;
  width: 100%
}
.contact-right {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%
}
.map-container h4 {
  font-size: 1rem;
  color: var(--text-main);
  font-family: var(--font-main);
  font-weight: 700
}
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .08)
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main)
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: var(--text-main);
  transition: var(--transition);
  font-family: var(--font-main)
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .2)
}
.contact-section {
  padding: var(--section-padding)
}
.light-footer {
  background: #0f172a;
  padding: 60px 0 20px;
  border-top: 1px solid #1e293b;
  color: #cbd5e1
}
.light-footer .brand-logo {
  filter: brightness(0) invert(1)
}
.light-footer p {
  color: #94a3b8
}
.light-footer h4 {
  color: #f8f9fc
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}
.footer-links li a {
  display: inline-block;
  color: var(--text-muted);
  font-size: .95rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color .2s,border-color .2s
}
.footer-links li a:hover {
  color: var(--text-main);
  border-bottom-color: var(--text-main)
}
.social-icons {
  display: flex;
  gap: 25px
}
.social-icons a {
  width: 60px;
  height: 60px;
  font-size: 1.6rem;
  background: #1e293b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid #334155
}
.social-icons a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  border-color: var(--primary)
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #1e293b;
  font-size: .85rem;
  color: #64748b
}
@media screen and (max-width:992px) {
  
  .hero-content h1 {
    font-size: 2.8rem
  }
  .pack-pro {
    transform: scale(1)
  }
  
  .tabs-buttons {
    flex-direction: column;
    padding: 0 20px
  }
}
@media screen and (max-width:750px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 50px;
    flex-direction: column;
    background: #fff;
    width: 100%;
    text-align: center;
    transition: .3s;
    padding: 20px 0;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1)
  }
  .nav-menu.active {
    left: 0
  }
  .nav-menu li {
    width: 100%;
    text-align: center
  }
  .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    font-size: 1.05rem
  }
  .has-dropdown > a {
    justify-content: center
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: 0 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s
  }
  .dropdown-menu.active {
    display: block;
    max-height: 1000px;
    padding-bottom: 10px
  }
  .has-dropdown.open > a .dropdown-arrow {
    transform: rotate(180deg)
  }
  .dropdown-menu a {
  padding: 6px 20px;
    font-size: .95rem;
    color: var(--text-muted)
  }
  .dropdown-menu a:hover {
    padding-left: 20px;
    background: rgba(0,0,0,.02)
  }
  .nav-actions {
    display: none
  }
  .menu-toggle {
    display: block
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0
  }
  .menu-toggle.active .bar:first-child {
    transform: translateY(8px) rotate(45deg)
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
  }
  .hero-features {
    flex-direction: column;
    gap: 20px
  }
  .hero-content h1 {
    font-size: 2.2rem
  }
  .footer-content {
    grid-template-columns: 1fr
  }
  .build-showcase {
    flex-direction: column;
    gap: 25px;
    padding: 20px
  }
  .build-details,
  .build-visual {
    min-width: unset;
    width: 100%
  }
  .build-images {
    height: auto;
    flex-direction: column;
    gap: 10px
  }
  .pc-float-left,
  .pc-float-right {
    position: relative;
    width: 100%;
    box-shadow: none;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    border-radius: 12px
  }
  .components-grid {
    grid-template-columns: 1fr;
    gap: 8px
  }
  .fps-stats {
    flex-direction: column;
    gap: 10px
  }
  .light-price-tag h3 {
    font-size: 1.3rem
  }
  .ensambles-section {
    padding-top: 70px!important
  }
  .ensambles-section .section-title {
    margin-top: 0!important
  }
  .warranty-badge {
    font-size: .8rem;
    padding: 8px 16px
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .5);
  z-index: 9999;
  transition: .3s,opacity .4s;
  animation: 2.5s infinite wa-pulse;
  opacity: 0;
  pointer-events: none
}
.whatsapp-float.visible {
  opacity: 1;
  pointer-events: all
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .7)
}
@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5)
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0)
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
  }
}
.video-wrapper {
  position: relative
}
.video-block-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: default;
  background: 0 0
}
.hero-content h1 {
  font-size: clamp(2rem, 3.5vw, 2.5rem)
}
.hero-content p {
  font-size: clamp(.95rem, 1.2vw, 1.1rem)
}
.section-title h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem)
}
.pricing-card .card-header h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem)
}
.price h4 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem)
}
@media (max-width:1100px) {
  .b2b-grid,
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))
  }
  
}
@media (max-width:1000px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px
  }
  .hero.hero-compact {
    height: 65vh
  }
  .pricing-card {
    padding: 28px 22px
  }
}
@media (max-width:750px) {
  .b2b-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 20px;
  }
}
@media (max-width:750px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 20px
  }
  .hero {
    height: auto;
    min-height: 100svh;
    padding: 100px 0 0;
    background-color: #0a0f1e;
    margin-bottom: 0
  }
  .hero-content {
    padding: 30px 20px
  }
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 20px
  }
  .hero-content p {
    margin-bottom: 20px
  }
  .hero-features {
    --icon-size: 29px;
    --text-size: 0.72rem;
    --row-spacing: 20px;
    --item-spacing: 20px;
    --item-width: 80px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0;
    width: 100%;
    box-sizing: border-box
  }
  .features-row {
    gap: var(--item-spacing);
    flex-wrap: wrap;
    width: 100%;
    justify-content: center
  }
  .feature-item {
    width: var(--item-width);
    min-width: 0
  }
  .feature-item i, .feature-item .fa-icon {
    font-size: var(--icon-size)
  }
  .feature-item span {
    font-size: var(--text-size);
    white-space: nowrap
  }
  .pack-pro {
    transform: none
  }
  .pack-pro:hover {
    transform: translateY(-6px)
  }
  .tabs-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px
  }
  .social-icons {
    justify-content: center
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .info-note:hover,
  .liquid-metal-note:hover,
  .warranty-note:hover {
    filter: brightness(.95);
    transition: filter .2s
  }
}
.home-builds-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto
}
.home-build-card {
  display: flex;
  background: #f1f7fc;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
  border-radius: 14px;
  overflow: hidden
}
.home-build-card:hover {
  box-shadow: 0 14px 30px rgba(15, 23, 42, .08)
}
.home-build-img {
  flex: 0 0 240px;
  position: relative;
  overflow: hidden
}
.home-build-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}
.home-build-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #0f172a;
  text-align: left
}
.home-build-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 8px
}
.home-build-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 4px;
  color: #0f172a
}
.home-build-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #3b82f6
}
.home-build-desc {
  font-size: .95rem;
  color: #475569;
  margin-bottom: 12px;
  line-height: 1.4
}
.home-build-action .btn {
  background: linear-gradient(135deg, #25d366 0, #128c7e 100%);
  border: none;
  font-weight: 800;
  width: auto;
  display: inline-flex;
  padding: 10px 24px
}
@media (min-width:751px) {
  .home-builds-wrapper {
    gap: 16px
  }
  .home-build-img {
    flex: 0 0 210px
  }
  .home-build-body {
    padding: 16px 24px
  }
  .home-build-title {
    font-size: 1.25rem
  }
  .home-build-price {
    font-size: 1.15rem
  }
  .home-build-desc {
    font-size: .9rem;
    margin-bottom: 0
  }
  .home-build-action {
    display: none
  }
}
.catalog-link-text {
  color: #0f172a;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .2s;
  border-bottom: 2px solid transparent
}
.catalog-link-text:hover {
  color: #3b82f6;
  border-bottom: 2px solid #3b82f6;
  transform: translateX(4px)
}
@media (max-width:750px) {
  .home-build-card {
    flex-direction: row;
    align-items: stretch;
    max-width: 100%;
    margin: 0;
    cursor: pointer
  }
  .home-build-img {
    flex: 0 0 120px;
    height: auto
  }
  .home-build-body {
    padding: 12px 14px;
    text-align: left;
    justify-content: flex-start
  }
  .home-build-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4px
  }
  .home-build-title {
    font-size: 1.1rem;
    margin-bottom: 2px
  }
  .home-build-price {
    font-size: 1rem;
    display: block
  }
  .home-build-desc {
    font-size: .8rem;
    margin-bottom: 0
  }
}
.specialties-container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto
}
.specialty-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column
}
.specialty-card.b2b-card {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid #3b82f6;
  color: #fff
}
.specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(59, 130, 246, .08)
}
.specialty-card.b2b-card:hover {
  box-shadow: 0 12px 24px rgba(59, 130, 246, .2)
}
.specialty-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
  transition: transform .3s
}
.specialty-card-visible h3 {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: #1e293b
}
.specialty-card.b2b-card .specialty-card-visible h3 {
  color: #fff
}
.specialty-card-visible p {
  font-size: .78rem;
  color: #64748b;
  margin: 0
}
.specialty-card.b2b-card .specialty-card-visible p {
  color: rgba(255, 255, 255, .6)
}
.specialty-card-hidden {
  max-height: 0;
  opacity: 0;
  transition: .5s cubic-bezier(.25, 1, .5, 1);
  margin-top: 0
}
.specialty-card-hidden p {
  font-size: .85rem;
  color: #475569;
  margin-bottom: 15px;
  line-height: 1.4
}
.specialty-card.b2b-card .specialty-card-hidden p {
  color: rgba(255, 255, 255, .8)
}
.btn-specialty-info {
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: .85rem;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: .2s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  animation: 3s infinite specialty-pulse
}
@keyframes specialty-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(15, 23, 42, .4)
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(15, 23, 42, 0)
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(15, 23, 42, 0)
  }
}
.btn-specialty-info:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, .2);
  animation: none
}
.specialty-card.b2b-card .btn-specialty-info {
  background: #3b82f6;
  animation: 3s infinite b2b-pulse
}
@keyframes b2b-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, .4)
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0)
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0)
  }
}
.specialty-card.b2b-card .btn-specialty-info:hover {
  background: #60a5fa
}
@media (min-width:751px) {
  .specialty-card.active {
    flex: 3 1 450px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, .1);
    transform: scale(1.02)
  }
  .specialty-card.b2b-card.active {
    box-shadow: 0 16px 36px rgba(59, 130, 246, .25)
  }
  .specialty-card.active .specialty-card-hidden {
    max-height: 250px;
    opacity: 1;
    margin-top: 15px
  }
}
#specialty-overlay.active {
  opacity: 1;
  pointer-events: auto
}
@media (max-width:750px) {
  .specialties-container {
    flex-direction: column
  }
  .specialty-card {
    flex: 1 1 auto;
    transition: transform .4s cubic-bezier(.25, 1, .5, 1),box-shadow .4s,border-color .4s
  }
  .specialty-card.active {
    transform: scale(1.03);
    z-index: 10001;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, .2);
    border: 1px solid #93c5fd
  }
  .specialty-card.b2b-card.active {
    border-color: #60a5fa;
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, .3)
  }
  .specialty-card.active .specialty-card-hidden {
    max-height: 450px;
    opacity: 1;
    margin-top: 15px
  }
}
.hero-badges-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .3px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3);
  animation: .6s both badgeFadeIn
}
.hero-badge--express {
  background: rgba(245, 158, 11, .18);
  color: #fcd34d;
  border-color: rgba(245, 158, 11, .4)
}
.hero-badge--english {
  background: rgba(34, 197, 94, .18);
  color: #86efac;
  border-color: rgba(34, 197, 94, .4)
}
@keyframes badgeFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
.trust-badges-section {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 1.2rem 0
}
.trust-badges-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  align-items: stretch
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  flex: 1;
  min-width: 180px;
  max-width: 260px;
  border-right: 1px solid #e2e8f0;
  transition: background .2s
}
.trust-badge-item:last-child {
  border-right: none
}
.trust-badge-item:hover {
  background: #f8fafc
}
.trust-badge-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1
}
.trust-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px
}
.trust-badge-text strong {
  font-size: .85rem;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2
}
.trust-badge-text span {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500
}
@media (max-width:750px) {
  .trust-badges-grid {
    gap: 0
  }
  .trust-badge-item {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    min-width: 45%;
    max-width: 50%;
    padding: 12px 16px
  }
  .trust-badge-item:last-child {
    border-bottom: none
  }
}
.climate-banner-section {
  background: linear-gradient(135deg, #0f172a 0, #1e3a5f 50%, #0f172a 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden
}
.climate-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(56, 189, 248, .08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none
}
.climate-banner-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1
}
.climate-banner-icon-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px
}
.climate-big-icon {
  font-size: 2.8rem;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(255,255,255,.2));
  animation: 3s ease-in-out infinite alternate floatIcon
}
.climate-big-icon:nth-child(2) {
  animation-delay: .8s
}
@keyframes floatIcon {
  from {
    transform: translateY(0)
  }
  to {
    transform: translateY(-6px)
  }
}
.climate-banner-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: .6rem
}
.climate-banner-subtitle {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 620px
}
.climate-banner-subtitle strong {
  color: #7dd3fc
}
.climate-banner-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem
}
.climate-point {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500
}
.climate-point i {
  font-size: 1rem;
  flex-shrink: 0
}
.climate-cta-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 4px 18px rgba(34, 197, 94, .4)
}
.climate-cta-btn:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, .5)
}
.climate-stats-stack {
  display: flex;
  flex-direction: row;
  gap: 12px
}
.climate-stat-card {
  background: linear-gradient(135deg, #1e3a5f, #1d4ed8);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  min-width: 160px
}
.climate-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #7dd3fc;
  line-height: 1;
  margin-bottom: 4px
}
.climate-stat-label {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  line-height: 1.3
}
@media (max-width:900px) {
  .climate-banner-inner {
    grid-template-columns: 1fr;
    text-align: center
  }
  .climate-banner-icon-area {
    flex-direction: row;
    justify-content: center;
    margin-bottom: .5rem
  }
  .climate-banner-points {
    align-items: flex-start;
    display: inline-flex;
    text-align: left
  }
  .climate-banner-subtitle {
    max-width: 100%
  }
  .climate-banner-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
  }
  .climate-stats-stack {
    flex-direction: row
  }
  .climate-stat-card {
    flex: 1;
    min-width: 0
  }
}
.express-banner-section {
  background: #f8fafc;
  padding: 2.5rem 0;
  border-top: 1px solid #e2e8f0
}
.express-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem
}
.express-banner-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
  transition: transform .3s,box-shadow .3s;
  border-top: 3px solid var(--primary)
}
.express-banner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(59,130,246,.12)
}
.express-card--english {
  border-top-color: #22c55e
}
.express-card--english:hover {
  box-shadow: 0 12px 32px rgba(34,197,94,.12)
}
.express-card-icon {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(59,130,246,.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1
}
.express-card--english .express-card-icon {
  background: rgba(34,197,94,.1);
  color: #22c55e
}
.express-card-body h3 {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}
.express-tag {
  background: #fef3c7;
  color: #b45309;
  font-size: .7rem;
  padding: 2px 10px;
  border-radius: 30px;
  font-weight: 800;
  font-family: var(--font-main);
  letter-spacing: .3px
}
.express-tag--green {
  background: #dcfce7;
  color: #166534
}
.express-card-body p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem
}
@media (max-width:750px) {
  .express-banner-grid {
    grid-template-columns: 1fr
  }
}
@keyframes premium-pulse-wave {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(15, 23, 42, .4)
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(15, 23, 42, 0)
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(15, 23, 42, 0)
  }
}
.card-cta-btn {
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 20px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-top: 10px;
  animation: 3s ease-in-out infinite premium-pulse-wave
}
.card-cta-btn:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, .2);
  color: #fff;
  animation: none
}
.card-cta-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(15, 23, 42, .15)
}
.card-cta-btn i {
  font-size: .85rem;
  transition: transform .3s
}
.card-cta-btn:hover i.fa-arrow-right {
  transform: translateX(4px)
}
.mac-service-section {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden
}
.light-theme .mac-service-section {
  background: #f8fafc
}
.mac-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center
}
.mac-images-container {
  display: flex;
  gap: 15px;
  position: relative;
  justify-content: center
}
.mac-img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  width: 48%;
  position: relative;
  border: 3px solid #fff
}
.mac-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s
}
.mac-img-wrapper:hover img {
  transform: scale(1.05)
}
.mac-img-1 {
  transform: translateY(20px)
}
.mac-img-2 {
  transform: translateY(-20px)
}
.mac-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, .85);
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px)
}
.mac-features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px
}
.mac-features-list li {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px
}
.mac-feature-icon {
  background: rgba(14, 165, 233, .15);
  color: #0ea5e9;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(14, 165, 233, .2)
}
.mac-feature-text strong {
  display: block;
  color: var(--text-main);
  font-size: 1.15rem;
  margin-bottom: 6px
}
.mac-feature-text p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.5;
  margin: 0
}
@media (max-width:900px) {
  .mac-service-grid {
    grid-template-columns: 1fr;
    gap: 30px
  }
  .mac-images-container {
    margin-top: 30px
  }
  .mac-img-1,
  .mac-img-2 {
    transform: translateY(0)
  }
}
.b2b-sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: .8rem
}
.b2b-sector-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59,130,246,.08);
  color: var(--primary);
  border: 1px solid rgba(59,130,246,.25);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 700;
  transition: background .2s,border-color .2s
}
.b2b-sector-tag:hover {
  background: rgba(59,130,246,.15);
  border-color: var(--primary)
}
.faq-section {
  background: #fff
}
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px
}
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: border-color .25s,box-shadow .25s
}
.faq-item:hover {
  border-color: rgba(59,130,246,.35)
}
.faq-item--open {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(59,130,246,.1)
}
.faq-item--english {
  border-left: 3px solid #22c55e
}
.faq-item--english.faq-item--open {
  border-color: #22c55e;
  box-shadow: 0 4px 20px rgba(34,197,94,.1)
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: 0 0;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-main);
  font-size: .97rem;
  font-weight: 700;
  color: var(--text-main);
  transition: background .2s
}
.faq-question > span {
  display: flex;
  align-items: flex-start;
  flex: 1;
  text-align: left;
  line-height: 1.4
}
.faq-question:hover {
  background: #f8fafc
}
.faq-item--open .faq-question {
  background: rgba(59,130,246,.04);
  color: var(--primary)
}
.faq-q-icon {
  color: var(--primary);
  margin-right: 12px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 3px
}
.faq-item--english .faq-q-icon {
  color: #22c55e
}
.faq-chevron {
  font-size: .8rem;
  color: var(--text-muted);
  transition: transform .3s,color .2s;
  flex-shrink: 0
}
.faq-item--open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary)
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s
}
.faq-answer p,
.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0
}
.faq-answer strong {
  color: var(--text-main);
  font-weight: 600
}
@media (max-width:750px) {
  .faq-question {
    padding: 16px 18px;
    font-size: .9rem
  }
  .faq-answer p,
  .faq-answer-inner {
    padding: 0 18px 16px;
    font-size: .9rem
  }
}
.coverage-area {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.6rem 1.8rem;
  margin-top: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.03);
  width: 100%;
  max-width: 500px;
  transition: transform .3s,box-shadow .3s,border-color .3s
}
.coverage-area:hover {
  box-shadow: 0 12px 32px rgba(59,130,246,.08);
  border-color: #cbd5e1
}
.coverage-title {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700
}
.coverage-title i {
  color: var(--primary)
}
.coverage-subtitle {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.4
}
.coverage-zones {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 8px;
  margin-bottom: 1.5rem
}
.coverage-zone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: .8rem;
  font-weight: 500;
  transition: .25s;
  width: 100%
}
.coverage-zone i {
  color: #22c55e;
  font-size: .75rem;
  transition: transform .2s
}
.coverage-zone:hover {
  background: #fff;
  border-color: #93c5fd;
  color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(59,130,246,.06)
}
.coverage-zone:hover i {
  transform: scale(1.15)
}
.coverage-zone--primary {
  background: #f0f9ff;
  border-color: #bae6fd;
  color: #0369a1;
  font-weight: 600
}
.coverage-zone--ask {
  background: #fff7ed;
  border-color: #ffedd5;
  color: #c2410c
}
.coverage-zone--ask i {
  color: #f97316
}
.coverage-zone--ask:hover {
  border-color: #fdba74;
  color: #9a3412;
  background: #fff;
  box-shadow: 0 4px 10px rgba(249,115,22,.06)
}
.coverage-cta-btn {
  width: 100%;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: .9rem;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(59,130,246,.3);
  transition: .3s
}
.coverage-cta-btn i {
  margin-right: 8px
}
.coverage-cta-btn:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59,130,246,.4);
  color: #fff
}
@media (max-width:750px) {
  .coverage-area {
    padding: 1.2rem
  }
  .coverage-zones {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px
  }
}
.metal-liquido-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center
}
.brand-logo {
  height: 48px
}
#navbar-logo.brand-logo {
  height: 60px
}
.logo {
  margin-left: 20px!important
}
@media (max-width:750px) {
  .metal-liquido-grid {
    display: flex!important;
    flex-direction: column!important;
    align-items: center;
    text-align: center;
    gap: 16px!important
  }
  .metal-liquido-grid > div:last-child {
    display: contents
  }
  .metal-liquido-grid > div:last-child > span {
    order: 1;
    margin-bottom: 0!important
  }
  .metal-liquido-grid > div:last-child > h2 {
    order: 2;
    margin-bottom: 5px!important
  }
  .metal-liquido-grid > div:first-child {
    order: 3;
    width: 100%;
    margin: 15px 0
  }
  .metal-liquido-grid > div:last-child > p {
    order: 4
  }
  .metal-liquido-grid > div:last-child > ul {
    order: 5;
    text-align: left;
    margin: 0 auto 20px!important;
    max-width: 90%
  }
  .metal-liquido-grid > div:last-child > button {
    order: 6
  }
  .metal-liquido-grid img {
    max-height: 240px!important;
    width: 100%;
    margin: 0 auto
  }
  .logo {
    margin-left: 0!important
  }
}
@keyframes card-pulse-scatter {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, .9)
  }
  50% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0)
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0)
  }
}
@keyframes card-breathe {
  0%,
  100% {
    transform: scale(1)
  }
  50% {
    transform: scale(1.018)
  }
}
#btn-diagnostico-clima,
#btn-express-24h,
#btn-metal-liquido,
.home-build-card {
  transition: transform .2s cubic-bezier(.4, 0, .2, 1),box-shadow .2s;
  cursor: pointer;
  animation: 3s ease-in-out infinite card-pulse-scatter
}
.specialty-card {
  transition: transform .3s cubic-bezier(.4, 0, .2, 1),box-shadow .3s;
  cursor: pointer;
  animation: 3s ease-in-out infinite card-pulse-scatter,4s ease-in-out infinite card-breathe
}
#specialtiesContainer .specialty-card:first-child {
  animation-delay: 0ms,0ms!important
}
#specialtiesContainer .specialty-card:nth-child(2) {
  animation-delay: .5s,.4s!important
}
#specialtiesContainer .specialty-card:nth-child(3) {
  animation-delay: 1s,.8s!important
}
#specialtiesContainer .specialty-card:nth-child(4) {
  animation-delay: 1.5s,1.2s!important
}
#specialtiesContainer .specialty-card:nth-child(5) {
  animation-delay: 2s,1.6s!important
}
#specialtiesContainer .specialty-card:nth-child(6) {
  animation-delay: 2.5s,2s!important
}
.specialty-card:hover {
  animation: none;
  transform: translateY(-5px) scale(1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .1)!important
}
#btn-diagnostico-clima:hover,
#btn-express-24h:hover,
#btn-metal-liquido:hover,
.home-build-card:hover {
  animation: none;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .1)!important
}
#btn-diagnostico-clima:active,
#btn-express-24h:active,
#btn-metal-liquido:active,
.home-build-card:active,
.specialty-card:active {
  animation: none;
  transform: scale(.96) translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .1)!important
}
.nav-login-btn {
  font-size: .88rem;
  padding: 9px 18px;
  white-space: nowrap
}
.nav-user-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px
}
.nav-admin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(59, 130, 246, .1);
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none
}
.nav-admin-icon:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg)
}
.nav-avatar-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 50px;
  transition: background .2s;
  font-family: var(--font-main);
  color: var(--text-main)
}
.nav-avatar-btn:hover {
  background: rgba(59, 130, 246, .08)
}
.nav-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(59, 130, 246, .3);
  flex-shrink: 0
}
.nav-user-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-main);
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}
.nav-chevron {
  font-size: .65rem;
  color: var(--text-muted);
  transition: transform .25s
}
.nav-avatar-btn[aria-expanded=true] .nav-chevron {
  transform: rotate(180deg)
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
  padding: 8px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s,transform .2s,visibility .2s;
  pointer-events: none
}
.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all
}
.nav-dropdown-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 10px
}
.nav-dropdown-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(59, 130, 246, .2);
  flex-shrink: 0
}
.nav-dropdown-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0
}
.nav-dropdown-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}
.nav-dropdown-email {
  font-size: .75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px
}
.nav-badge-admin {
  display: inline-block;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .5px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 2px;
  text-transform: uppercase
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--border-color);
  margin: 4px 0
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  transition: background .15s,color .15s;
  cursor: pointer
}
.nav-dropdown-item:hover {
  background: rgba(59, 130, 246, .08);
  color: var(--primary)
}
.nav-dropdown-logout {
  color: #ef4444
}
.nav-dropdown-logout:hover {
  background: rgba(239, 68, 68, .08);
  color: #dc2626
}
.nav-auth-mobile-li {
  display: none
}
.nav-mobile-username {
  display: block;
  padding: 8px 0 4px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  margin-top: 4px
}
.nav-admin-mobile,
.nav-login-mobile,
.nav-logout-mobile {
  display: block;
  width: 100%
}
.nav-logout-mobile {
  color: #ef4444!important
}
@media (max-width:750px) {
  .nav-auth-mobile-li {
    display: block;
    padding-top: 4px
  }
  .nav-login-btn,
  .nav-user-wrapper {
    display: none!important
  }
  #controles-index .container {
    padding-left: 20px;
    padding-right: 20px
  }
}
@media (min-width:751px) and (max-width:960px) {
  .nav-login-btn {
    font-size: .78rem;
    padding: 8px 12px
  }
  .nav-user-name {
    display: none
  }
}
@media (min-width:900px) {
  .hero {
    height: auto!important;
    min-height: 65vh!important;
    padding-top: 120px!important;
    padding-bottom: 40px!important
  }
}
.feature-item span {
  font-weight: 600!important;
  letter-spacing: .3px
}
#contacto,
#faq,
#galeria,
.section-padding,
.services {
  position: relative;
  z-index: 1;
  background-color: var(--bg-main)
}
.hero-video-container {
  position: fixed!important;
  top: 0!important;
  left: 0!important;
  width: 100vw!important;
  height: 100vh!important;
  z-index: 0!important
}
.hero {
  overflow: visible!important;
  background: 0 0!important
}
.hero-content {
  position: relative;
  z-index: 2!important
}
footer,
section {
  position: relative;
  z-index: 1
}
section:not([style*=background]):not(.climate-banner-section) {
  background-color: var(--bg-main)
}
#controles-index {
  overflow: hidden
}
.breadcrumb-container {
  padding: 10px 0;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0
}
.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .85rem;
  color: #64748b;
  flex-wrap: wrap
}
.breadcrumb li + li::before {
  content: "›";
  margin-right: 8px;
  color: #94a3b8
}
.breadcrumb a {
  color: var(--primary);
  text-decoration: none
}
.breadcrumb a:hover {
  text-decoration: underline
}
.hover-lift {
  transition: transform .3s,box-shadow .3s
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0,0,0,.1)!important
}
@media (max-width:750px) {
  .page-hero {
    padding: 60px 20px 40px!important
  }
  .page-hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.4rem)!important
  }
}
details[style*="border-radius: 12px"] summary::-webkit-details-marker {
  display: none
}
details[style*="border-radius: 12px"][open] {
  border-color: #3b82f6
}
html {
  scroll-behavior: smooth
}
@media (max-width:600px) {
  #bisagras-index .container>div[style*="1fr 1fr"],
  .bisagras-beneficios,
  .bisagras-galeria {
    grid-template-columns: 1fr!important
  }
}

/* ═══ B2B PREMIUM SECTION ═══ */
.b2b-premium-banner {
    position: relative;
    background: #0a0f1e !important;
    color: #fff;
    padding: 160px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.b2b-premium-content {
    position: relative;
    z-index: 5;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.b2b-premium-title {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 30%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    line-height: 1;
}

.b2b-premium-text {
    font-size: 1.35rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 45px;
    text-wrap: balance;
}

.golden-wave-wrap {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.golden-wave-wrap svg {
    position: relative;
    display: block;
    width: 200%;
    height: 150px;
}

.wave-gold {
    fill: #fbbf24;
    fill-opacity: 0.15;
    animation: waveFlow 20s infinite linear;
}

@keyframes waveFlow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.premium-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
}

/* ── Navbar B2B Button ── */
.b2b-btn-premium {
    background: #0f172a !important;
    color: #fbbf24 !important;
    border: 1px solid #fbbf24 !important;
    padding: 6px 16px !important;
    border-radius: 30px !important;
    margin-left: 10px;
    font-weight: 800 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.b2b-btn-premium:hover {
    background: #fbbf24 !important;
    color: #0f172a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

@media (max-width: 992px) {
    .b2b-btn-premium {
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
        width: fit-content;
    }
}

/* ═══ Sección de Ubicación compartida (components/location-section.js) ═══ */
.pixon-location {
    background: #f8fafc;
}
.pixon-location .ubicacion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 2rem;
}
.pixon-location .map-wrapper iframe {
    display: block;
}
.pixon-location .coverage-area {
    margin-top: 0;
    max-width: 100%;
}
@media (max-width: 768px) {
    .pixon-location .ubicacion-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ══════════════════════════════════════════════════════════════
   PERFORMANCE OPTIMIZATIONS – Pixon PC
   ══════════════════════════════════════════════════════════════ */
section[id]:not(.hero):not(#inicio) {
  content-visibility: auto;
  contain-intrinsic-size: 400px 1px;
}
.reduced-motion .navbar,
.reduced-motion #specialty-overlay,
.reduced-motion [style*="backdrop-filter"] {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.low-end-mode * {
  animation-duration: 0.01ms !important;
  transition-duration: 0.01ms !important;
}
.low-end-mode .navbar {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(255,255,255,0.98) !important;
}
.low-end-mode #specialty-overlay {
  backdrop-filter: none !important;
}
.low-end-mode [style*="backdrop-filter"] {
  backdrop-filter: none !important;
}
.low-end-mode .animated-counter {
  animation: none !important;
}
.low-end-mode .pulse-whatsapp {
  animation: none !important;
}
.low-end-mode .hover-scale:hover {
  transform: none !important;
}
.low-end-mode .specialty-card:hover {
  transform: none !important;
}
.specialty-card,
.express-banner-card,
.step-card {
  will-change: auto;
}
img[loading="lazy"] {
  aspect-ratio: auto;
}
.low-end-mode #navbar,
.low-end-mode .whatsapp-float {
  transition: none !important;
}
#hero-poster {
  transition: opacity 0.4s ease-in-out;
}

/* ═══ Font Awesome reemplazado por SVG sprite (.fa-icon) ═══ */
.fa-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
  overflow: visible;
  pointer-events: none;
}
.fa-icon.fa-brands {
  vertical-align: -0.15em;
}

/* ═══ COUPON STICKER — Diagnóstico gratis flotante ═══ */
.coupon-sticker {
  position: fixed;
  bottom: 110px;
  right: 20px;
  z-index: 9001;
  background: linear-gradient(145deg, rgba(15,23,42,0.94), rgba(30,41,59,0.94));
  border: 1px solid rgba(245,158,11,0.4);
  border-radius: 16px;
  padding: 16px 20px 14px;
  min-width: 210px;
  max-width: 240px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(24px) scale(0.95);
  transition: opacity 0.5s cubic-bezier(0.22,0.68,0,1.2), transform 0.5s cubic-bezier(0.22,0.68,0,1.2);
  pointer-events: none;
}
.coupon-sticker.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.coupon-close {
  position: absolute;
  top: 5px;
  right: 7px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.25);
  font-size: 1rem;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  transition: color 0.2s;
}
.coupon-close:hover {
  color: rgba(255,255,255,0.6);
}
.coupon-content {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.coupon-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fbbf24;
  text-transform: uppercase;
}
.coupon-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.coupon-old-price {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.coupon-free {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: 1px;
}
.coupon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 14px;
  border: none;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  font-family: var(--font-main);
  cursor: pointer;
  background: linear-gradient(135deg, #b45309, #f59e0b 25%, #fbbf24 50%, #f59e0b 75%, #b45309);
  background-size: 200% 100%;
  color: #1a1200;
  text-shadow: 0 1px 2px rgba(255,255,255,0.25);
  box-shadow: 0 2px 12px rgba(245,158,11,0.35), 0 0 0 1px rgba(245,158,11,0.25) inset;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.coupon-btn:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 20px rgba(245,158,11,0.55), 0 0 0 1px rgba(245,158,11,0.4) inset;
}
.coupon-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 35%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: rotate(25deg);
  animation: coupon-shimmer 3s ease-in-out infinite;
}
@keyframes coupon-shimmer {
  0% { left: -60%; }
  70% { left: 120%; }
  100% { left: 120%; }
}
@media (max-width: 480px) {
  .coupon-sticker { display: none; }
}
/* Estilos inline restaurados desde páginas legacy borradas (cutover Astro 2026-05-09) */


/* ─────────── preguntas-frecuentes ─────────── */
        /* Hero más compacto */
        .faq-hero {
            background: linear-gradient(135deg, #0f172a 0%, #172554 100%);
            padding: 80px 0 40px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .faq-hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
            top: -200px; left: -200px;
            border-radius: 50%;
            pointer-events: none;
        }
        .faq-hero h1 {
            font-size: clamp(1.6rem, 3.5vw, 2.4rem);
            font-weight: 800;
            margin-bottom: 12px;
            background: linear-gradient(to right, #fff, #93c5fd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .faq-hero p {
            color: #cbd5e1;
            font-size: 1rem;
            max-width: 620px;
            margin: 0 auto;
            line-height: 1.65;
        }
        .faq-category-title {
            color: #0f172a;
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            margin-top: 3.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 12px;
        }
        .faq-category-title i {
            color: #2563eb;
            background: #eff6ff;
            padding: 10px;
            border-radius: 12px;
        }
        .faq-page-content {
            padding: 60px 0 80px;
            background: #f8fafc;
        }
        .faq-page-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }
        .epic-cta-box {
            background: #fff;
            border-radius: 24px;
            padding: 50px 20px;
            text-align: center;
            margin-top: 80px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
        }

        /* ═══ BUSCADOR FAQ ═══ */
        .faq-search-bar {
            background: #ffffff;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
            padding: 16px 0;
            position: sticky;
            top: 70px;
            z-index: 200;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            isolation: isolate;
            transition: top 0.35s cubic-bezier(0.4,0,0.2,1);
        }
        body.nav-hidden .faq-search-bar {
            top: 0;
        }
        .faq-search-wrap {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            display: flex;
            align-items: center;
        }
        .faq-search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
            font-size: 1rem;
            pointer-events: none;
            z-index: 2;
            line-height: 1;
        }
        #faq-search-input {
            width: 100%;
            padding: 13px 18px 13px 46px;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            font-size: 0.95rem;
            font-family: inherit;
            color: #0f172a;
            background: #f8fafc;
            outline: none;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
            box-sizing: border-box;
        }
        #faq-search-input:focus {
            border-color: #3b82f6;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(59,130,246,0.1);
        }
        #faq-search-input::placeholder { color: #94a3b8; }
        .faq-no-results {
            text-align: center;
            padding: 48px 20px;
            color: #64748b;
            display: none;
        }
        .faq-no-results .faq-no-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; color: #cbd5e1; }
        .faq-no-results h3 { font-size: 1.15rem; font-weight: 700; color: #1e293b; margin-bottom: 8px; }
        .faq-no-results p { font-size: 0.95rem; margin-bottom: 20px; }
        .btn-faq-wa {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 12px 28px;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .btn-faq-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.35); color: #fff; }
        @media (max-width: 768px) {
            .faq-search-bar { top: 60px; }
            body.nav-hidden .faq-search-bar { top: 0; }
        }


/* ─────────── mantenimiento-mac ─────────── */
        /* Estilos Exclusivos Vista Mantenimiento Premium */
        .mac-hero {
            position: relative;
            padding: 160px 0 100px;
            background: #020617;
            /* Slate 950 */
            color: #fff;
            overflow: hidden;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 30px 30px;
            mask-image: radial-gradient(circle at top, black 20%, transparent 80%);
            -webkit-mask-image: radial-gradient(circle at top, black 20%, transparent 80%);
            pointer-events: none;
            z-index: 1;
        }

        .mac-hero::before {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
            top: -200px;
            left: -200px;
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
            animation: drift 10s infinite alternate ease-in-out;
            z-index: 0;
        }

        .mac-hero::after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            bottom: -200px;
            right: -200px;
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
            animation: drift 12s infinite alternate-reverse ease-in-out;
            z-index: 0;
        }

        @keyframes drift {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(40px, 40px);
            }
        }

        .mac-hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .mac-badge-glass {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 8px 20px;
            border-radius: 40px;
            color: #38bdf8;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 28px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .mac-badge-glass i {
            font-size: 1.1rem;
            color: #f59e0b;
        }

        .mac-hero h1 {
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -1.5px;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #64748b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .mac-hero p {
            font-size: 1.25rem;
            color: #94a3b8;
            max-width: 650px;
            margin: 0 auto 40px;
            line-height: 1.7;
            font-weight: 400;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .btn-glass-primary {
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
            border: 1px solid rgba(14, 165, 233, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: #ffffff;
            padding: 16px 44px;
            border-radius: 50px;
            font-size: 1.15rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 0 25px rgba(14, 165, 233, 0.2), inset 0 0 15px rgba(14, 165, 233, 0.1);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .btn-glass-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s ease;
        }

        .btn-glass-primary:hover::before {
            left: 100%;
        }

        .btn-glass-primary:hover {
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.25) 0%, rgba(59, 130, 246, 0.3) 100%);
            box-shadow: 0 0 40px rgba(14, 165, 233, 0.4), inset 0 0 20px rgba(14, 165, 233, 0.3);
            transform: translateY(-3px) scale(1.02);
            color: #ffffff;
        }

        .btn-glass-primary i {
            font-size: 1.3rem;
            color: #38bdf8;
        }

        .mac-premium-content {
            padding: 80px 0 140px;
            background: linear-gradient(180deg, #00081a 0%, #020617 85%, #040d24 100%);
            position: relative;
        }

        .mac-premium-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 80% 50%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: start;
        }

        @media (max-width: 992px) {
            .showcase-grid {
                grid-template-columns: 1fr;
                gap: 80px;
            }
        }

        .feature-super-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        .feature-point {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

        .feature-point:last-child {
            margin-bottom: 0;
        }

        .feature-icon-lg {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, #0ea5e9, #3b82f6);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
            box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
        }

        .feature-point h3 {
            font-size: 1.3rem;
            color: #f8fafc;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .feature-point p {
            color: #94a3b8;
            line-height: 1.6;
            margin: 0;
        }

        .gallery-epic {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .epic-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
            position: relative;
            transform: translateZ(0);
            /* Hardware accel */
            transition: transform 0.5s ease;
        }

        .epic-img:hover {
            transform: scale(1.02);
        }

        .epic-img img {
            width: 100%;
            display: block;
            object-fit: cover;
        }

        .epic-caption {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(8px);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cta-dark-band {
            background: #0f172a;
            padding: 60px 0;
            text-align: center;
            color: white;
        }

        .cta-dark-band h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            .ubicacion-grid-mac {
                grid-template-columns: 1fr !important;
            }
        }


/* ─────────── ensambles ─────────── */
        /* ═══════════════════════════════════════
           ENSAMBLES PAGE — PREMIUM REDESIGN
        ═══════════════════════════════════════ */

        /* ── Hero ── */
        .builds-hero {
            background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 50%, #091529 100%);
            padding: 118px 20px 70px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .builds-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px);
            background-size: 32px 32px;
            pointer-events: none;
        }

        .builds-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, #f8fafc, transparent);
            pointer-events: none;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(59, 130, 246, 0.15);
            border: 1px solid rgba(59, 130, 246, 0.35);
            color: #93c5fd;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            padding: 5px 16px;
            border-radius: 30px;
            margin-bottom: 20px;
        }

        .builds-hero h1 {
            font-size: clamp(2.2rem, 5vw, 3.6rem);
            color: #fff;
            margin-bottom: 14px;
            position: relative;
            line-height: 1.15;
        }

        .builds-hero .hero-sub {
            color: rgba(255, 255, 255, 0.65);
            font-size: 1.05rem;
            max-width: 560px;
            margin: 0 auto 28px;
            line-height: 1.7;
            font-weight: 400;
        }

        .warranty-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(16, 185, 129, 0.12);
            border: 1px solid rgba(16, 185, 129, 0.4);
            color: #6ee7b7;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 7px 18px;
            border-radius: 30px;
            letter-spacing: 0.4px;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 36px;
            flex-wrap: wrap;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat .stat-n {
            display: block;
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }

        .hero-stat .stat-t {
            display: block;
            font-size: 0.73rem;
            color: rgba(255, 255, 255, 0.45);
            font-weight: 600;
            letter-spacing: 0.6px;
            margin-top: 4px;
        }

        .hero-divider {
            width: 1px;
            height: 40px;
            background: rgba(255, 255, 255, 0.12);
            align-self: center;
        }

        /* ── Section header ── */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #3b82f6;
            margin-bottom: 10px;
        }

        /* ── Grid ── */
        .builds-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 24px;
            margin-top: 2.5rem;
        }

        /* ── Card base ── */
        .build-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .build-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 24px 56px rgba(59, 130, 246, 0.13);
            border-color: rgba(59, 130, 246, 0.25);
        }

        /* Tier stripe lateral */
        .card-tier-stripe {
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            border-radius: 20px 0 0 20px;
        }

        /* Badge */
        .build-badge {
            position: absolute;
            top: 14px;
            right: 14px;
            z-index: 3;
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            padding: 4px 11px;
            border-radius: 20px;
            color: #fff;
            backdrop-filter: blur(4px);
        }

        /* Imagen */
        .build-img-wrap {
            position: relative;
            height: 220px;
            overflow: hidden;
            background: #0f172a;
        }

        .build-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.45s ease;
            opacity: 0.92;
        }

        .build-card:hover .build-img-wrap img {
            transform: scale(1.07);
            opacity: 1;
        }

        .build-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 15, 30, 0.85) 0%, rgba(10, 15, 30, 0.1) 60%, transparent 100%);
        }

        /* Precio sobre imagen */
        .build-price-over {
            position: absolute;
            bottom: 16px;
            left: 20px;
            right: 20px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
        }

        .price-big {
            font-size: 1.9rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }

        .price-cur {
            font-size: 0.82rem;
            opacity: 0.75;
            font-weight: 500;
            color: #fff;
            margin-left: 4px;
        }

        .price-tag {
            display: flex;
            align-items: baseline;
            gap: 2px;
        }

        .price-resolution {
            font-size: 0.7rem;
            font-weight: 700;
            padding: 3px 9px;
            background: rgba(59, 130, 246, 0.85);
            border-radius: 20px;
            color: #fff;
            backdrop-filter: blur(4px);
            letter-spacing: 0.5px;
        }

        /* Cuerpo de la card */
        .build-body {
            padding: 20px 22px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .build-name {
            font-size: 1.15rem;
            font-weight: 800;
            color: #0f172a;
            margin: 0 0 3px;
            letter-spacing: -0.3px;
        }

        .build-sub {
            font-size: 0.8rem;
            color: #64748b;
            margin: 0 0 16px;
            line-height: 1.5;
        }

        /* Separador delgado */
        .card-divider {
            height: 1px;
            background: #f1f5f9;
            margin: 0 0 14px;
        }

        /* Specs */
        .build-specs {
            list-style: none;
            padding: 0;
            margin: 0 0 16px;
        }

        .build-specs li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 7px 0;
            border-bottom: 1px solid #f8fafc;
            font-size: 0.82rem;
        }

        .build-specs li:last-child {
            border-bottom: none;
        }

        .spec-icon {
            width: 26px;
            text-align: center;
            color: #3b82f6;
            flex-shrink: 0;
            font-size: 0.85rem;
        }

        .spec-label {
            color: #94a3b8;
            width: 76px;
            font-size: 0.74rem;
            flex-shrink: 0;
        }

        .spec-val {
            font-weight: 700;
            color: #1e293b;
            font-size: 0.82rem;
        }

        /* SEO Text */
        .build-seo-text {
            font-size: 0.77rem;
            color: #94a3b8;
            line-height: 1.6;
            margin: 0 0 14px;
            font-weight: 400;
        }

        /* FPS Section */
        .fps-header {
            font-size: 0.68rem;
            font-weight: 700;
            color: #94a3b8;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .fps-header::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #f1f5f9;
        }

        .fps-row {
            display: flex;
            gap: 6px;
            margin-bottom: 18px;
        }

        .fps-chip {
            flex: 1;
            text-align: center;
            background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
            border-radius: 10px;
            padding: 8px 4px;
            border: 1px solid #e2e8f0;
            transition: border-color 0.2s ease;
        }

        .build-card:hover .fps-chip {
            border-color: rgba(59, 130, 246, 0.2);
        }

        .fps-chip .fps-game {
            font-size: 0.62rem;
            color: #94a3b8;
            display: block;
            margin-bottom: 3px;
        }

        .fps-chip .fps-num {
            font-size: 1.05rem;
            font-weight: 800;
            color: #1e3a8a;
            display: block;
            line-height: 1;
        }

        .fps-chip .fps-label {
            font-size: 0.58rem;
            color: #cbd5e1;
            display: block;
            margin-top: 2px;
        }

        /* CTA */
        .build-cta {
            width: 100%;
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            color: #fff;
            border: none;
            border-radius: 12px;
            padding: 14px;
            font-size: 0.95rem;
            font-weight: 800;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.25s ease;
            margin-top: auto;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
            font-family: var(--font-main);
            letter-spacing: 0.2px;
        }

        .build-cta:hover {
            background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
            transform: translateY(-2px);
            color: #fff;
        }

        .build-cta i {
            font-size: 0.85rem;
        }

        /* "Próximamente" card */
        .build-card--coming {
            background: #f8fafc;
            border: 2px dashed #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 360px;
            border-radius: 20px;
            flex-direction: column;
            gap: 12px;
            color: #94a3b8;
            transition: border-color 0.3s ease;
        }

        .build-card--coming:hover {
            border-color: #3b82f6;
        }

        .build-card--coming i {
            font-size: 2.2rem;
            color: #cbd5e1;
        }

        .build-card--coming p {
            font-weight: 700;
            font-size: 0.9rem;
            margin: 0;
        }

        /* CTA inferior */
        .builds-footer-cta {
            text-align: center;
            padding: 52px 24px;
            background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
            border-radius: 24px;
            margin-top: 3rem;
            border: 1px solid #dbeafe;
        }

        .builds-footer-cta h3 {
            font-size: 1.6rem;
            color: #0f172a;
            margin-bottom: 10px;
        }

        .builds-footer-cta p {
            color: #64748b;
            max-width: 480px;
            margin: 0 auto 24px;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Responsive */
        @media (max-width: 640px) {
            .builds-grid {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                gap: 20px;
            }
        }


/* ─────────── garantia ─────────── */
        /* -- P�gina legal -- */
        .legal-page {
            background: #f8fafc;
            padding: 100px 0 60px;
        }
        .legal-container {
            max-width: 820px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .legal-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px 48px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
        }
        .legal-card h1 {
            font-size: 1.8rem;
            color: var(--text-main);
            margin-bottom: 0.4rem;
        }
        .legal-last-update {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            padding-bottom: 1.2rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .legal-card h2 {
            font-size: 1.15rem;
            color: var(--text-main);
            margin: 2rem 0 0.6rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .legal-card h2 i { color: var(--primary); font-size: 1rem; }
        .legal-card p, .legal-card li {
            font-size: 0.93rem;
            line-height: 1.8;
            color: #4b5563;
        }
        .legal-card ul { padding-left: 20px; margin-bottom: 1rem; }
        .legal-card li { margin-bottom: 6px; }
        .legal-card a { color: var(--primary); }
        .warranty-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
            font-size: 0.88rem;
        }
        .warranty-table th {
            background: #f0f9ff;
            color: var(--text-main);
            font-weight: 700;
            padding: 10px 14px;
            text-align: left;
            border-bottom: 2px solid #bae6fd;
        }
        .warranty-table td {
            padding: 10px 14px;
            border-bottom: 1px solid #f1f5f9;
            color: #4b5563;
            vertical-align: top;
        }
        .warranty-table tr:last-child td { border-bottom: none; }
        .gar-yes { color: #16a34a; font-weight: 700; }
        .gar-no  { color: #dc2626; font-weight: 700; }
        .legal-highlight {
            background: #f0fdf4;
            border-left: 3px solid #22c55e;
            border-radius: 0 12px 12px 0;
            padding: 14px 18px;
            margin: 1rem 0;
            font-size: 0.88rem;
        }
        .legal-warning {
            background: #fff7ed;
            border-left: 3px solid #f97316;
            border-radius: 0 12px 12px 0;
            padding: 14px 18px;
            margin: 1rem 0;
            font-size: 0.88rem;
        }
        @media (max-width: 600px) {
            .legal-card { padding: 24px 20px; }
            .warranty-table th, .warranty-table td { padding: 8px 8px; }
        }


/* ─────────── reparaciones ─────────── */
        /* ═══ HERO ═══ */
        .win-hero {
            position: relative;
            padding: 100px 0 60px;
            background: #020617;
            color: #fff;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .win-hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
            background-size: 30px 30px;
            mask-image: radial-gradient(circle at top, black 20%, transparent 80%);
            -webkit-mask-image: radial-gradient(circle at top, black 20%, transparent 80%);
            pointer-events: none;
            z-index: 1;
        }

        .win-hero::before {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
            top: -250px;
            left: -150px;
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
            animation: drift 10s infinite alternate ease-in-out;
            z-index: 0;
        }

        .win-hero::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(230, 87, 37, 0.08) 0%, transparent 70%);
            bottom: -150px;
            right: -100px;
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
            animation: drift 14s infinite alternate-reverse ease-in-out;
            z-index: 0;
        }

        @keyframes drift {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(40px, 40px);
            }
        }

        .win-hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 850px;
            margin: 0 auto;
        }

        .win-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            padding: 6px 16px;
            border-radius: 40px;
            color: #60a5fa;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .win-badge i {
            color: #f59e0b;
        }

        .win-hero h1 {
            font-size: clamp(1.6rem, 3.5vw, 2.6rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.5px;
            margin-bottom: 14px;
            background: linear-gradient(135deg, #eaf0fc 0%, #cbd5e1 50%, #64748b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .win-hero p {
            font-size: 0.98rem;
            color: #94a3b8;
            max-width: 640px;
            margin: 0 auto 24px;
            line-height: 1.65;
            font-weight: 400;
        }

        .btn-win-primary {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.2) 100%);
            border: 1px solid rgba(59, 130, 246, 0.4);
            backdrop-filter: blur(12px);
            color: #d9f5fb;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.35s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
            position: relative;
            overflow: hidden;
        }

        .btn-win-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: all 0.5s ease;
        }

        .btn-win-primary:hover::before {
            left: 100%;
        }

        .btn-win-primary:hover {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(37, 99, 235, 0.4) 100%);
            box-shadow: 0 0 35px rgba(59, 130, 246, 0.4);
            transform: translateY(-2px);
            color: #fff;
        }

        .btn-win-ghost {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #e2e8f0;
            padding: 15px 36px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .btn-win-ghost:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        /* ═══ MAIN DARK SECTION ═══ */
        .win-main {
            background: #00081a;
            padding: 80px 0 100px;
            position: relative;
        }

        .win-main::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 80% 40%, rgba(59, 130, 246, 0.04) 0%, transparent 55%);
            pointer-events: none;
        }

        .win-section-label {
            color: #60a5fa;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-size: 0.85rem;
            margin-bottom: 12px;
            display: block;
        }

        .win-section-title {
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            color: #ffffff;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .win-section-sub {
            color: #64748b;
            font-size: 1.05rem;
            line-height: 1.7;
            max-width: 750px;
        }

        /* SERVICE CARDS GRID */
        .service-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 50px;
        }

        @media (max-width: 992px) {
            .service-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .service-cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        .svc-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 20px;
            padding: 30px 28px;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .svc-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--svc-color, #3b82f6), transparent);
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .svc-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.12);
            transform: translateY(-4px);
        }

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

        .svc-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 20px;
        }

        .svc-card h2 {
            color: #f1f5f9;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .svc-card p {
            color: #94a3b8;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .svc-list {
            list-style: none;
            padding: 0;
            margin: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 15px;
        }

        .svc-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.9rem;
            color: #cbd5e1;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .svc-list li i {
            color: var(--svc-color, #3b82f6);
            font-size: 0.85rem;
            margin-top: 4px;
        }

        /* SHOWCASE SPLIT */
        .showcase-split {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 50px;
            align-items: center;
            padding: 70px 0;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
        }

        @media (max-width: 900px) {
            .showcase-split {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        .showcase-info h2 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            color: #0f172a;
            font-weight: 800;
            margin-bottom: 18px;
            line-height: 1.2;
        }

        .showcase-info p {
            color: #475569;
            line-height: 1.7;
            font-size: 1.05rem;
            margin-bottom: 24px;
        }

        /* ═══ CTA FINAL ═══ */
        .cta-final {
            background: #0f172a;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-final::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .cta-final h2 {
            position: relative;
            z-index: 1;
            color: #fff;
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 16px;
        }

        .cta-final p {
            position: relative;
            z-index: 1;
            color: #94a3b8;
            font-size: 1.1rem;
            margin-bottom: 36px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ═══ ESCALA 85% Y COMPACIDAD ═══ */
        .svc-full-section .container {
            max-width: 950px !important;
            gap: 40px !important;
        }

        .svc-content h2 {
            font-size: clamp(1.5rem, 3vw, 2.1rem) !important;
            margin-bottom: 12px !important;
            line-height: 1.2 !important;
        }

        .svc-content p {
            font-size: 0.95rem !important;
            margin-bottom: 14px !important;
            line-height: 1.55 !important;
        }

        .svc-content span {
            font-size: 0.75rem !important;
            margin-bottom: 6px !important;
        }

        .svc-content ul {
            margin-bottom: 20px !important;
            padding-top: 5px !important;
        }

        .svc-content ul li {
            font-size: 0.9rem !important;
            margin-bottom: 6px !important;
            line-height: 1.3 !important;
        }

        .svc-content .btn {
            font-size: 0.95rem !important;
            padding: 12px 26px !important;
        }

        /* ═══ FONDOS PREMIUM OSCUROS ═══ */
        .dark-premium-section h2 {
            color: #ffffff !important;
        }

        .dark-premium-section p {
            color: #94a3b8 !important;
        }

        .dark-premium-section ul li {
            color: #cbd5e1 !important;
        }

        .dark-premium-section .svc-content span {
            color: #a78bfa !important;
        }

        /* ═══ RESPONSIVE MOBILE ═══ */
        @media (max-width: 768px) {
            .win-hero {
                padding: 100px 0 50px;
            }
        }

        @media (max-width: 900px) {
            .svc-full-section .container {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
                /* Espacio reducido entre texto e imagen */
            }

            .svc-full-section .svc-content {
                order: 1 !important;
                padding: 0 !important;
            }

            .svc-full-section .svc-image {
                order: 2 !important;
                padding: 0 !important;
            }

            /* Fix celulares stack: lado a lado (flex-row) en mobile */
            .svc-full-section .svc-image[style*="aspect-ratio:1/1"] {
                position: relative !important;
                aspect-ratio: auto !important;
                height: auto !important;
                min-height: auto;
                display: flex !important;
                flex-direction: row !important;
                gap: 12px !important;
            }

            .svc-full-section .svc-image[style*="aspect-ratio:1/1"] img {
                position: relative !important;
                top: auto !important;
                left: auto !important;
                bottom: auto !important;
                right: auto !important;
                flex: 1 !important;
                width: 50% !important;
                height: 240px !important;
                object-fit: cover !important;
                border: none !important;
                border-radius: 16px !important;
                margin-bottom: 0 !important;
                display: block;
                transform: none !important;
            }

            /* Fix consolas grid collage: imagen principal arriba, xbox y ps5_xbox lado a lado abajo */
            .consolas-collage {
                display: flex !important;
                flex-direction: column !important;
                gap: 12px !important;
                height: auto !important;
            }

            .consolas-collage>img:first-child {
                width: 100% !important;
                height: 200px !important;
                grid-row: auto !important;
                border-radius: 16px !important;
                object-fit: cover !important;
                transform: none !important;
            }

            .consolas-dual-row {
                display: flex !important;
                flex-direction: row !important;
                gap: 12px !important;
                width: 100% !important;
            }

            .consolas-dual-row img {
                flex: 1 !important;
                width: 50% !important;
                height: 220px !important;
                /* Más largas como se solicitó */
                object-fit: cover !important;
                border-radius: 16px !important;
                transform: none !important;
            }

            /* Fix optimizacion offset images */
            .opt-dual-images {
                grid-template-columns: 1fr !important;
                gap: 16px !important;
            }

            .opt-dual-images img {
                transform: none !important;
                aspect-ratio: 16/9 !important;
                width: 100% !important;
                height: auto !important;
            }

            /* Padding general en mobile - Espacios más compactos */
            .svc-full-section {
                padding: 40px 0 !important;
            }

            .cta-final {
                padding: 50px 0 !important;
            }
        }


/* ─────────── privacidad ─────────── */
        /* -- P�gina legal -- */
        .legal-page {
            background: #f8fafc;
            padding: 100px 0 60px;
        }
        .legal-container {
            max-width: 820px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .legal-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px 48px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
        }
        .legal-card h1 {
            font-size: 1.8rem;
            color: var(--text-main);
            margin-bottom: 0.4rem;
        }
        .legal-last-update {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            padding-bottom: 1.2rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .legal-card h2 {
            font-size: 1.15rem;
            color: var(--text-main);
            margin: 2rem 0 0.6rem;
        }
        .legal-card p, .legal-card li {
            font-size: 0.93rem;
            line-height: 1.8;
            color: #4b5563;
        }
        .legal-card ul { padding-left: 20px; margin-bottom: 1rem; }
        .legal-card li { margin-bottom: 6px; }
        .legal-card a { color: var(--primary); }
        .legal-highlight {
            background: #f0f9ff;
            border-left: 3px solid var(--primary);
            border-radius: 0 12px 12px 0;
            padding: 14px 18px;
            margin: 1rem 0;
            font-size: 0.88rem;
        }
        @media (max-width: 600px) {
            .legal-card { padding: 24px 20px; }
        }


/* ─────────── reparacion-controles ─────────── */
        .ctrl-hero {
            background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 40%, #1a2d6b 100%);
            padding: 90px 0 70px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .ctrl-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/ps5_xbox.jpeg') center/cover no-repeat;
            opacity: 0.12;
            z-index: 0;
        }

        .ctrl-hero .container {
            position: relative;
            z-index: 1;
        }

        .ctrl-hero h1 {
            font-size: clamp(2rem, 5vw, 3.4rem);
            margin-bottom: 18px;
            line-height: 1.2;
            font-family: 'Kanit', sans-serif;
            font-weight: 800;
        }

        .ctrl-hero h1 span {
            color: #60a5fa;
        }

        .ctrl-hero p {
            font-size: 1.1rem;
            max-width: 680px;
            margin: 0 auto 28px;
            color: #cbd5e1;
            line-height: 1.7;
        }

        .ctrl-hero .badge-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
        }

        .ctrl-hero .badge {
            background: rgba(96, 165, 250, 0.15);
            border: 1px solid rgba(96, 165, 250, 0.35);
            color: #93c5fd;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .ctrl-hero .cta-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
        }

        .card-services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 24px;
            margin-bottom: 3.5rem;
        }

        .svc-card {
            background: #fff;
            padding: 28px;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .svc-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
        }

        .svc-card .icon {
            color: var(--primary, #2563eb);
            font-size: 2.3rem;
            margin-bottom: 14px;
        }

        .svc-card h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #0f172a;
            font-weight: 700;
        }

        .svc-card p {
            color: #64748b;
            font-size: 0.93rem;
            line-height: 1.65;
            margin: 0;
        }

        .section-badge {
            display: inline-block;
            background: rgba(59, 130, 246, 0.1);
            color: #2563eb;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: 0.04em;
        }

        .img-creative-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 14px;
        }

        .img-creative-grid .img-main {
            grid-row: 1/3;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .img-creative-grid .img-small {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
        }

        .img-creative-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .img-main {
            height: 340px;
        }

        .img-small {
            height: 160px;
        }

        .console-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }

        .console-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .console-card:hover {
            transform: translateY(-4px);
        }

        .console-card-header {
            padding: 22px 22px 14px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .console-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .console-card-body {
            padding: 0 22px 22px;
        }

        .console-card-body ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .console-card-body li {
            padding: 6px 0;
            color: #475569;
            font-size: 0.9rem;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            border-bottom: 1px solid #f1f5f9;
        }

        .console-card-body li:last-child {
            border-bottom: none;
        }

        .related-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 18px;
        }

        .rel-card {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            padding: 26px 20px;
            color: #fff;
            text-decoration: none;
            display: block;
            transition: all 0.3s;
        }

        .rel-card:hover {
            background: rgba(255, 255, 255, 0.13);
            /* transform removed to keep text static */
        }

        .faq-item {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 20px;
            transition: box-shadow 0.3s;
        }

        .faq-item[open] {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
        }

        .faq-item summary {
            font-weight: 700;
            color: #0f172a;
            cursor: pointer;
            font-size: 1rem;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item p {
            color: #475569;
            margin-top: 14px;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .cleaning-layout {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            background: #fff;
            border-radius: 24px;
            padding: 44px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        .cleaning-layout .text-col {
            flex: 1;
            min-width: 280px;
        }

        .cleaning-layout .img-col {
            flex: 1;
            min-width: 280px;
        }

        .check-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 10px;
            color: #475569;
            font-size: 0.95rem;
        }

        .check-list li i {
            color: #3b82f6;
            margin-top: 3px;
            flex-shrink: 0;
        }

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

            .img-creative-grid .img-main {
                grid-row: auto;
                height: 220px;
            }

            .img-small {
                height: 140px;
            }

            .cleaning-layout {
                padding: 24px;
            }
        }

        /* Wave Entrance and Breathing Animations */
        .wave-card {
            opacity: 0;
            transform: translateY(60px) scale(0.96);
            transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.8s cubic-bezier(0.175, 0.885, 0.32,
                    1.275);
        }

        .wave-card.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        @keyframes breathShadow {
            0% {
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(59, 130, 246, 0.1);
            }

            50% {
                box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3), inset 0 0 0 1px rgba(59, 130, 246, 0.5);
            }

            100% {
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(59, 130, 246, 0.1);
            }
        }

        @keyframes breathShadowDark {
            0% {
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
            }

            50% {
                box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3), inset 0 0 0 1px rgba(59, 130, 246, 0.3);
            }

            100% {
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
            }
        }

        .svc-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 24px;
            animation: breathShadow 3s infinite alternate ease-in-out;
            cursor: pointer;
            transition: transform 0.3s ease, opacity 0.8s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(59, 130, 246, 0.1);
        }

        .svc-card .icon {
            font-size: 2rem;
            color: #3b82f6;
            margin-bottom: 14px;
        }

        .svc-card h3 {
            font-size: 1.15rem;
            margin-bottom: 10px;
        }

        .svc-card p {
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
            color: #475569;
        }

        .rel-card {
            background: rgba(255, 255, 255, 0.03);
            animation: breathShadowDark 4s infinite alternate ease-in-out;
            cursor: pointer;
            transition: transform 0.3s ease, opacity 0.8s ease, box-shadow 0.3s ease;
        }

        .console-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            animation: breathShadowDark 4s infinite alternate ease-in-out;
            transition: transform 0.3s ease, opacity 0.8s ease, box-shadow 0.3s ease;
        }

        /* Premium Split Section Styles */
        .svc-full-section .container {
            max-width: 1000px !important;
            gap: 50px !important;
        }

        .svc-content h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            margin-bottom: 18px;
            line-height: 1.15;
            font-weight: 800;
        }

        .svc-content p {
            font-size: 1.05rem;
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .dark-premium-section h2 {
            color: #ffffff;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
        }

        .dark-premium-section p {
            color: #cbd5e1;
        }

        .dark-premium-section ul li {
            color: #cbd5e1;
        }

        .consolas-collage {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 16px;
            height: 340px;
            /* Shorter height as requested */
        }

        @media (max-width: 900px) {
            .svc-full-section .container {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
            }

            .svc-full-section .svc-content {
                order: 1 !important;
                padding: 0 !important;
            }

            .svc-full-section .svc-image {
                order: 2 !important;
            }

            .consolas-collage {
                display: flex !important;
                flex-direction: column !important;
                gap: 12px !important;
                height: auto !important;
            }

            .consolas-collage>img:first-child {
                width: 100% !important;
                height: 200px !important;
                /* Shorter height on mobile */
                grid-row: auto !important;
                border-radius: 16px !important;
                object-fit: cover !important;
            }

            .consolas-dual-row {
                display: flex !important;
                flex-direction: row !important;
                gap: 12px !important;
                width: 100% !important;
            }

            .consolas-dual-row img {
                flex: 1 !important;
                width: 50% !important;
                height: 140px !important;
                /* Shorter height on mobile */
                object-fit: cover !important;
                border-radius: 16px !important;
            }
        }

        /* ═══ MOBILE FIXES ═══ */
        @media (max-width: 600px) {
            /* Service cards grid: 1 columna en móvil */
            .card-services {
                grid-template-columns: 1fr !important;
            }
            
            /* Icono al lado del título en móvil */
            .svc-card {
                display: grid !important;
                grid-template-columns: auto 1fr;
                gap: 0 16px;
                align-items: center;
                padding: 20px !important;
            }
            .svc-card .icon {
                grid-row: 1;
                grid-column: 1;
                margin-bottom: 0 !important;
                font-size: 1.8rem !important;
            }
            .svc-card h3 {
                grid-row: 1;
                grid-column: 2;
                margin-bottom: 0 !important;
                line-height: 1.3;
            }
            .svc-card p {
                grid-row: 2;
                grid-column: 1 / -1;
                margin-top: 12px;
            }

            /* Cleaning layout: stack en móvil */
            .cleaning-layout {
                flex-direction: column !important;
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }
            .cleaning-layout .text-col,
            .cleaning-layout .img-col {
                width: 100% !important;
                padding: 0 !important;
            }
            /* Fix hero padding on very small screens */
            .hero-ctrl { padding: 80px 0 40px !important; }
        }

        /* CSS proporcionado por el usuario para card-servicio */
        .card-servicio {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(0, 200, 255, 0.4);
            border-radius: 16px;
            padding: 26px 20px;
            color: #fff;
            text-decoration: none;
            display: block;
            animation: respiracion 3.5s ease-in-out infinite;
            transition: box-shadow 0.4s ease, border-color 0.4s ease;
            cursor: pointer;
        }

        @keyframes respiracion {

            0%,
            100% {
                box-shadow: 0 0 18px rgba(0, 200, 255, 0.25);
                border-color: rgba(0, 200, 255, 0.4);
            }

            50% {
                box-shadow: 0 0 32px rgba(0, 200, 255, 0.55);
                border-color: rgba(0, 200, 255, 0.85);
            }
        }

        /* El texto NO se mueve nunca */
        .card-servicio *,
        .card-servicio h3,
        .card-servicio p,
        .card-servicio span,
        .card-servicio .card-content {
            animation: none !important;
            transform: none !important;
        }

        /* Hover: solo el contenedor reacciona, el texto queda quieto */
        .card-servicio:hover {
            box-shadow: 0 0 40px rgba(0, 200, 255, 0.8);
            border-color: rgba(0, 200, 255, 1);
        }

        .card-servicio:hover * {
            transform: none !important;
        }

        @media (max-width: 768px) {
            .ubicacion-grid-ctrl {
                grid-template-columns: 1fr !important;
            }
        }


/* ─────────── reparacion-bisagras ─────────── */
        .marca-badge {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 14px 24px;
            font-weight: 700;
            font-size: 0.95rem;
            color: #0f172a;
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 140px;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }

        @media (max-width: 768px) {
            .ubicacion-grid {
                grid-template-columns: 1fr !important;
            }
            .precio-grid {
                grid-template-columns: 1fr !important;
            }
            .h2-responsive {
                font-size: 1.6rem !important;
            }
            .price-responsive {
                font-size: 1.8rem !important;
            }
            .section-padding {
                padding: 40px 0 !important;
            }
            body {
                padding-bottom: 60px; /* Previene que el botón whatsapp tape contenido final */
            }
            .marca-badge {
                flex-grow: 1;
            }
        }
        
        @media (min-width: 769px) {
            .h2-responsive {
                font-size: 2rem;
            }
            .price-responsive {
                font-size: 2.4rem;
            }
        }
        
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }


/* ─────────── instalacion-windows ─────────── */
        /* ═══ HERO ═══ */
        .win-hero {
            position: relative;
            padding: 150px 0 90px;
            background-color: #020617 !important;
            background-image: none !important;
            color: #fff;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .win-hero-bg {
            position: absolute;
            inset: 0;
            background: url('/assets/images/instalacion-windows-cancun.jpeg') center/cover no-repeat;
            opacity: 0.08;
            z-index: 0;
            pointer-events: none;
        }

        .win-hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
            background-size: 30px 30px;
            mask-image: radial-gradient(circle at top, black 20%, transparent 80%);
            -webkit-mask-image: radial-gradient(circle at top, black 20%, transparent 80%);
            pointer-events: none;
            z-index: 1;
        }

        .win-hero::before {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
            top: -250px;
            left: -150px;
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
            animation: drift 10s infinite alternate ease-in-out;
            z-index: 0;
        }

        .win-hero::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(230, 87, 37, 0.08) 0%, transparent 70%);
            bottom: -150px;
            right: -100px;
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
            animation: drift 14s infinite alternate-reverse ease-in-out;
            z-index: 0;
        }

        @keyframes drift {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(40px, 40px);
            }
        }

        .win-hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 780px;
            margin: 0 auto;
        }

        .win-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            padding: 8px 20px;
            border-radius: 40px;
            color: #60a5fa;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 28px;
        }

        .win-badge i {
            color: #f59e0b;
        }

        .win-hero h1 {
            font-size: clamp(2.4rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #64748b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .win-hero p {
            font-size: 1.15rem;
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto 36px;
            line-height: 1.7;
            font-weight: 400;
        }

        .btn-win-primary {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.2) 100%);
            border: 1px solid rgba(59, 130, 246, 0.4);
            backdrop-filter: blur(12px);
            color: #fff;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.35s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
            position: relative;
            overflow: hidden;
        }

        .btn-win-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: all 0.5s ease;
        }

        .btn-win-primary:hover::before {
            left: 100%;
        }

        .btn-win-primary:hover {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(37, 99, 235, 0.4) 100%);
            box-shadow: 0 0 35px rgba(59, 130, 246, 0.4);
            transform: translateY(-2px);
            color: #fff;
        }

        .btn-win-ghost {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #e2e8f0;
            padding: 15px 36px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .btn-win-ghost:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        /* ═══ MAIN DARK SECTION ═══ */
        .win-main {
            background-color: #00081a !important;
            background-image: none !important;
            padding: 80px 0 100px;
            position: relative;
        }

        .win-main::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 80% 40%, rgba(59, 130, 246, 0.04) 0%, transparent 55%);
            pointer-events: none;
        }

        .win-section-label {
            color: #60a5fa;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-size: 0.85rem;
            margin-bottom: 12px;
            display: block;
        }

        .win-section-title {
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            color: #ffffff;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .win-section-sub {
            color: #64748b;
            font-size: 1.05rem;
            line-height: 1.7;
            max-width: 600px;
        }

        /* SERVICE CARDS ROW */
        .service-cards-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        @media (max-width: 900px) {
            .service-cards-row {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        .svc-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 20px;
            padding: 30px 28px;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
        }

        .svc-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--svc-color, #3b82f6), transparent);
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .svc-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.12);
            transform: translateY(-4px);
        }

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

        .svc-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 20px;
        }

        .svc-card h3 {
            color: #f1f5f9;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .svc-card p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* SHOWCASE SPLIT */
        .showcase-split {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 70px;
        }

        @media (max-width: 900px) {
            .showcase-split {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        .showcase-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .si-img {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            transition: transform 0.4s ease;
        }

        .si-img:hover {
            transform: scale(1.02);
        }

        .si-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .si-img.tall {
            grid-row: span 2;
        }

        .si-img.tall img {
            height: 100%;
        }

        .si-img:not(.tall) img {
            height: 160px;
        }

        .si-caption {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: rgba(2, 6, 23, 0.85);
            backdrop-filter: blur(8px);
            color: #e2e8f0;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .showcase-info h2 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            color: #fff;
            font-weight: 800;
            margin-bottom: 18px;
            line-height: 1.2;
        }

        .showcase-info p {
            color: #64748b;
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 24px;
        }

        /* ═══ INFO GRID (Incluye + Beneficios) — DARK THEME ═══ */
        .info-split {
            background-color: #070e20 !important;
            background-image: none !important;
            padding: 70px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
        }

        .info-split::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 60%, rgba(59, 130, 246, 0.04) 0%, transparent 55%);
            pointer-events: none;
        }

        .info-split-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            position: relative;
            z-index: 1;
        }

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

        .info-panel {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.35s ease;
        }

        .info-panel:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.12);
            transform: translateY(-4px);
        }

        .info-panel-header {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 28px;
            padding-bottom: 22px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .info-panel-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.25);
        }

        .info-panel h3 {
            font-size: 1.4rem;
            color: #f1f5f9;
            font-weight: 800;
            margin: 0;
            line-height: 1.2;
        }

        .bullet-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px 28px;
        }

        @media (max-width: 480px) {
            .bullet-list {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        .bullet-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.98rem;
            color: #94a3b8;
            font-weight: 600;
            line-height: 1.5;
        }

        .bullet-list li i {
            color: #3b82f6;
            font-size: 0.95rem;
            flex-shrink: 0;
            margin-top: 5px;
        }

        /* ═══ PROCESO PASO A PASO ═══ */
        .win-process {
            background-color: #020617 !important;
            background-image: none !important;
            padding: 80px 0;
            position: relative;
        }

        .win-process::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 900px) {
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

        .process-step {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 20px;
            transition: all 0.35s ease;
            position: relative;
        }

        .process-step:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(59, 130, 246, 0.3);
            transform: translateY(-4px);
        }

        .process-step-num {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            margin: 0 auto 16px;
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
        }

        .process-step-icon {
            font-size: 1.8rem;
            color: #60a5fa;
            margin-bottom: 14px;
        }

        .process-step h3 {
            color: #f1f5f9;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .process-step p {
            color: #64748b;
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }

        /* ═══ FAQ ═══ */
        .win-faq {
            background-color: #ffffff !important;
            background-image: none !important;
            padding: 80px 0;
            position: relative;
        }

        .win-faq::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .win-faq .win-section-title {
            color: #0f172a !important;
        }

        .win-faq .win-section-label {
            color: #3b82f6 !important;
        }

        .faq-grid {
            max-width: 780px;
            margin: 40px auto 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
            position: relative;
            z-index: 1;
        }

        .faq-item {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 22px 28px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
        }

        .faq-item[open] {
            background: #f8fafc;
            border-color: #3b82f6;
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
        }

        .faq-item summary {
            font-weight: 700;
            color: #0f172a;
            cursor: pointer;
            font-size: 1.05rem;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            line-height: 1.4;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '+';
            font-size: 1.4rem;
            font-weight: 300;
            color: #3b82f6;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-item[open] summary::after {
            content: '−';
        }

        .faq-item p {
            color: #475569;
            margin-top: 14px;
            line-height: 1.7;
            font-size: 0.98rem;
        }

        /* ═══ CTA FINAL ═══ */
        .cta-final {
            background-color: #0f172a !important;
            background-image: none !important;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-final::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .cta-final h2 {
            position: relative;
            z-index: 1;
            color: #fff;
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 12px;
        }

        .cta-final p {
            position: relative;
            z-index: 1;
            color: #94a3b8;
            font-size: 1.1rem;
            margin-bottom: 36px;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-badges {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
            position: relative;
            z-index: 1;
        }

        .cta-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 8px 18px;
        }

        .cta-badge i {
            font-size: 0.9rem;
        }

        .cta-badge span {
            font-size: 0.88rem;
            color: #cbd5e1;
            font-weight: 600;
        }

        /* ═══ BREATHING CARD ANIMATIONS ═══ */
        @keyframes breathShadow {
            0% {
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
            }

            50% {
                box-shadow: 0 12px 30px rgba(59, 130, 246, 0.2), inset 0 0 0 1px rgba(59, 130, 246, 0.15);
            }

            100% {
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
            }
        }

        .svc-card {
            animation: breathShadow 4s infinite alternate ease-in-out;
        }

        /* ═══ WAVE ENTRANCE ANIMATIONS ═══ */
        .wave-el {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .wave-el.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ═══ RESPONSIVE HELPERS ═══ */
        @media (max-width: 768px) {
            .win-hero {
                padding: 130px 0 70px;
            }

            .win-main {
                padding: 60px 0 70px;
            }

            .showcase-split {
                margin-top: 50px;
            }

            .showcase-images {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .si-img:not(.tall) img {
                height: 120px;
            }
        }

        /* ═══ GLOBAL DARK FORCE ═══
           styles/style.css aplica al <body> un fondo claro (var(--bg-main)
           = #f8f9fc) mas un dot pattern via background-image. Como esta
           pagina mezcla secciones con backgrounds propios, el body se
           transparenta en gaps, overscroll y transiciones, dejando ver
           el fondo claro. !important porque style.css usa la misma
           especificidad y cargamos despues, pero queremos garantia
           absoluta sobre cualquier override futuro o variable. */
        html,
        body {
            background-color: #020617 !important;
            background-image: none !important;
        }


/* ─────────── antisulfatacion ─────────── */
        /* ==========================================================================
           VARIABLES Y UTILIDADES PREMIUM
           ========================================================================== */
        :root {
            --emerald-50: #ecfdf5;
            --emerald-100: #d1fae5;
            --emerald-500: #10b981;
            --emerald-600: #059669;
            --emerald-900: #064e3b;
            --gold-light: #fef08a;
            --gold-main: #eab308;
            --gold-dark: #ca8a04;
            --dark-bg: #020617;
            --dark-panel: #0f172a;
        }

        .text-emerald { color: var(--emerald-500); }
        .text-gold { color: var(--gold-main); }
        .bg-emerald-grad { background: linear-gradient(135deg, var(--emerald-900) 0%, var(--dark-bg) 100%); }
        
        .trust-bar {
            display: flex; justify-content: center; gap: 30px; margin-top: 45px;
            border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 25px;
            flex-wrap: wrap; font-size: 0.95rem; color: #94a3b8;
        }
        .trust-item { display: flex; align-items: center; gap: 8px; font-weight: 600; }
        .trust-item i { color: var(--emerald-500); }

        .symmetrical-card {
            height: 100%; display: flex; flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .symmetrical-card:hover {
            transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        }
        .symmetrical-card > ul, .symmetrical-card > p { flex-grow: 1; }

        .flex-centered-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }

        /* Golden Stamp Section */
        .golden-stamp-container {
            background: linear-gradient(135deg, #1e293b 0%, #020617 100%);
            border-top: 4px solid var(--gold-main);
            border-bottom: 4px solid var(--gold-main);
            padding: 50px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .golden-stamp-container::before {
            content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(234,179,8,0.1) 0%, transparent 60%);
            animation: rotateStamp 20s linear infinite; pointer-events: none;
        }
        @keyframes rotateStamp { 100% { transform: rotate(360deg); } }
        
        .golden-badge-img {
            width: 120px; height: 120px; margin: 0 auto 20px;
            background: radial-gradient(circle, var(--gold-light) 0%, var(--gold-dark) 100%);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            box-shadow: 0 0 30px rgba(234,179,8,0.4); border: 4px dashed #fff;
            color: #fff; font-size: 2.5rem;
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-dark) 100%);
            color: #fff !important; border: none; font-weight: 800;
            padding: 16px 36px; border-radius: 30px; font-size: 1.15rem;
            box-shadow: 0 10px 25px rgba(234,179,8,0.3);
            text-transform: uppercase; letter-spacing: 1px;
            transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px;
        }
        .btn-gold:hover { transform: scale(1.05); box-shadow: 0 15px 35px rgba(234,179,8,0.5); }

        /* Timeline Grid */
        @media (min-width: 769px) {
            .timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
            .timeline-grid::before {
                content: ''; position: absolute; top: 60px; left: 80px; right: 80px; height: 3px;
                background: linear-gradient(90deg, var(--emerald-500) 50%, transparent 50%);
                background-size: 20px 3px; z-index: 0; opacity: 0.4;
                animation: march 20s linear infinite;
            }
            .timeline-grid .proceso-card { z-index: 1; }
        }
        @media (max-width: 768px) {
            .timeline-grid { display: flex; flex-direction: column; align-items: center; gap: 20px;}
            .timeline-grid .proceso-card { max-width: 400px; width: 100%; }
        }

        .proceso-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; padding: 26px; text-align: center; position: relative; }
        .proceso-num {
            width: 46px; height: 46px; background: var(--emerald-50); color: var(--emerald-600);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; font-weight: 800; margin: 0 auto 16px; border: 2px solid var(--emerald-100);
            position: relative; z-index: 2;
        }
        
        /* Mobile CTA */
        .mobile-sticky-cta {
            position: fixed; bottom: 0; left: 0; right: 0; background: #fff; padding: 12px 20px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15); display: none; z-index: 1000;
            justify-content: space-between; align-items: center; border-top: 3px solid var(--gold-main);
        }
        @media (max-width: 768px) { .mobile-sticky-cta { display: flex; } body { padding-bottom: 80px; } }

        /* General specific */
        .h2-responsive { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; line-height: 1.2; }


/* ─────────── limpieza-laptop-liquido ─────────── */
        /* Tabla de líquidos */
        .liquido-tabla {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
        }

        .liquido-row {
            display: grid;
            grid-template-columns: 1.4fr 0.8fr 2fr;
            gap: 16px;
            padding: 14px 22px;
            border-bottom: 1px solid #f1f5f9;
            align-items: center;
            font-size: 0.95rem;
        }

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

        .liquido-row.liquido-header {
            background: #f8fafc;
            font-weight: 700;
            color: #0f172a;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            padding: 12px 22px;
        }

        .liquido-row>div:first-child {
            color: #0f172a;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .liquido-row>div:nth-child(3) {
            color: #64748b;
            font-size: 0.9rem;
        }

        .riesgo-pill {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.72rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .r-bajo {
            background: #dcfce7;
            color: #166534;
        }

        .r-medio {
            background: #fef3c7;
            color: #92400e;
        }

        .r-alto {
            background: #fed7aa;
            color: #9a3412;
        }

        .r-critico {
            background: #fecaca;
            color: #991b1b;
        }

        /* Cards de proceso */
        .proceso-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 26px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
            position: relative;
            transition: var(--transition);
        }

        .proceso-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(59, 130, 246, 0.1);
        }

        .proceso-num {
            width: 46px;
            height: 46px;
            background: linear-gradient(135deg, #3b82f6, #6366f1);
            color: #fff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .proceso-card h4 {
            font-size: 1.1rem;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .proceso-card p {
            color: #64748b;
            font-size: 0.92rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Cards de equipos */
        .equipo-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 22px;
            text-align: center;
            transition: var(--transition);
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .equipo-card h4 {
            font-size: 1rem;
            color: #0f172a;
            margin: 12px 0 6px;
        }

        .equipo-card p {
            color: #64748b;
            font-size: 0.85rem;
            line-height: 1.5;
            margin: 0;
        }

        .equipo-card--link:hover {
            border-color: #3b82f6;
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(59, 130, 246, 0.12);
        }

        .link-arrow {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 12px;
            font-size: 0.8rem;
            font-weight: 700;
            color: #3b82f6;
        }

        /* Cards de servicios relacionados */
        .servicio-link-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 24px;
            text-decoration: none;
            color: inherit;
            display: block;
            transition: var(--transition);
        }

        .servicio-link-card:hover {
            border-color: #3b82f6;
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(59, 130, 246, 0.1);
        }

        .servicio-link-card h4 {
            font-size: 1.05rem;
            color: #0f172a;
            margin: 12px 0 8px;
        }

        .servicio-link-card p {
            color: #64748b;
            font-size: 0.9rem;
            line-height: 1.55;
            margin: 0 0 14px;
        }

        /* Garantía items */
        .garantia-item {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 22px;
            text-align: center;
        }

        .garantia-item i {
            font-size: 1.7rem;
            margin-bottom: 12px;
            display: inline-block;
        }

        .garantia-item h4 {
            font-size: 1rem;
            color: #0f172a;
            margin-bottom: 6px;
        }

        .garantia-item p {
            color: #64748b;
            font-size: 0.88rem;
            line-height: 1.55;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .ubicacion-grid {
                grid-template-columns: 1fr !important;
            }

            .precio-grid {
                grid-template-columns: 1fr !important;
            }

            .dosdontos-grid {
                grid-template-columns: 1fr !important;
            }

            .h2-responsive {
                font-size: 1.55rem !important;
            }

            .price-responsive {
                font-size: 1.7rem !important;
            }

            .section-padding {
                padding: 40px 0 !important;
            }

            body {
                padding-bottom: 60px;
            }

            .liquido-row {
                grid-template-columns: 1fr;
                gap: 4px;
                padding: 14px 18px;
            }

            .liquido-row.liquido-header {
                display: none;
            }

            .liquido-row>div:nth-child(2) {
                font-size: 0.85rem;
                margin: 4px 0;
            }

            .liquido-row>div:nth-child(3) {
                font-size: 0.85rem;
            }
        }

        @media (min-width: 769px) {
            .h2-responsive {
                font-size: 2rem;
            }

            .price-responsive {
                font-size: 2.4rem;
            }
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        @media (max-width: 768px) {
            .timeline-grid {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .timeline-grid .proceso-card {
                max-width: 400px;
                width: 100%;
            }
        }
    

        .trust-bar {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 45px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
            flex-wrap: wrap;
            font-size: 0.95rem;
            color: #94a3b8;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }

        .trust-item i {
            color: #facc15;
        }

        .pulse-badge {
            animation: pulse-red 2s infinite;
        }

        @keyframes pulse-red {
            0% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
            }
        }

        .symmetrical-card {
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .symmetrical-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        }

        .symmetrical-card>ul,
        .symmetrical-card>p {
            flex-grow: 1;
        }

        .premium-pricing {
            position: relative;
            transform: scale(1.05);
            z-index: 2;
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25);
        }

        .premium-pricing:hover {
            transform: scale(1.08);
        }

        @media (max-width: 768px) {
            .premium-pricing {
                transform: scale(1);
            }

            .premium-pricing:hover {
                transform: scale(1.02);
            }
        }

        .mobile-sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            padding: 12px 20px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
            display: none;
            z-index: 1000;
            justify-content: space-between;
            align-items: center;
            border-top: 3px solid #ef4444;
        }

        .mobile-sticky-cta-content {
            display: flex;
            flex-direction: column;
        }

        .mobile-sticky-cta-content .urgency-text {
            color: #ef4444;
            font-size: 0.75rem;
            text-transform: uppercase;
            font-weight: 900;
            letter-spacing: 0.5px;
        }

        .mobile-sticky-cta-content p {
            margin: 0;
            font-size: 0.95rem;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.2;
        }

        .mobile-sticky-cta .btn {
            padding: 10px 20px;
            font-size: 0.95rem;
            font-weight: 700;
            border-radius: 30px;
        }

        @media (max-width: 768px) {
            .mobile-sticky-cta {
                display: flex;
            }

            body {
                padding-bottom: 80px;
            }

            .whatsapp-float {
                bottom: 90px;
            }
        }

        @media (min-width: 769px) {
            .timeline-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
                position: relative;
            }

            .timeline-grid::before {
                content: '';
                position: absolute;
                top: 60px;
                left: 100px;
                right: 100px;
                height: 3px;
                background: linear-gradient(90deg, #3b82f6 50%, transparent 50%);
                background-size: 20px 3px;
                z-index: 0;
                opacity: 0.3;
                animation: march 20s linear infinite;
            }

            @keyframes march {
                from {
                    background-position: 0 0;
                }

                to {
                    background-position: 400px 0;
                }
            }

            .timeline-grid .proceso-card {
                z-index: 1;
            }
        }

        /* Efecto glassmorphism para la tabla de líquidos */
        .liquido-tabla {
            border: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
        }

        .liquido-row:hover {
            background: #f8fafc;
            transition: background 0.3s ease;
        }


/* ─────────── catalogo ─────────── */
        .filter-item {
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .filter-btn {
            transition: all 0.3s ease;
        }
        .filter-btn:hover {
            transform: translateY(-2px);
        }

