/* ==========================================================================
   HG.Software — Design System & Custom Stylesheet
   ========================================================================== */

/* ── variables & RESET ─────────────────────────────────────────────────── */
:root {
  --bg-primary: #080c14;
  --bg-card: rgba(15, 22, 40, 0.6);
  --border-color: rgba(255, 255, 255, 0.07);
  
  --indigo-primary: #6366f1;
  --indigo-hover: #4f46e5;
  --indigo-glow: rgba(99, 102, 241, 0.15);
  
  --emerald-primary: #10b981;
  --emerald-hover: #059669;
  --emerald-glow: rgba(16, 185, 129, 0.15);
  
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  --font-family: 'Outfit', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-lg: 20px;
  --border-radius-md: 12px;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-family);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── BACKGROUND GLOWS ──────────────────────────────────────────────────── */
.glow-bg {
  position: fixed;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(130px);
  z-index: -1;
  opacity: 0.8;
}

.glow-indigo {
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, var(--indigo-glow) 0%, transparent 70%);
}

.glow-emerald {
  bottom: -10%;
  right: -10%;
  background: radial-gradient(circle, var(--emerald-glow) 0%, transparent 70%);
}

/* ── NAVBAR ────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(8, 12, 20, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-b: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.navbar-container {
  max-w: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-main);
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo-primary), var(--emerald-primary));
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-main);
}

/* ── BUTTONS ───────────────────────────────────────────────────────────── */
.btn-primary-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--indigo-primary), var(--indigo-hover));
  border: none;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
  transition: var(--transition-smooth);
}

.btn-primary-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.btn-primary {
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--indigo-primary), var(--indigo-hover));
  border: none;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ── HERO SECTION ──────────────────────────────────────────────────────── */
.hero {
  min-h: 90vh;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem 2rem;
  text-align: center;
}

.hero-container {
  max-w: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.badge-new {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--emerald-primary);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.3); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
}

.gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  font-weight: 400;
  max-width: 650px;
  margin-bottom: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── PRODUCTS SECTION ──────────────────────────────────────────────────── */
