/* Acuciante Design — premium static CSS */
:root {
  --c-primary: #FF4506;
  --c-primary-dark: #cc3704;
  --c-primary-deeper: #b23004;
  --c-black: #0a0a0a;
  --c-ink: #111111;
  --c-text: #333333;
  --c-muted: #666666;
  --c-line: #ebebeb;
  --c-bg: #ffffff;
  --c-bg-alt: #f6f6f6;
  --c-white: #ffffff;
  --font-display: "Alata", sans-serif;
  --font-body: "Noto Sans", sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --header-h: 72px;
  --container: 1120px;
  --grad-primary: linear-gradient(135deg, #ff4506 0%, #cc3704 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.15;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.site-header.is-scrolled .logo img,
.site-header.is-solid .logo img {
  filter: none;
}
body:not(.page-inner) .site-header:not(.is-scrolled) .logo img {
  filter: brightness(0) invert(1);
}
body:not(.page-inner) .site-header:not(.is-scrolled) .site-nav > a:not(.btn) {
  color: rgba(255, 255, 255, 0.92);
}
body:not(.page-inner) .site-header:not(.is-scrolled) .nav-toggle span {
  background: #fff;
}
.header-inner {
  height: var(--header-h);
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img {
  width: 160px;
  height: auto;
  transition: filter 0.2s ease;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-nav > a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-text);
  transition: color 0.2s ease;
}
.site-nav > a:hover,
.site-nav > a.is-active { color: var(--c-primary); }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--c-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn { position: relative; overflow: hidden; }
.btn:hover { transform: translateY(-2px); }
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn:hover::after { left: 140%; }
.btn-primary {
  background: var(--grad-primary);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(255, 69, 6, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ff5a1f 0%, #cc3704 100%);
  box-shadow: 0 12px 30px rgba(255, 69, 6, 0.45);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn-outline:hover { background: var(--c-primary); color: #fff; }
.btn-dark {
  background: var(--c-ink);
  color: #fff;
}
.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  background: linear-gradient(160deg, #050505 0%, #141414 55%, #0a0a0a 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity;
}
.hero::before {
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255, 69, 6, 0.24), transparent 55%);
  animation: heroBlobA 22s ease-in-out infinite;
}
.hero::after {
  background: radial-gradient(ellipse 50% 40% at 20% 80%, rgba(255, 69, 6, 0.14), transparent 50%);
  animation: heroBlobB 28s ease-in-out infinite;
}
@keyframes heroBlobA {
  0%, 100% {
    opacity: 0.85;
    transform: translate3d(0, 0, 0) scale(1);
  }
  40% {
    opacity: 1;
    transform: translate3d(-4%, 3%, 0) scale(1.06);
  }
  70% {
    opacity: 0.75;
    transform: translate3d(3%, -2%, 0) scale(0.96);
  }
}
@keyframes heroBlobB {
  0%, 100% {
    opacity: 0.8;
    transform: translate3d(0, 0, 0) scale(1);
  }
  45% {
    opacity: 1;
    transform: translate3d(5%, -4%, 0) scale(1.08);
  }
  75% {
    opacity: 0.7;
    transform: translate3d(-3%, 3%, 0) scale(0.94);
  }
}
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: var(--c-primary);
  pointer-events: none;
  will-change: transform;
  box-shadow: 0 0 6px rgba(255, 69, 6, 0.5);
}
.particle.glow {
  box-shadow: 0 0 12px rgba(255, 69, 6, 0.8), 0 0 24px rgba(255, 69, 6, 0.4);
}
.particle.mouse-glow {
  box-shadow: 0 0 20px rgba(255, 69, 6, 1), 0 0 40px rgba(255, 69, 6, 0.8), 0 0 60px rgba(255, 69, 6, 0.6);
  transition: box-shadow 0.3s ease-in-out;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
  25% { transform: translateY(-10px) translateX(5px) rotate(90deg); }
  50% { transform: translateY(-5px) translateX(-5px) rotate(180deg); }
  75% { transform: translateY(-15px) translateX(3px) rotate(270deg); }
}
.particle.floating { animation: float 6s ease-in-out infinite; }
.particle.gentle-floating { animation: gentleFloat 8s ease-in-out infinite; }
.hero-particles * {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
@media (max-width: 768px) {
  .particle { box-shadow: 0 0 3px rgba(255, 69, 6, 0.3); }
  .particle.glow { box-shadow: 0 0 6px rgba(255, 69, 6, 0.5); }
  .particle.mouse-glow { box-shadow: 0 0 10px rgba(255, 69, 6, 0.8); }
}
@media (prefers-reduced-motion: reduce) {
  .particle.floating,
  .particle.gentle-floating,
  .hero::before,
  .hero::after,
  .hero-glow,
  .plans-band,
  .reviews-track,
  .marquee-track,
  .pricing-card.is-featured .pricing-head { animation: none !important; }
  .reviews-carousel { overflow-x: auto; }
  .marquee { overflow-x: auto; }
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5.4vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  text-wrap: balance;
  animation: fadeUp 0.8s ease both;
}
.hero .lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.7vw, 1.15rem);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 2rem;
  text-wrap: balance;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero .btn-row { justify-content: center; animation: fadeUp 0.8s ease 0.2s both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 69, 6, 0.28) 0%, transparent 62%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
  will-change: transform, opacity;
  animation: heroGlowDrift 16s ease-in-out infinite;
}
@keyframes heroGlowDrift {
  0%, 100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }
  35% {
    opacity: 1;
    transform: translate(-46%, -54%) scale(1.1);
  }
  65% {
    opacity: 0.72;
    transform: translate(-54%, -46%) scale(0.92);
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  animation: fadeUp 0.8s ease both;
}
.hero-badge-stars { color: #ffb100; letter-spacing: 0.08em; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.75rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 460px;
  margin-inline: auto;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  z-index: 1;
}
.hero-scroll span {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--c-primary);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; }
}

