/* =========================================================
   PrestaManager Plus — Styles
   ========================================================= */

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-darker: #1e3a8a;
  --purple: #AA00FF;
  --purple-soft: #a855f7;
  --accent: #a855f7;
  --accent-2: #22c55e;
  --gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 55%, #AA00FF 100%);
  --gradient-soft: linear-gradient(135deg, #f5f0ff 0%, #eaf2ff 100%);
  --ink: #0f172a;
  --ink-soft: #475569;
  --ink-muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 24px 60px rgba(124, 58, 237, 0.22);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --header-h: 72px;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(37, 99, 235, 0.45); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-3px); }

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

.btn--lg { padding: 15px 32px; font-size: 16px; }

/* =========================================================
   Topbar
   ========================================================= */
.topbar {
  background: var(--primary-darker);
  color: #cfe0ff;
  font-size: 13px;
  padding: 8px 0;
}
.topbar__inner { display: flex; justify-content: flex-end; gap: 26px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.topbar__item:hover { color: #fff; }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-size: 19px; font-weight: 900; color: var(--ink); letter-spacing: -0.3px; }
.brand__text strong em { font-style: normal; color: var(--primary); }
.brand__text small { font-size: 11px; color: var(--ink-muted); letter-spacing: 1.2px; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 16px; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
  position: relative;
  padding: 8px 9px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink-soft);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 9px; right: 9px; bottom: 2px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__link:hover, .nav__link.active { color: var(--primary); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }

.nav__cta { padding: 10px 20px; white-space: nowrap; flex: 0 0 auto; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--gradient-soft);
  border: none;
  border-radius: 10px;
  padding: 10px;
}
.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   Section scaffolding
   ========================================================= */
.section { padding: 96px 0; }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.09);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section__tag--light { background: rgba(255, 255, 255, 0.14); color: #bfdbfe; }
.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--ink);
}
.section__title--light { color: #fff; }
.section__desc { margin-top: 16px; font-size: 17px; color: var(--ink-muted); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #7c3aed 82%, #AA00FF 120%);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 140px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  opacity: 0.28;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.12) translate(-1.5%, 1.5%); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(30, 58, 138, 0.92) 22%, rgba(99, 102, 241, 0.55) 58%, rgba(170, 0, 255, 0.42) 100%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.10), transparent 45%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero__title {
  margin: 22px 0 18px;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
}
.hero__title .typewriter {
  background: linear-gradient(120deg, #ffffff 0%, #e9d5ff 70%, #c77dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.typewriter__line {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  height: 1.08em;
}
.type-caret {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  margin-left: 4px;
  background: #e9d5ff;
  border-radius: 2px;
  vertical-align: baseline;
  animation: blink 0.85s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero__subtitle { font-size: 18px; color: rgba(255, 255, 255, 0.9); max-width: 560px; }
.hero__subtitle strong { color: #fff; }
.hero__actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

.hero__trust { display: flex; gap: 22px; margin-top: 40px; flex-wrap: wrap; }
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}
.hero__trust-icon { color: #4ade80; font-size: 16px; }

/* Shine effect on primary CTA */
.btn--shine { position: relative; overflow: hidden; }
.btn--shine::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 40%;
  left: -60%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  animation: shine 3.2s ease-in-out infinite;
}
@keyframes shine {
  0% { left: -60%; }
  55%, 100% { left: 160%; }
}

/* Hero visual — browser mockup */
.hero__visual {
  position: relative;
  min-height: 440px;
  perspective: 1200px;
}
.browser {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 440px;
  transform: translate(-50%, -50%) rotateY(-4deg) rotateX(2deg);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.45);
  overflow: hidden;
  color: var(--ink);
  animation: floatY 6s ease-in-out infinite;
}
.browser__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
}
.browser__dot { width: 11px; height: 11px; border-radius: 50%; }
.browser__dot--red { background: #ef4444; }
.browser__dot--yellow { background: #f59e0b; }
.browser__dot--green { background: #22c55e; }
.browser__url {
  flex: 1;
  margin-left: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 11.5px;
  color: var(--ink-muted);
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.browser__url i { color: #22c55e; font-size: 10px; }

@keyframes floatY {
  0%, 100% { transform: translate(-50%, -50%) rotateY(-4deg) rotateX(2deg); }
  50% { transform: translate(-50%, -55%) rotateY(-4deg) rotateX(2deg); }
}

.browser__body { display: flex; height: 300px; }
.dash__sidebar {
  width: 52px;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
}
.dash__logo {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--gradient);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  margin-bottom: 10px;
}
.dash__nav {
  width: 34px; height: 34px;
  border-radius: 9px;
  color: #64748b;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.dash__nav--active { background: rgba(59, 130, 246, 0.22); color: #60a5fa; }
.dash__nav--spacer { flex: 1; }
.dash__main { flex: 1; background: #f8fafc; padding: 16px 18px; }
.dash__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 14px;
}
.dash__head strong { display: block; font-size: 15px; letter-spacing: -0.3px; }
.dash__head small { font-size: 11px; color: var(--ink-muted); }
.dash__pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 700;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #86efac;
  padding: 4px 9px;
  border-radius: 999px;
}
.dash__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.dash__stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 10px;
}
.dash__stat small { display: block; font-size: 9.5px; color: var(--ink-muted); margin-bottom: 2px; }
.dash__stat strong { font-size: 14px; letter-spacing: -0.4px; }
.dash__up { font-size: 9.5px; font-weight: 700; color: #16a34a; display: inline-flex; align-items: center; gap: 3px; }
.dash__up i { font-size: 8px; }
.dash__muted { font-size: 9.5px; color: var(--ink-muted); }
.dash__chart {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  height: 92px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.dash__bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  border-radius: 4px 4px 2px 2px;
  transform-origin: bottom;
  animation: growBar 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes growBar { from { transform: scaleY(0); } to { transform: scaleY(1); } }

.float-chip {
  position: absolute;
  background: #fff;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.28);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  z-index: 2;
}
.float-chip i { color: var(--primary); }
.float-chip--1 { top: 6%; left: -2%; animation: floatChip 5s ease-in-out infinite; }
.float-chip--2 { bottom: 8%; right: -2%; animation: floatChip 6s ease-in-out 1s infinite; }
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 5;
}
.scroll-indicator__mouse {
  display: block;
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  position: relative;
}
.scroll-indicator__mouse span {
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 3px;
  background: #fff;
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* =========================================================
   Marquee
   ========================================================= */
.marquee {
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding: 16px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.marquee__track span:nth-child(odd) { color: #f8fafc; }
.marquee__track span:nth-child(odd) i { font-size: 16px; color: #a78bfa; }
.marquee__track span:nth-child(even) { color: #f59e0b; font-size: 6px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   Preloader
   ========================================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; }
.loader__logo {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 14px;
  object-fit: contain;
  animation: loaderPop 0.8s ease;
}
@keyframes loaderPop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.loader__bar {
  width: 140px; height: 4px;
  background: var(--bg-soft);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
}
.loader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 4px;
  background: var(--gradient);
  animation: loaderSlide 1.1s ease-in-out infinite;
}
@keyframes loaderSlide {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(380%); }
}

/* =========================================================
   Scroll progress bar
   ========================================================= */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--gradient);
  z-index: 200;
  transition: width 0.08s linear;
}

/* =========================================================
   Stats
   ========================================================= */
.stats { background: var(--bg-soft); padding: 56px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat__number {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label { display: block; margin-top: 6px; font-size: 14px; font-weight: 600; color: var(--ink-muted); }

/* =========================================================
   Features
   ========================================================= */
.features { background: var(--bg); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.feature-card__icon {
  width: 58px; height: 58px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px;
  background: rgba(170, 0, 255, 0.10);
  color: var(--purple);
  border-radius: 14px;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-card__icon { transform: scale(1.1) rotate(-4deg); }
.feature-card h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; color: var(--ink-muted); }

/* =========================================================
   Benefits
   ========================================================= */
.benefits { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #7c3aed 100%); color: #fff; }
.benefits__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.benefits__list { margin: 26px 0 34px; }
.benefits__list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15.5px; color: rgba(255, 255, 255, 0.92);
  padding: 9px 0;
}
.benefits__list .check {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-2);
  border-radius: 50%;
  font-size: 13px;
  margin-top: 3px;
}

.benefits__card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.benefits__card-head {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 15px;
  margin-bottom: 22px;
}
.live-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.benefits__row { margin-bottom: 16px; }
.benefits__bar {
  position: relative;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.benefits__bar::before {
  content: "";
  position: absolute; inset: 0;
  width: var(--w);
  background: linear-gradient(90deg, #fde047, #fbbf24);
  border-radius: 10px;
  animation: growBar 1.6s ease-out forwards;
  transform-origin: left;
}
.benefits__bar--alt::before { background: linear-gradient(90deg, #22c55e, #4ade80); }
.benefits__bar--alt2::before { background: linear-gradient(90deg, #38bdf8, #818cf8); }
.benefits__bar span {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  font-size: 12px; font-weight: 700; color: #0f172a; z-index: 1;
}
@keyframes growBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.benefits__cards-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.mini {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.mini strong { display: block; font-size: 17px; color: #fde047; }
.mini span { font-size: 12px; color: rgba(255, 255, 255, 0.75); }

/* =========================================================
   Integrations
   ========================================================= */
.integrations { background: var(--bg-soft); position: relative; }

/* Featured WooCommerce plugin banner */
.plugin {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--gradient);
  border-radius: 20px;
  padding: 34px 36px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.plugin::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.18), transparent 45%),
    radial-gradient(circle at 10% 100%, rgba(255, 255, 255, 0.12), transparent 40%);
}
.plugin__logo {
  flex: 0 0 auto;
  width: 76px; height: 76px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  color: var(--primary);
  font-size: 42px;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.25);
  position: relative;
}
.plugin__btn svg { width: 18px; height: 18px; }
.plugin__body { position: relative; flex: 1 1 auto; min-width: 260px; }
.plugin__tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fde047;
  margin-bottom: 6px;
}
.plugin__body h3 { font-size: clamp(19px, 2.4vw, 24px); font-weight: 800; color: #fff; letter-spacing: -0.4px; margin-bottom: 8px; }
.plugin__body p { font-size: 14.5px; color: rgba(255, 255, 255, 0.9); max-width: 640px; }
.plugin__btn {
  position: relative;
  flex: 0 0 auto;
  white-space: nowrap;
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.25);
}
.plugin__btn:hover { background: #f0f7ff; color: var(--primary-darker); }
.plugin__btn svg { width: 18px; height: 18px; }

.integrations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.integration {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.integration::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.integration > * { position: relative; z-index: 1; }
.integration:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.integration:hover::after { opacity: 1; }
.integration__logo {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 26px;
  border-radius: 14px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
}
.integration:hover .integration__logo { transform: scale(1.1) rotate(-5deg); }
.integration__cat {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.integration h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.integration p { font-size: 13.5px; color: var(--ink-muted); }
.integration .link { font-size: 13.5px; font-weight: 700; color: var(--primary); }
.integration .link:hover { text-decoration: underline; }

.integration__logo--wc    { background: linear-gradient(135deg, #7f54b3, #96588a); }
.integration__logo--ps    { background: linear-gradient(135deg, #fb3c71, #df3e73); }
.integration__logo--tpv   { background: linear-gradient(135deg, #0ea5e9, #6366f1); }
.integration__logo--cash  { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.integration__logo--vf    { background: linear-gradient(135deg, #22c55e, #0d9488); }
.integration__logo--facturae { background: linear-gradient(135deg, #2563eb, #0ea5e9); }
.integration__logo--sepa  { background: linear-gradient(135deg, #7c3aed, #4f46e5); }
.integration__logo--contab{ background: linear-gradient(135deg, #0891b2, #06b6d4); }
.integration__logo--mail  { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.integration__logo--android { background: linear-gradient(135deg, #3ddc84, #16a34a); }
.integration__logo--ai    { background: linear-gradient(135deg, #a855f7, #ec4899); }
.integration__logo--import{ background: linear-gradient(135deg, #64748b, #475569); }

/* =========================================================
   Pricing
   ========================================================= */
.pricing { background: var(--bg); }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.price-card--featured {
  border: 2px solid var(--purple);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #fff 0%, #f7f0ff 100%);
}
.price-card--featured:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.price-card__ribbon {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.8px;
  padding: 7px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  white-space: nowrap;
}
.price-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.price-card__desc { font-size: 14px; color: var(--ink-muted); margin-bottom: 18px; }
.price-card__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; }
.price-card__amount { font-size: 40px; font-weight: 900; letter-spacing: -1px; color: var(--ink); }
.price-card--featured .price-card__amount { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-card__period { font-size: 14px; font-weight: 600; color: var(--ink-muted); }
.price-card__features { margin-bottom: 26px; }
.price-card__features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--ink-soft);
  padding: 6px 0;
}
.price-card__features li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--purple);
  font-size: 14px;
  line-height: 1.6;
}
.price-card .btn { width: 100%; }

/* =========================================================
   Support
   ========================================================= */
.support {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #fff;
  overflow: hidden;
}
.support::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(170, 0, 255, 0.30), transparent 45%);
}
.support__inner { position: relative; max-width: 860px; margin: 0 auto; text-align: center; }
.support__text { margin: 18px auto 26px; font-size: 17px; color: rgba(255, 255, 255, 0.85); max-width: 720px; }
.support__list { text-align: left; max-width: 720px; margin: 0 auto 34px; }
.support__list li {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 12px;
  font-size: 15px; color: rgba(255, 255, 255, 0.9);
}
.support__list li strong { color: #fff; }
.support__list .check {
  font-size: 17px;
  color: #38bdf8;
  flex: 0 0 auto;
  margin-top: 2px;
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(56, 189, 248, 0.14);
  border-radius: 10px;
}
.support__contact { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* =========================================================
   Contact
   ========================================================= */
.contact { background: var(--bg-soft); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__details { margin-top: 26px; }
.contact__details li {
  display: flex; align-items: center; gap: 14px;
  padding: 9px 0;
  font-size: 15.5px; color: var(--ink-soft);
}
.contact__details li i {
  width: 38px; height: 38px;
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(170, 0, 255, 0.10);
  color: var(--purple);
  border-radius: 11px;
  font-size: 15px;
}
.contact__details a:hover { color: var(--primary); }

.contact__form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form__field { margin-bottom: 20px; }
.form__field label {
  display: block;
  font-size: 13.5px; font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.form__field input, .form__field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  resize: vertical;
}
.form__field input:focus, .form__field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.form__error {
  display: none;
  font-size: 12.5px;
  font-weight: 600;
  color: #dc2626;
  margin-top: 6px;
}
.form__field.invalid input, .form__field.invalid textarea { border-color: #dc2626; }
.form__field.invalid .form__error { display: block; }

.form__submit { width: 100%; position: relative; }
.btn__spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form__submit.loading .btn__label { opacity: 0; }
.form__submit.loading .btn__spinner { display: inline-block; position: absolute; }
.form__success {
  display: none;
  margin-top: 16px;
  font-size: 14.5px; font-weight: 600;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.form__success.show { display: block; animation: fadeUp 0.4s ease; }

.form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.form__fail {
  display: none;
  margin-top: 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.form__fail.show { display: block; animation: fadeUp 0.4s ease; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: #0f172a; color: #cbd5e1; padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer .brand__text strong { color: #fff; }
.footer .brand__text small { color: #94a3b8; }
.footer__about { margin-top: 16px; font-size: 14px; color: #94a3b8; max-width: 300px; }
.footer h4 { color: #fff; font-size: 15px; font-weight: 800; margin-bottom: 18px; }
.footer__col li { padding: 6px 0; font-size: 14px; }
.footer__col ul li { display: flex; align-items: center; gap: 8px; }
.footer__col ul li i { font-size: 11px; color: #a78bfa; flex: 0 0 auto; }
.footer__col--contact ul li i { font-size: 14px; width: 20px; text-align: center; }
.footer__col a { transition: color 0.2s; }
.footer__col a:hover { color: #38bdf8; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #94a3b8; }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: #38bdf8; }

/* =========================================================
   Back to top
   ========================================================= */
.backtotop {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 20px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 90;
}
.backtotop.show { opacity: 1; visibility: visible; transform: translateY(0); }
.backtotop:hover { transform: translateY(-4px); }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay] { transition-delay: var(--delay, 0ms); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .integrations__grid { grid-template-columns: repeat(3, 1fr); }
  .plugin { flex-wrap: wrap; }
  .plugin__btn { flex: 1 1 auto; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .hero__inner, .benefits__inner, .contact__inner { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 40px; }
  .hero { padding-bottom: 120px; }
}

@media (max-width: 768px) {
  .topbar__inner { justify-content: center; }
  .nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: min(320px, 85vw);
    height: calc(100vh - var(--header-h));
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    padding: 28px 24px;
    box-shadow: -20px 0 60px rgba(15, 23, 42, 0.2);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-left: 1px solid var(--border);
  }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link { display: block; padding: 12px 10px; font-size: 16px; }
  .nav__cta { text-align: center; margin-top: 12px; }
  .hamburger { display: flex; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .features__grid, .integrations__grid { grid-template-columns: 1fr; }
  .plugin { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .plugin__btn { width: 100%; }
  .benefits__cards-mini { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 88px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .float-chip { display: none; }
}

@media (max-width: 480px) {
  .browser { width: min(320px, 92vw); }
  .browser__body { height: 250px; }
  .float-chip { display: none; }
  .footer__inner { grid-template-columns: 1fr; }
  .contact__form { padding: 24px; }
}

/* =========================================================
   Páginas de contenido (SEO): hero interno, artículos, FAQ
   ========================================================= */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 55%, var(--accent) 120%);
  color: #fff;
  padding: 84px 0 72px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.45) 0%, transparent 70%);
}
.page-hero__inner { position: relative; max-width: 880px; z-index: 1; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
}
.crumbs a { color: rgba(255, 255, 255, 0.9); transition: color 0.2s; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs .crumbs__sep { opacity: 0.6; }

.page-hero__title {
  font-size: clamp(30px, 4.6vw, 46px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.12;
  margin: 14px 0 16px;
}
.page-hero__sub {
  font-size: 17.5px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
}
.page-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.toc {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin-bottom: 40px;
}
.toc h3 { font-size: 15px; font-weight: 800; margin-bottom: 10px; }
.toc ol { padding-left: 20px; }
.toc li { padding: 3px 0; font-size: 14.5px; }
.toc a { color: var(--primary); }
.toc a:hover { text-decoration: underline; }

.prose { font-size: 16px; color: var(--ink-soft); }
.prose h2 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  margin: 48px 0 16px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 30px 0 10px;
}
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose ol li { padding: 4px 0; }
.prose ul { list-style: none; padding-left: 4px; }
.prose ul li {
  position: relative;
  padding: 5px 0 5px 30px;
}
.prose ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--purple);
  font-size: 14px;
}
.prose ul li::marker { color: var(--primary); }
.prose strong { color: var(--ink); }
.prose a { color: var(--primary); text-decoration: underline; }
.prose blockquote {
  border-left: 4px solid var(--primary);
  background: var(--bg-soft);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 22px 0;
  color: var(--ink-soft);
}
.prose .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 22px 0;
  font-size: 15px;
  color: #1e40af;
}
.notice i { font-size: 20px; margin-top: 2px; }

.faq { max-width: 840px; margin: 0 auto; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq__item[open] { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q i { color: var(--primary); transition: transform 0.25s ease; font-size: 14px; }
.faq__item[open] .faq__q i { transform: rotate(180deg); }
.faq__a { padding: 0 22px 18px; font-size: 14.5px; color: var(--ink-soft); }

.section--alt { background: var(--bg-soft); }
.section--dark {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #0ea5e9 100%);
  color: #fff;
}
.section--dark .section__title--light { color: #fff; }

.cta-band {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 60%, var(--accent) 120%);
  color: #fff;
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-band__inner h2 { font-size: clamp(26px, 3.6vw, 36px); font-weight: 900; letter-spacing: -0.8px; margin-bottom: 14px; }
.cta-band__inner p { color: rgba(255, 255, 255, 0.9); font-size: 17px; margin-bottom: 28px; }
.cta-band__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.related-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.related-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.related-card i { color: var(--primary); font-size: 22px; }
.related-card h3 { font-size: 17px; font-weight: 800; }
.related-card p { font-size: 14px; color: var(--ink-muted); flex: 1 1 auto; }
.related-card .related-card__more { color: var(--primary); font-weight: 700; font-size: 14px; }

@media (max-width: 768px) {
  .page-hero { padding: 56px 0 48px; }
  .page-hero__actions .btn { width: 100%; }
  .cta-band__actions .btn { width: 100%; }
  .prose h2 { margin-top: 36px; }
}

/* =========================================================
   Versiones (Windows / Cloud)
   ========================================================= */
.versions { background: var(--bg-soft); }
.versions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.version-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.version-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.version-card--featured {
  border: 2px solid var(--purple);
  background: linear-gradient(180deg, #fff 0%, #f7f0ff 100%);
  box-shadow: var(--shadow-lg);
}
.version-card--featured::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(170, 0, 255, 0.12), transparent 70%);
}
.version-card__icon {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 30px;
  color: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}
.version-card--win .version-card__icon { background: var(--gradient); }
.version-card--cloud .version-card__icon { background: linear-gradient(135deg, #7c3aed, #AA00FF); }
.version-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(170, 0, 255, 0.10);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.version-card h3 { font-size: 22px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 4px; }
.version-card__sub { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.version-card__desc { font-size: 15px; color: var(--ink-muted); margin-bottom: 20px; }
.version-card__features { margin-bottom: 26px; }
.version-card__features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--ink-soft);
  padding: 7px 0;
}
.version-card__features li i { color: var(--purple); margin-top: 3px; font-size: 14px; }
.version-card__price {
  margin-top: auto;
  display: flex; align-items: baseline; gap: 8px;
  background: rgba(170, 0, 255, 0.07);
  border: 1px dashed rgba(170, 0, 255, 0.35);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 22px;
}
.version-card__price strong { font-size: 30px; font-weight: 900; color: var(--purple); letter-spacing: -1px; }
.version-card__price span { font-size: 13.5px; font-weight: 600; color: var(--ink-muted); }
.version-card__price i { font-size: 16px; color: var(--purple); align-self: center; }
.version-card .btn { width: 100%; }

@media (max-width: 1200px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: min(320px, 85vw);
    height: calc(100vh - var(--header-h));
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    padding: 28px 24px;
    box-shadow: -20px 0 60px rgba(15, 23, 42, 0.2);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-left: 1px solid var(--border);
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link { display: block; padding: 12px 10px; font-size: 16px; }
  .nav__cta { text-align: center; margin-top: 12px; }
  .hamburger { display: flex; }
  .versions__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}
