/* ==========================================
   SXZBOOST - Complete Stylesheet
   Optimized for Cloudflare Pages
   ========================================== */

/* CSS Custom Properties */
:root {
  --bg: #0e0f14;
  --bg-card: #151821;
  --bg-hover: #1c1f2b;
  --accent: #00ffcc;
  --accent-dark: #00d4aa;
  --text: #e8ecf1;
  --text-secondary: #a0a8b8;
  --muted: #5a6270;
  --whatsapp: #25d366;
  --error: #ff4757;
  --success: #00ffcc;
  --warning: #ffa502;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-accent: 0 0 30px rgba(0,255,204,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #fff;
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  overflow: hidden;
  background: linear-gradient(160deg, #12141c 0%, #0e0f14 40%, #0a0c12 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.4;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,255,204,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0,170,255,0.03) 0%, transparent 50%);
}

/* Sutil grid pattern para profundidad */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.logo {
  width: 180px;
  height: auto;
  margin: 0 auto 30px;
  filter: drop-shadow(0 0 30px rgba(0,255,204,0.3));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from { filter: drop-shadow(0 0 20px rgba(0,255,204,0.2)); }
  to { filter: drop-shadow(0 0 40px rgba(0,255,204,0.4)); }
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, #7b2fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  background: #1ebd59;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--muted);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,255,204,0.05);
  transform: translateY(-2px);
}

.btn-add {
  padding: 10px 20px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.85rem;
  font-weight: 700;
}

.btn-add:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: var(--shadow-accent);
}

.btn-submit {
  background: linear-gradient(135deg, var(--accent) 0%, #7b2fff 100%);
  color: var(--bg);
  font-weight: 700;
  padding: 16px 36px;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,255,204,0.3);
  filter: brightness(1.1);
}

.btn-checkout {
  background: var(--accent);
  color: var(--bg);
  width: 100%;
  margin-bottom: 10px;
  font-weight: 700;
}

.btn-checkout:hover {
  background: #fff;
}

.btn-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--muted);
  color: var(--text-secondary);
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-clear:hover {
  border-color: var(--error);
  color: var(--error);
}

/* ==========================================
   SECTIONS
   ========================================== */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-header h2 span {
  color: var(--accent);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Section reveal animation */
.section-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==========================================
   SERVICES GRID
   ========================================== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ==========================================
   CARDS
   ========================================== */
.card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,255,204,0.15);
  box-shadow: var(--shadow-accent);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #ff4757, #ff6348);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
}

.badge-online {
  background: linear-gradient(135deg, #2ed573, #1e90ff);
}

.badge-stock {
  background: linear-gradient(135deg, var(--accent), #00b894);
  color: var(--bg);
}

.card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.product-img-wrap {
  background: linear-gradient(135deg, #1a1d2e, #252a3d);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-img-wrap img {
  object-fit: contain;
  max-height: 200px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}

.card-body {
  padding: 24px;
  flex: 1;
}

.card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.card-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.card-body ul {
  list-style: none;
  margin-bottom: 12px;
}

.card-body li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.card-body li svg {
  flex-shrink: 0;
}

.card-note {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 8px;
  font-style: italic;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  background: rgba(0,0,0,0.15);
}

.price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}

/* ==========================================
   HARDWARE GRID
   ========================================== */
.hardware-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ==========================================
   CONTACT FORM
   ========================================== */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,255,204,0.1);
}

.form-group input[readonly] {
  background: rgba(0,255,204,0.05);
  border-color: rgba(0,255,204,0.15);
  color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 4px;
  min-height: 18px;
}

.form-footer {
  margin-top: 10px;
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  background: rgba(0,255,204,0.1);
  color: var(--accent);
  border: 1px solid rgba(0,255,204,0.2);
}

.form-message.error {
  background: rgba(255,71,87,0.1);
  color: var(--error);
  border: 1px solid rgba(255,71,87,0.2);
}

.form-message:not(.sr-only) {
  position: static;
  width: auto;
  height: auto;
  clip: auto;
}

/* ==========================================
   GARANTÍA SECTION
   ========================================== */
.garantia {
  text-align: center;
  background: linear-gradient(135deg, rgba(0,255,204,0.03), rgba(123,47,255,0.03));
  border-radius: var(--radius);
  margin: 0 24px;
  max-width: calc(1200px - 48px);
  padding: 60px 40px;
  border: 1px solid rgba(0,255,204,0.06);
}

.garantia-icon {
  margin-bottom: 20px;
  display: inline-flex;
  padding: 16px;
  background: rgba(0,255,204,0.08);
  border-radius: 50%;
}

.garantia h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.garantia > p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 30px;
}

.garantia-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.garantia-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-secondary);
}

.garantia-item svg {
  flex-shrink: 0;
}

/* ==========================================
   PAYMENTS SECTION
   ========================================== */
.pagos {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.pagos-inner {
  text-align: center;
}

.pagos h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.payment-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.payment-cards img {
  height: 36px;
  width: auto;
  opacity: 0.7;
  transition: var(--transition);
  filter: grayscale(0.3);
}

.payment-cards img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  padding: 50px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  height: 45px;
  width: auto;
  opacity: 0.8;
}

.footer-text {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

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

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.whatsapp {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

.whatsapp:hover {
  transform: scale(1.1);
  color: #fff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-card);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.08);
}

.whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================
   CART
   ========================================== */
#cart-icon {
  position: fixed;
  bottom: 30px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  cursor: pointer;
  z-index: 1000;
  box-shadow: var(--shadow-accent);
  transition: var(--transition);
}

#cart-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(0,255,204,0.3);
}

#cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  background: #ff4757;
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

.cart-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-card);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.08);
}

#cart-icon:hover .cart-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Cart Panel */
#cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  border-left: 1px solid rgba(255,255,255,0.06);
}

#cart-panel[aria-hidden="false"] {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cart-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-close:hover {
  background: rgba(255,71,87,0.15);
  color: var(--error);
}

.cart-items-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.04);
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--muted);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.qty-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cart-item-qty span {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.cart-item-remove:hover {
  background: rgba(255,71,87,0.15);
  color: var(--error);
}

/* Cart Empty State */
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-align: center;
  padding: 40px;
}

.cart-empty svg {
  margin-bottom: 16px;
}

.cart-empty p {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.cart-empty span {
  font-size: 0.85rem;
}

/* Cart Footer */
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.2);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cart-total-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  text-align: right;
}

/* Cart Overlay */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   TOAST NOTIFICATION
   ========================================== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-card);
  border: 1px solid rgba(0,255,204,0.2);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 20px;
  }
  
  .logo {
    width: 140px;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .services {
    grid-template-columns: 1fr;
  }
  
  .hardware-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .garantia {
    margin: 0 16px;
    padding: 40px 24px;
  }
  
  .garantia-features {
    flex-direction: column;
    gap: 16px;
  }
  
  .payment-cards img {
    height: 28px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
  
  #cart-panel {
    max-width: 100%;
  }
  
  .whatsapp {
    width: 50px;
    height: 50px;
    bottom: 90px;
    right: 16px;
  }
  
  #cart-icon {
    width: 50px;
    height: 50px;
    right: 16px;
  }
  
  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .card-footer {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  .price {
    text-align: center;
  }
  
  .btn-add {
    width: 100%;
  }
}

/* ==========================================
   SCROLLBAR STYLING
   ========================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .section-reveal {
    opacity: 1;
    transform: none;
  }
}