/* Marquee de marcas */
.marquee-section {
  padding: 2.5rem 0 0.5rem;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
}
.marquee-title {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 1.5rem;
}
.marquee {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  padding: 0 0 2rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
  cursor: grab;
  will-change: transform;
  touch-action: pan-y;
}
.marquee-track--reverse {
  animation-direction: reverse;
}
.marquee-track.is-dragging {
  cursor: grabbing;
  user-select: none;
  animation-play-state: paused !important;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-right: 1.25rem;
  flex-shrink: 0;
}
.marquee--mobile { display: none; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.1rem 0.5rem 0.5rem;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.marquee-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 69, 6, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.marquee-fav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--c-line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.marquee-fav img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.marquee-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-ink);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 6rem 0; }
.section-alt { background: var(--c-bg-alt); }
.section-dark {
  background: var(--c-black);
  color: rgba(255, 255, 255, 0.85);
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
.section-head p { color: var(--c-muted); margin: 0; }
.section-dark .section-head p { color: rgba(255, 255, 255, 0.65); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}
.section-head .eyebrow::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}
.text-grad {
  background: linear-gradient(100deg, #ff4506 0%, #ff8a4c 55%, #ff4506 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Reviews - carrusel de dos filas */
.reviews-carousel {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  overflow: hidden;
  margin: 1.5rem 0 2.5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.reviews-track {
  display: flex;
  width: max-content;
  animation: marquee 120s linear infinite;
}
.reviews-track--reverse { animation-direction: reverse; animation-duration: 150s; }
.reviews-group {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
}
.reviews-carousel:hover .reviews-track { animation-play-state: paused; }
.review-card {
  flex: 0 0 320px;
  width: 320px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 69, 6, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #fff;
  background: var(--grad-primary);
  flex-shrink: 0;
}
.review-source {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--c-muted);
}
.review-top > div:first-of-type { min-width: 0; flex: 1; }
.review-stars { color: #ffb100; letter-spacing: 0.05em; font-size: 0.82rem; flex-shrink: 0; }
.review-card p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--c-text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--c-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Solutions */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.solution-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 2.25rem 1.8rem 1.9rem;
  border: 1px solid var(--c-line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.solution-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.solution-card:first-child::before { opacity: 1; }
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.solution-card:hover::before { opacity: 1; }
.solution-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  color: var(--c-primary);
  background: linear-gradient(135deg, rgba(255, 69, 6, 0.12), rgba(255, 69, 6, 0.04));
  border: 1px solid rgba(255, 69, 6, 0.18);
}
.solution-icon .acustock-logo {
  width: auto;
  max-width: 52px;
  height: 32px;
  object-fit: contain;
}
.solution-card h3 { font-size: 1.3rem; }
.solution-card p { color: var(--c-muted); font-size: 0.95rem; margin-bottom: 1.4rem; }

/* Why / features */
.why-grid, .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.why-item, .feature-item {
  padding: 1.6rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--c-line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
  border-color: rgba(255, 69, 6, 0.25);
}
.section-alt .why-item { background: #fff; }
.feature-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.09);
}
.feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 69, 6, 0.4);
  background: rgba(255, 69, 6, 0.06);
}
.feature-item h3, .why-item h3 { font-size: 1.08rem; margin-bottom: 0.4rem; }
.feature-item p, .why-item p { margin: 0; font-size: 0.9rem; color: var(--c-muted); }
.feature-item p { color: rgba(255, 255, 255, 0.62); }
.why-icon, .feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--c-primary);
  margin-bottom: 1rem;
}
.why-icon {
  background: linear-gradient(135deg, rgba(255, 69, 6, 0.12), rgba(255, 69, 6, 0.04));
  border: 1px solid rgba(255, 69, 6, 0.18);
}
.feature-icon {
  background: rgba(255, 69, 6, 0.14);
  border: 1px solid rgba(255, 69, 6, 0.25);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: none;
}
.process-item {
  position: relative;
  padding: 1.5rem 0.5rem 0;
}
.process-item .step {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-item h3 { font-size: 1.25rem; }
.process-item p { color: var(--c-muted); margin: 0; font-size: 0.95rem; }

/* Portfolio grid */
.portfolio-grid, .plugins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card-media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 45%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}
.card-media:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.8);
}
.card-media > img,
.card-media .card-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card-media:hover > img { transform: scale(1.06); }
.card-media .card-body {
  position: relative;
  z-index: 2;
  padding: 1rem 1.1rem 1.2rem;
}
.card-media h3 {
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
}
.card-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}
.card-head h3 { margin: 0; }
.card-fav {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--c-line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.card-fav img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.card-meta {
  font-size: 0.8rem;
  color: var(--c-muted);
}

/* Portfolio: panel de vidrio flotando sobre la imagen */
.portfolio-grid .card-media > img {
  aspect-ratio: 4 / 3;
}
.portfolio-grid .card-body {
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.6rem;
  z-index: 3;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: background 0.28s ease, transform 0.28s ease;
}
.portfolio-grid .card-media:hover .card-body {
  background: rgba(255, 255, 255, 0.62);
}
.portfolio-grid .card-body h3 { font-size: 1rem; }
.portfolio-grid .card-meta { color: #4b4b55; }
.badge-new {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
}
.plugin-price {
  color: var(--c-primary);
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 0.35rem;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-btn {
  border: 1px solid var(--c-line);
  background: #fff;
  color: var(--c-text);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}
.filter-btn.is-active,
.filter-btn:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: rgba(255, 69, 6, 0.06);
}

/* Plans band */
.plans-band {
  position: relative;
  padding: 5rem 0;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(-45deg, #d9370a, #ff4506, #ff7a33, #ff4506, #e63d00);
  background-size: 400% 400%;
  animation: bandGradient 15s ease infinite;
}
@keyframes bandGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.plans-band .container { position: relative; z-index: 1; text-align: center; }
.plans-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.6rem); }
.plans-band p { max-width: 560px; margin: 0 auto 1.5rem; color: rgba(255, 255, 255, 0.92); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0, 0, 0, 0.12); }
.pricing-card.is-featured {
  border-color: transparent;
  box-shadow: 0 26px 64px rgba(255, 69, 6, 0.28);
  transform: translateY(-10px);
}
.pricing-card.is-featured:hover { transform: translateY(-14px); }
.pricing-head {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--c-line);
}
.pricing-card.is-featured .pricing-head {
  color: #fff;
  border-bottom: 0;
  background: linear-gradient(-45deg, #d9370a, #ff4506, #ff7a33, #ff4506, #e63d00);
  background-size: 400% 400%;
  animation: bandGradient 15s ease infinite;
}
.pricing-badge {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.pricing-card.is-featured .pricing-badge { background: rgba(255, 255, 255, 0.22); }
.pricing-head h3 { font-size: 1.25rem; margin: 0 0 0.35rem; }
.pricing-tagline { font-size: 0.85rem; opacity: 0.9; margin: 0 0 0.5rem; }
.pricing-price { font-family: var(--font-display); font-size: 2.2rem; line-height: 1.1; }
.pricing-note { font-size: 0.82rem; color: var(--c-muted); margin: 0.35rem 0 0; }
.pricing-card.is-featured .pricing-note { color: rgba(255, 255, 255, 0.9); }
.pricing-features { padding: 1.25rem 1.5rem 0.5rem; flex: 1; }
.pricing-group-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin: 1.1rem 0 0.6rem;
}
.pricing-features .pricing-group-title:first-child { margin-top: 0; }
.pricing-list { list-style: none; display: grid; gap: 0.55rem; margin: 0; padding: 0; }
.pricing-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--c-text);
}
.pricing-ico {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #16a34a;
  margin-top: 1px;
}
.accent-hot .pricing-ico,
.accent-rocket .pricing-ico { color: var(--c-primary); }
.pricing-cta { display: flex; justify-content: center; margin: 1.25rem 1.5rem 1.5rem; }
.pricing-compare { margin-top: 3rem; }
.pricing-compare-head { text-align: center; margin-bottom: 1.5rem; }
.pricing-compare-head h3 { font-size: 1.4rem; margin: 0 0 0.4rem; }
.pricing-compare-head p { color: var(--c-muted); font-size: 0.92rem; margin: 0; }
.pricing-compare-scroll {
  overflow-x: auto;
  border: 1px solid var(--c-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.9rem;
}
.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--c-line);
}
.compare-table thead th {
  position: sticky;
  top: 0;
  background: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-ink);
  border-bottom: 2px solid var(--c-line);
}
.compare-table thead th.is-featured {
  color: var(--c-primary);
}
.compare-table th[scope="row"] {
  text-align: left;
  font-weight: 500;
  color: var(--c-text);
  width: 40%;
}
.compare-table td.is-featured {
  background: rgba(255, 69, 6, 0.05);
}
.compare-group th {
  text-align: left;
  background: var(--c-bg-alt);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
}
.compare-yes { display: inline-grid; place-items: center; color: #16a34a; }
.compare-no { color: var(--c-muted); opacity: 0.6; }
.compare-txt { font-weight: 600; color: var(--c-ink); font-size: 0.85rem; }
.pricing-includes {
  margin-top: 2.5rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 18px;
  padding: 1.75rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.pricing-includes h3 { font-size: 1.15rem; margin: 0 0 1.1rem; text-align: center; }
.pricing-includes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem 1.5rem;
}
.pricing-includes li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; }
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .pricing-card.is-featured { transform: none; }
  .pricing-card.is-featured:hover { transform: translateY(-6px); }
  .pricing-includes ul { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pricing-includes ul { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--c-line);
  padding: 1.1rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--c-ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--c-primary);
  font-size: 1.3rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--c-muted);
  font-size: 0.95rem;
}