.products {
  padding: 6rem 2rem;
  max-w: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

/* ── PRODUCT CARD ──────────────────────────────────────────────────────── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 1fr;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-indigo:hover {
  border-color: rgba(99, 102, 241, 0.25);
}

.card-emerald:hover {
  border-color: rgba(16, 185, 129, 0.25);
}

.card-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-bottom: 1px solid var(--border-color);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
  background-color: rgba(4, 7, 12, 0.6);
  padding: 0.5rem;
}

.product-card:hover .card-image {
  transform: scale(1.03);
}

.card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(8, 12, 20, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.card-title {
  font-size: 1.75rem;
  font-weight: 800;
}

.version-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
}

.card-indigo .version-badge {
  color: #818cf8;
  border-color: rgba(99, 102, 241, 0.2);
}

.card-emerald .version-badge {
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.2);
}

.card-description {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.feature-icon {
  width: 18px;
  height: 18px;
  shrink-0: 0;
  margin-top: 0.2rem;
}

.card-indigo .feature-icon { color: var(--indigo-primary); }
.card-emerald .feature-icon { color: var(--emerald-primary); }

.features-list strong {
  color: var(--text-main);
}

/* ── DOWNLOAD BUTTONS ──────────────────────────────────────────────────── */
.download-section {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.download-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.download-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.btn-download {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.btn-win {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
}

.btn-win:hover {
  background: var(--text-main);
  color: var(--text-dark);
  border-color: var(--text-main);
  transform: translateY(-2px);
}

.btn-mac {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
}

.btn-mac:hover {
  background: var(--text-main);
  color: var(--text-dark);
  border-color: var(--text-main);
  transform: translateY(-2px);
}

.btn-icon {
  width: 24px;
  height: 24px;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-subtext {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
}

.btn-maintext {
  font-size: 0.9rem;
  font-weight: 800;
}

/* ── TECH STACK ────────────────────────────────────────────────────────── */
.tech-section {
  padding: 6rem 2rem;
  max-w: 1200px;
  margin: 0 auto;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.tech-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.tech-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.tech-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
}

.text-indigo { color: var(--indigo-primary); }
.text-blue { color: #3b82f6; }
.text-emerald { color: var(--emerald-primary); }
.text-purple { color: #a855f7; }

.tech-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.tech-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── CONTACT SECTION ───────────────────────────────────────────────────── */
.contact-section {
  padding: 6rem 2rem 8rem 2rem;
  max-w: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.info-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo-primary);
}

.info-icon {
  width: 20px;
  height: 20px;
}

.info-card h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.info-card p {
  font-size: 1rem;
  font-weight: 600;
}

.info-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.info-link:hover {
  color: var(--indigo-primary);
}

/* ── CONTACT FORM ──────────────────────────────────────────────────────── */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.form-input {
  width: 100%;
  background: rgba(8, 12, 20, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 0.85rem 1rem;
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--indigo-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

textarea.form-input {
  resize: vertical;
}

.btn-submit {
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--indigo-primary), var(--indigo-hover));
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
  transition: var(--transition-smooth);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

/* ── FOOTER ────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border-color);
  background: rgba(5, 8, 14, 0.9);
  padding: 2.5rem 2rem;
}

.footer-container {
  max-w: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-link:hover {
  color: var(--text-main);
}

/* ── TOAST NOTIFICATIONS ────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 320px;
  width: 100%;
}

.toast {
  background: rgba(15, 22, 40, 0.9);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--text-main);
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius-md);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  transform: translateY(20px);
  opacity: 0;
  animation: slide-in 0.3s forwards, slide-out 0.3s 3.7s forwards;
}

@keyframes slide-in {
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slide-out {
  to { transform: translateY(20px); opacity: 0; }
}

/* ── RESPONSIVE MEDIA QUERIES ──────────────────────────────────────────── */

/* Tablets */
@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .product-card {
    display: flex;
    flex-direction: column;
  }
  
  .card-content {
    flex: 1;
    justify-content: space-between;
  }
  
  .download-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Desktops */
@media (min-width: 1024px) {
  .products-grid {
    gap: 3rem;
  }
  
  .contact-grid {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
  }
}

/* ── MODULE SELECTOR & CAROUSEL (FIXMANAGER) ────────────────────────────── */
.module-selector-container {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.selector-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.module-capsules {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.25rem 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.module-capsules::-webkit-scrollbar {
  height: 4px;
}

.module-capsules::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.capsule {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.capsule:hover {
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.card-emerald .capsule.active {
  background: var(--emerald-primary);
  border-color: var(--emerald-primary);
  color: var(--text-dark);
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.card-indigo .capsule.active {
  background: var(--indigo-primary);
  border-color: var(--indigo-primary);
  color: var(--text-dark);
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.active-module-detail {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 0.85rem 1.25rem;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.active-module-detail strong {
  color: var(--text-main);
}

.detail-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── LIGHTBOX MODAL ────────────────────────────────────────────────────── */
.cursor-pointer {
  cursor: pointer;
}

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 3rem;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(4, 7, 12, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 1000px;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.8);
  animation: zoom 0.3s;
}

@keyframes zoom {
  from {transform: scale(0.95); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #f1f5f9;
  font-size: 2.5rem;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #cbd5e1;
  text-decoration: none;
}

.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #94a3b8;
  padding: 1rem 0;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── CONTADORES Y ESTADÍSTICAS ─────────────────────────────────────────── */
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.stat-pill:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-stat {
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
}

.btn-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: auto;
  transition: var(--transition-smooth);
}

.btn-win .btn-badge {
  background: rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.btn-mac .btn-badge {
  background: rgba(16, 185, 129, 0.25);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.btn-download:hover .btn-badge {
  transform: scale(1.05);
}