/* Contact CTA */
.contact-cta {
  text-align: center;
  padding: 4rem 1.5rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 69, 6, 0.18), transparent 45%),
    var(--c-bg-alt);
  border: 1px solid var(--c-line);
}
.contact-cta h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); }

/* Detail pages */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 2.5rem;
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-line);
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 0.4rem; }
.page-hero p { color: var(--c-muted); margin: 0; max-width: 560px; }
.detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
  padding: 3rem 0 5rem;
}
.detail-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-bg-alt);
}
.detail-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.detail-side {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  padding: 1.75rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: #fff;
}
.detail-side .price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--c-primary);
  margin: 0.5rem 0 1rem;
}
.detail-side .meta { color: var(--c-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.detail-perks { list-style: none; margin: 0 0 1.25rem; padding: 0; display: grid; gap: 0.5rem; }
.detail-perks li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.88rem; color: var(--c-text); }
.detail-perks .pricing-ico { color: #16a34a; }

/* Plugin detail: descripción larga + galería */
.plugin-detail-section { padding: 4rem 0; }
.plugin-detail { max-width: 820px; }
.plugin-body h2 { font-size: 1.6rem; margin: 0 0 1.25rem; }
.rich-text { color: var(--c-text); font-size: 1rem; line-height: 1.7; }
.rich-text p { margin: 0 0 1rem; }
.rich-text ul, .rich-text ol { margin: 0 0 1.25rem; padding-left: 0; list-style: none; display: grid; gap: 0.6rem; }
.rich-text ul li {
  position: relative;
  padding-left: 1.75rem;
}
.rich-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
}
.rich-text ol { counter-reset: rt; }
.rich-text ol li { position: relative; padding-left: 2rem; counter-increment: rt; }
.rich-text ol li::before {
  content: counter(rt);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(255, 69, 6, 0.12);
  color: var(--c-primary);
  font-size: 0.75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.rich-text strong, .rich-text b { color: var(--c-ink); }
.rich-text a { color: var(--c-primary); text-decoration: underline; }
.plugin-links-title { font-size: 1.1rem; margin: 0 0 0.85rem; }
.plugin-body h2 + .plugin-links-title { margin-top: 2rem; }
.plugin-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0.5rem 0 0; }
.plugin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-ink);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.plugin-link:hover { border-color: var(--c-primary); color: var(--c-primary); transform: translateY(-2px); }
.plugin-body-cta { margin-top: 2rem; }
.plugin-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
/* Landing con capturas: icono chico arriba + galería como visual principal */
.detail-layout.has-screens .detail-media {
  border: 0;
  background: transparent;
  overflow: visible;
}
.detail-icon-sm {
  display: inline-flex;
  padding: 0.6rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--c-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}
.detail-icon-sm img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 10px;
}
.detail-gallery {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.detail-gallery .plugin-shot img {
  aspect-ratio: 4 / 3;
}
.plugin-shot {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-bg-alt);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plugin-shot:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12); }
.plugin-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Footer */
.site-footer {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-brand img {
  width: 150px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer-brand p { font-size: 0.92rem; max-width: 340px; }
.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a:hover { color: var(--c-primary); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0;
  font-size: 0.85rem;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.06); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.center-actions {
  text-align: center;
  margin-top: 2.25rem;
}

.hidden-item { display: none !important; }

/* Responsive */
@media (max-width: 1024px) {
  .why-grid,
  .features-grid,
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid,
  .plugins-grid,
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-side { position: static; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  /* Logo centrado en mobile, con el botón de menú a la derecha */
  .header-inner { position: relative; justify-content: center; }
  .logo { margin: 0 auto; }
  .nav-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0;
    display: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a {
    color: var(--c-ink) !important;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--c-line);
  }
  .site-nav > .btn { margin-top: 0.75rem; border: none; }
  body:not(.page-inner) .site-header:not(.is-scrolled) .logo img { filter: brightness(0) invert(1); }
  .solutions-grid,
  .why-grid,
  .features-grid,
  .process-grid,
  .footer-grid { grid-template-columns: 1fr; }
  /* Portfolio y plugins se mantienen en 2 columnas en mobile. */
  .portfolio-grid,
  .plugins-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .card-media h3 { font-size: 0.95rem; }
  .card-media .card-body { padding: 0.75rem 0.85rem 0.9rem; }
  .review-card { flex-basis: 82vw; width: 82vw; padding: 1rem; }
  .review-card p { font-size: 0.85rem; }
  .review-avatar { width: 34px; height: 34px; font-size: 0.85rem; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 4rem); padding-bottom: 4.5rem; }
  /* En mobile: 6 hileras con scroll horizontal táctil. */
  .marquee--desktop { display: none; }
  .marquee--mobile {
    display: flex;
    gap: 0.7rem;
    padding-bottom: 1.25rem;
  }
  .marquee--mobile .marquee-group {
    gap: 0.7rem;
    padding-right: 0.7rem;
  }
  .marquee--mobile .marquee-item { padding: 0.4rem 0.85rem 0.4rem 0.4rem; }
  .marquee--mobile .marquee-fav { width: 32px; height: 32px; }
  .marquee--mobile .marquee-fav img { width: 20px; height: 20px; }
  .marquee--mobile .marquee-name { font-size: 0.82rem; }
}
