/* Global Variables & Design Tokens */
:root {
  --bg-color: #0b0c10;
  --bg-surface: #1f2833;
  --text-main: #ffffff;
  --text-muted: #c5c6c7;
  --accent-cyan: #66fcf1;
  --accent-teal: #45a29e;
  --accent-gradient: linear-gradient(135deg, var(--accent-cyan), #3b82f6);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

/* Background Blobs for Visual Interest */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.4;
}
.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-cyan);
  top: -200px;
  left: -200px;
  animation: float-blob 10s infinite alternate ease-in-out;
}
.blob-2 {
  width: 600px;
  height: 600px;
  background: var(--accent-teal);
  bottom: 100px;
  right: -300px;
  animation: float-blob 12s infinite alternate-reverse ease-in-out;
}

@keyframes float-blob {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Layout Utilities */
.container {
    width: 98%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 12, 16, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-left: 40px;
  transform: translateX(40px);
}

.accent-icon {
  color: var(--accent-cyan);
  font-size: 1.8rem;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

nav {
  display: flex;
  gap: 1.4rem;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
}

nav a:hover {
    color: var(--accent-cyan);
    transform: translateY(-2px);
}


nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--accent-cyan);
  transition: var(--transition);
}

nav a:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #000;
  border: none;
  box-shadow: 0 4px 15px rgba(102, 252, 241, 0.3);
}

.btn-primary:after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: inherit;
  border-radius: inherit;
  filter: blur(10px);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 252, 241, 0.5);
}

.btn-primary:hover:after {
  opacity: 0.8;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--accent-cyan);
}

.btn-outline:hover {
  background: var(--glass-bg);
  box-shadow: 0 0 10px rgba(102, 252, 241, 0.2);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-top: 80px;
}

.hero-content {
    flex: 1;
    transform: scale(1.25);
    transform-origin: center top;
    text-align: center;
}


h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 0 auto 2rem auto;
    max-width: 500px;
    text-align: center;
}

/* Abstract PC Visualization */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mock-pc {
  width: 350px;
  height: 450px;
  background: rgba(31, 40, 51, 0.5);
  border: 2px solid var(--glass-border);
  border-radius: 16px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 40px rgba(102,252,241,0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.glass-panel {
  width: 100%;
  height: 100%;
  background: var(--glass-bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.cooler {
  width: 100px;
  height: 100px;
  background: #111;
  border-radius: 50%;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gpu {
  position: absolute;
  bottom: 20px;
  width: 80%;
  height: 60px;
  background: #222;
  left: 10%;
  border-radius: 8px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.ram-sticks {
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  gap: 8px;
}

.ram {
  width: 10px;
  height: 80px;
  background: #333;
  border-radius: 2px;
}

.fan {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent, rgba(255,255,255,0.1));
  border: 1px solid #444;
}

/* Animations */
.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

.spin {
  animation: spin 1s linear infinite;
}

.spin.slow {
  animation-duration: 3s;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.rgb-pulse {
  animation: color-pulse 4s infinite alternate;
}

.rgb-border {
  border-bottom: 3px solid var(--accent-cyan);
  animation: border-pulse 4s infinite alternate;
}

.rgb-glow {
  box-shadow: 0 0 20px var(--accent-cyan);
  animation: shadow-pulse 4s infinite alternate;
}

@keyframes shadow-pulse {
  0% { box-shadow: 0 0 10px var(--accent-cyan); border-color: var(--accent-cyan); }
  50% { box-shadow: 0 0 25px var(--accent-teal); border-color: var(--accent-teal); }
  100% { box-shadow: 0 0 10px #3b82f6; border-color: #3b82f6; }
}

@keyframes color-pulse {
  0% { background: var(--accent-cyan); }
  50% { background: var(--accent-teal); }
  100% { background: #3b82f6; }
}

.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: opacity, transform;
}
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}
.fade-in.visible {
  opacity: 1;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Custom Panels Tornei */
.custom-panel {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.custom-panel:hover {
  border-color: var(--accent-purple);
  box-shadow: 0 5px 25px rgba(187, 134, 252, 0.15);
}
.custom-panel-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--glass-border);
}
.custom-panel-content {
  padding: 1.5rem;
}

/* Leaderboard */
.leaderboard-table {
  width: 100%; border-collapse: collapse; text-align: left; background: rgba(0,0,0,0.2);
}
.leaderboard-table th {
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--accent-cyan); color: var(--accent-cyan);
}
.leaderboard-table td {
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--glass-border);
}
.leaderboard-table tr:hover {
  background: rgba(255,255,255,0.05);
}
.rank-1 { color: gold; font-weight: bold; font-size: 1.2rem; }
.rank-2 { color: silver; font-weight: bold; font-size: 1.1rem; }
.rank-3 { color: #cd7f32; font-weight: bold; font-size: 1.05rem; }

/* Footer Section */
.glass-footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--glass-border);
  margin-top: 4rem;
  color: var(--text-muted);
}

/* --- Section Formatting --- */

.center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }

#showroom, #pagamenti, #consegne {
  padding-top: 100px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Showroom Section */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pc-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transition: transform 0.3s, border-color 0.3s;
}

.pc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(102, 252, 241, 0.15);
  border-color: var(--accent-teal);
}

.pc-image-placeholder {
  height: 220px;
  background: rgba(0,0,0,0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.pc-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease;
}

.pc-card:hover .pc-image {
  transform: scale(1.02);
}

.pc-details { display: flex; flex-direction: column; gap: 0.5rem; }

.badge {
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  background: rgba(102, 252, 241, 0.15);
  color: var(--accent-cyan);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.badge-teal { background: rgba(69, 162, 158, 0.15); color: var(--accent-teal); border-color: var(--accent-teal); }
.badge-purple { background: rgba(187, 134, 252, 0.15); color: #bb86fc; border-color: #bb86fc; }

.specs {
  list-style: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.specs li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.specs li ion-icon { color: var(--accent-cyan); font-size: 1.1rem; }

.price-action { display: flex; justify-content: space-between; align-items: center; }
.price { font-size: 1.8rem; font-weight: 800; color: var(--accent-cyan); }
.btn-small { padding: 0.5rem 1.25rem; font-size: 0.9rem; }

/* Payments Section */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.info-card {
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-teal);
  background: rgba(255, 255, 255, 0.08);
}

.card-icon {
  font-size: 3.5rem;
  color: var(--accent-cyan);
  margin-bottom: 1.25rem;
}

.info-card h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }
.info-card p { font-size: 0.95rem; color: var(--text-muted); }

/* Delivery Section */
.delivery-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.delivery-steps { padding: 2.5rem; display: flex; flex-direction: column; gap: 2rem; }

.step-item { display: flex; gap: 1.5rem; align-items: flex-start; }

.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(102, 252, 241, 0.1);
  border: 1px solid var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-cyan);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(102, 252, 241, 0.2);
}

.step-content h4 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.step-content p { font-size: 1rem; color: var(--text-muted); }

.delivery-visual {
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(69, 162, 158, 0.1) 100%);
}

.trust-icon {
  font-size: 6rem;
  color: #bb86fc;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 15px rgba(187, 134, 252, 0.4));
}

.delivery-visual h3 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--text-main); }
.delivery-visual p { font-size: 1.1rem; color: var(--text-muted); }

/* Team Section */
.team-wrapper {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
}

.team-image img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--accent-cyan);
  box-shadow: 0 0 25px rgba(102, 252, 241, 0.4);
}

.team-info h3 { font-size: 2.2rem; color: var(--accent-cyan); margin-bottom: 0.5rem; }
.team-info p { font-size: 1.05rem; }

/* Cart Sidebar */
.cart-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(5px);
  z-index: 1001; opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 420px; height: 100vh;
  background: var(--bg-surface); border-left: 1px solid var(--glass-border);
  z-index: 1002; display: flex; flex-direction: column;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cart-sidebar.active { right: 0; box-shadow: -10px 0 30px rgba(0,0,0,0.5); }

.cart-header { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--glass-border); }
.close-btn { background: none; border: none; color: var(--text-muted); font-size: 1.8rem; cursor: pointer; transition: color 0.3s; }
.close-btn:hover { color: var(--accent-cyan); }

.cart-items { flex-grow: 1; padding: 1.5rem; overflow-y: auto; display: flex; flex-direction: column; gap: 1rem; }
.cart-item { display: flex; gap: 1rem; align-items: center; padding: 1rem; background: rgba(0,0,0,0.2); border-radius: 8px; border: 1px solid var(--glass-border); }
.cart-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; border: 1px solid rgba(255,255,255,0.1); }
.cart-item-info { flex-grow: 1; }
.cart-item-info h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.cart-item-price { color: var(--accent-cyan); font-weight: 600; font-size: 0.95rem; }
.remove-btn { background: none; border: none; color: #ff5252; cursor: pointer; font-size: 1.2rem; }

.cart-footer { padding: 1.5rem; border-top: 1px solid var(--glass-border); background: rgba(0,0,0,0.3); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.3rem; font-weight: 800; margin-bottom: 1.5rem; }

/* Responsive adjustments */
@media (max-width: 900px) {
  #hero { flex-direction: column; padding-top: 150px; text-align: center; }
  .mock-pc { margin: 0 auto 3rem; }
  .subtitle { margin-left: auto; margin-right: auto; }
  .delivery-wrapper { grid-template-columns: 1fr; }
  .team-wrapper { flex-direction: column; text-align: center; }
  nav { display: none; } /* Mobile toggle not implemented here */
}
.logo img {
    height: 65px !important;
    width: auto !important;
    transform: translateX(0px) !important;
}
#contact-btn {
    padding: 0.6rem 0.8rem !important;
    font-size: 0.9rem !important;
    min-width: auto !important;
}

#contact-btn ion-icon {
    font-size: 1rem !important;
    margin-left: 4px !important;
}
@media (max-width: 480px) {
  .cart-sidebar { width: 100%; right: -100%; }
}

/* Configurator specific */
.configurator-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}
@media (max-width: 768px) {
    .configurator-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Global Fixes */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 2rem;
}
.modal-overlay.active {
    display: flex;
}
.modal-content {
    background: var(--bg-surface);
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: auto;
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
    flex-wrap: wrap;
}
.admin-tab-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px;
}
.admin-tab-btn:hover {
    background: rgba(255,255,255,0.05);
    color: white;
}
.admin-tab-btn.active {
    background: rgba(102, 252, 241, 0.1);
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}
.admin-tab-content {
    display: none;
    animation: fadeInTab 0.5s ease;
}
.admin-tab-content.active {
    display: block;
}
@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Social Video Section */
.social-video-section {
  background: #050505;
  color: white;
  padding: 70px 20px;
  font-family: Arial, sans-serif;
}

.social-container {
  max-width: 1200px;
  margin: auto;
}

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

.social-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #ffffff;
}

.social-header p {
  font-size: 18px;
  color: #cfcfcf;
  max-width: 750px;
  margin: auto;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.social-card {
  background: #111;
  border: 1px solid #333;
  border-radius: 18px;
  padding: 30px;
  position: relative;
  box-shadow: 0 0 25px rgba(255,255,255,0.05);
}

.social-card.featured {
  border: 2px solid #00e5ff;
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: #00e5ff;
  color: #000;
  padding: 7px 14px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
}

.social-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.price {
  font-size: 34px;
  font-weight: bold;
  color: #00e5ff;
  margin-bottom: 20px;
}

.social-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.social-card li {
  margin-bottom: 12px;
  color: #ddd;
}

.social-card li::before {
  content: "✓ ";
  color: #00ff88;
  font-weight: bold;
}

.social-btn {
  display: block;
  text-align: center;
  background: #00e5ff;
  color: #000;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.social-btn:hover {
  background: white;
}

.social-bottom {
  text-align: center;
  margin-top: 55px;
  background: #111;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #333;
}

.social-bottom h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.social-bottom p {
  color: #ccc;
  font-size: 18px;
}

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

  .social-card.featured {
    transform: none;
  }

  .social-header h2 {
    font-size: 32px;
  }
}
select {
    background: #0b0c10 !important;
    color: white !important;
    border: 1px solid #66fcf1 !important;
}

option {
    background: #0b0c10 !important;
    color: white !important;
}@media (max-width: 768px) {
  .configurator-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .configurator-layout > * {
    width: 100% !important;
    max-width: 100% !important;
  }
}@media (max-width: 768px) {
  #configuratore .configurator-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  #configuratore .configurator-layout > div {
    width: 100% !important;
    max-width: 100% !important;
  }
}
.hero-actions {
    display: flex;
    justify-content: center;
}
.pulse-build {
    margin-top: 1.5rem;
    animation: pulseBuild 1.8s infinite;
}

@keyframes pulseBuild {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(102, 252, 241, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(102, 252, 241, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(102, 252, 241, 0.4);
    }
}.service-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.2rem;
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
}

.service-box ion-icon {
    font-size: 2rem;
    color: var(--accent-cyan);
    margin: 0 auto;
}

.service-box span {
    font-weight: 700;
    color: var(--text-main);
}/* Effetto glow logo home */
.logo img {
    transition: transform 0.25s ease, filter 0.25s ease;
}

.logo:hover img {
    transform: scale(1.06) translateX(50px);
    filter: drop-shadow(0 0 18px rgba(102, 252, 241, 0.9));
}

/* Effetto glow sui riquadri I Nostri Servizi */
.service-box {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-box:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 25px rgba(102, 252, 241, 0.45);
    background: rgba(102, 252, 241, 0.08);
}/* GLOW LOGO HOME */
a.logo img {
    transition: all 0.25s ease !important;
}

a.logo:hover img {
    filter: drop-shadow(0 0 25px #66fcf1) !important;
    transform: translateX(50px) scale(1.08) !important;
}

/* GLOW RIQUADRI SERVIZI */
.service-box {
    transition: all 0.25s ease !important;
    cursor: pointer !important;
}

.service-box:hover {
    transform: translateY(-8px) scale(1.04) !important;
    box-shadow: 0 0 30px rgba(102, 252, 241, 0.8) !important;
    border-color: #66fcf1 !important;
    background: rgba(102, 252, 241, 0.12) !important;
}/* Hover logo Home */
a.logo img {
    transition: transform 0.25s ease, filter 0.25s ease !important;
}

a.logo:hover img {
    transform: translateX(30px) scale(1.08) !important;
    filter: drop-shadow(0 0 25px rgba(102, 252, 241, 1)) !important;
}

/* Hover riquadri I Nostri Servizi */
a.service-box {
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease !important;
}

a.service-box:hover {
    transform: translateY(-8px) scale(1.04) !important;
    box-shadow: 0 0 35px rgba(102, 252, 241, 0.85) !important;
    border-color: #66fcf1 !important;
    background: rgba(102, 252, 241, 0.12) !important;
}

a.service-box:hover ion-icon {
    color: #66fcf1 !important;
    filter: drop-shadow(0 0 15px rgba(102, 252, 241, 1)) !important;
}/* Colonna componenti più larga */
.compatibility-table td:first-child,
.compatibility-table th:first-child {
    min-width: 160px !important;
    width: 160px !important;
}

/* Evita parole spezzate */
.compatibility-table td,
.compatibility-table th {
    word-break: keep-all !important;
    overflow-wrap: normal !important;
}.footer {
    margin-top: 5rem;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.1);
    background: rgba(0,0,0,0.25);
}

.footer-content h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.footer-content p {
    color: var(--text-muted);
    margin: 0.35rem 0;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border: 3px solid red !important;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(37,211,102,.5);
    transition: all .3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 0 30px rgba(37,211,102,.9);
}.mobile-menu-btn {
    display: none;
}

.mobile-menu {
    display: none;
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: none !important;
        position: fixed;
        top: 95px;
        left: 20px;
        z-index: 99999;
        width: 55px;
        height: 55px;
        border-radius: 14px;
        border: 1px solid var(--accent-cyan);
        background: rgba(0,0,0,0.65);
        color: var(--accent-cyan);
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        box-shadow: 0 0 20px rgba(102,252,241,.35);
    }

    @media (max-width: 900px) {
    .mobile-menu-btn {
        display: flex !important;
        position: fixed;
        top: 12px;
        right: 12px;
        left: auto;
        z-index: 9999;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        border: 1px solid var(--accent-cyan);
        background: rgba(0,0,0,0.65);
        color: var(--accent-cyan);
        align-items: center;
        justify-content: center;
        font-size: 1.45rem;
        box-shadow: 0 0 14px rgba(102,252,241,.30);
    }
}

    .mobile-menu.active {
    display: flex !important;
    transform: translateX(0);
}
@media (max-width: 900px) {
    .mobile-menu.active {
        display: flex !important;
    }
}
    .mobile-menu a {
        color: white;
        text-decoration: none;
        padding: .9rem;
        border-bottom: 1px solid rgba(255,255,255,.08);
        font-weight: 700;
    }
}@media (max-width: 768px) {

    #contact-btn {
        padding: 0.6rem 1rem !important;
        font-size: 0.95rem !important;
        min-width: auto !important;
    }

}/* FIX CONFIGURATORE PC MOBILE */
@media (max-width: 768px) {

    .configurator-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .configurator-layout > * {
        width: 100% !important;
        max-width: 100% !important;
    }

    .configurator-layout select,
    .configurator-layout input,
    .configurator-layout textarea {
        font-size: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .compatibility-table {
        width: 100% !important;
        table-layout: auto !important;
        font-size: 0.85rem !important;
    }

    .compatibility-table th,
    .compatibility-table td {
        padding: 0.55rem !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        white-space: normal !important;
    }

    .compatibility-table th:first-child,
    .compatibility-table td:first-child {
        min-width: 115px !important;
        white-space: nowrap !important;
    }
}/* CONFIGURATORE MOBILE - tabella leggibile */
@media (max-width: 768px) {

    .compatibility-table,
    .compatibility-table thead,
    .compatibility-table tbody,
    .compatibility-table tr,
    .compatibility-table th,
    .compatibility-table td {
        display: block !important;
        width: 100% !important;
    }

    .compatibility-table thead {
        display: none !important;
    }

    .compatibility-table tr {
        margin-bottom: 1rem !important;
        padding: 1rem !important;
        border: 1px solid rgba(255,255,255,0.12) !important;
        border-radius: 14px !important;
        background: rgba(255,255,255,0.04) !important;
    }

    .compatibility-table td {
        padding: 0.45rem 0 !important;
        text-align: left !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    .compatibility-table td:first-child {
        font-size: 1.1rem !important;
        font-weight: 800 !important;
        color: var(--accent-cyan) !important;
    }

    .compatibility-table td:nth-child(2) {
        font-weight: 800 !important;
    }

}/* FIX REALE TABELLA COMPATIBILITÀ MOBILE */
@media (max-width: 768px) {

    #compatibilityResult table,
    #compatibilityResult thead,
    #compatibilityResult tbody,
    #compatibilityResult tr,
    #compatibilityResult th,
    #compatibilityResult td {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        text-align: left !important;
    }

    #compatibilityResult thead {
        display: none !important;
    }

    #compatibilityResult tr {
        margin-bottom: 1rem !important;
        padding: 1rem !important;
        border: 1px solid rgba(255,255,255,0.15) !important;
        border-radius: 14px !important;
        background: rgba(255,255,255,0.05) !important;
    }

    #compatibilityResult td {
        padding: 0.4rem 0 !important;
        font-size: 1rem !important;
    }

    #compatibilityResult td:first-child {
        color: var(--accent-cyan) !important;
        font-size: 1.15rem !important;
        font-weight: 800 !important;
    }
}@media (max-width: 768px) {
    #confCompatibilityResult {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 768px) {
    #confCompatibilityResult table {
        display: none !important;
    }

    .mobile-compatibility-list {
        display: block !important;
    }

    .mobile-compatibility-card {
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 12px;
        padding: 1rem;
        margin-bottom: 1rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .mobile-compatibility-card div {
        margin-bottom: 0.45rem;
        word-break: normal;
        overflow-wrap: normal;
    }
}@media (max-width: 768px) {

    .mobile-compatibility-list {
        display: block !important;
        width: 100% !important;
    }

    .mobile-compatibility-card {
        display: block !important;
        background: rgba(255,255,255,0.06) !important;
        border: 1px solid rgba(255,255,255,0.15) !important;
        border-radius: 12px !important;
        padding: 1rem !important;
        margin-bottom: 1rem !important;
        color: white !important;
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    .mobile-compatibility-card div {
        display: block !important;
        margin-bottom: 0.5rem !important;
        color: white !important;
    }
}/* CARD COMPATIBILITÀ SOLO MOBILE */
@media (max-width: 768px) {
    .mobile-compatibility-list {
        width: 100% !important;
        display: block !important;
    }

    .mobile-compatibility-card {
        background: rgba(255,255,255,0.06) !important;
        border: 1px solid rgba(255,255,255,0.15) !important;
        border-radius: 14px !important;
        padding: 1rem !important;
        margin-bottom: 1rem !important;
        color: white !important;
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    .mobile-compatibility-card div {
        margin-bottom: 0.45rem !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        white-space: normal !important;
    }
}@media (max-width: 768px) {
    .service-box span {
        font-size: 0.80rem;
        line-height: 1.1;
    }
}@media (max-width: 768px) {
    .mobile-tight-title {
        font-size: 2rem !important;
        letter-spacing: -1px;
        line-height: 1;
    }
@media (max-width: 768px) {
    .home-floating-btn {
        position: absolute !important;
        top: 10px !important;
        left: 12px !important;
    }
}

    .home-floating-img {
        height: 55px !important;
    }

    .home-floating-text {
        margin-top: 3px !important;
        font-size: 9px !important;
        letter-spacing: 2px !important;
    }
}html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
@media (max-width: 900px) {

    #mobileMenu.mobile-menu {
        display: none !important;
        position: fixed !important;
        top: 105px !important;
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 5px !important;
        padding: 7px !important;
        background: rgba(0,0,0,0.88) !important;
        border: 1px solid var(--accent-cyan) !important;
        border-radius: 16px !important;
        z-index: 999999 !important;
        box-shadow: 0 0 18px rgba(102,252,241,0.35) !important;
    }

    #mobileMenu.mobile-menu.active {
        display: flex !important;
    }

    #mobileMenu.mobile-menu a {
        flex: 1 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        color: var(--accent-cyan) !important;
        text-decoration: none !important;
        font-size: 0.58rem !important;
        font-weight: 700 !important;
        padding: 6px 4px !important;
        border-radius: 10px !important;
        border: 1px solid rgba(102,252,241,0.35) !important;
        background: rgba(102,252,241,0.10) !important;
        white-space: nowrap !important;
    }

    #mobileMenu.mobile-menu a:active {
        background: rgba(102,252,241,0.25) !important;
        box-shadow: 0 0 14px rgba(102,252,241,0.45) !important;
    }
}
}@media (max-width: 768px) {
    .team-grid-mobile-fix {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        justify-items: center !important;
    }

    .team-grid-mobile-fix .glass-panel {
        width: 100% !important;
        max-width: 340px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }
}@media (max-width: 768px) {
    #hero img[src*="wowstore-battle"] {
        max-width: 92% !important;
        width: 92% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto 1.5rem auto !important;
    }
}

@media (min-width: 769px) {
    #hero img[src*="wowstore-battle"] {
        max-width: 700px !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto 2rem auto !important;
    }
}.hero-seo-title{
    font-size:42px;
    line-height:1.15;
    text-align:center;
    text-shadow:0 0 14px rgba(0,238,255,0.25);
}

.neon-word{
    display:inline-block;
    text-shadow:
        0 0 8px rgba(0,238,255,0.7),
        0 0 18px rgba(37,99,235,0.55),
        0 0 28px rgba(0,238,255,0.35);
}

@media(max-width:768px){
    .hero-seo-title{
        font-size:30px !important;
        line-height:1.18 !important;
        padding:0 10px;
    }

    .neon-word{
        font-size:34px;
    }
}.neon-title{
    font-size:42px !important;
    line-height:1.12 !important;
    text-align:center;
    letter-spacing:-1px;
    text-transform:uppercase;
    font-weight:900;
    color:#fff;
    text-shadow:
        0 0 8px rgba(0,238,255,.45),
        0 0 18px rgba(0,238,255,.30),
        0 0 30px rgba(37,99,235,.25);
}

.neon-title span{
    display:block;
}

.neon-title span:nth-child(1){
    background:linear-gradient(90deg,#ffffff,#5eeeff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.neon-title span:nth-child(2){
    background:linear-gradient(90deg,#5eeeff,#3b82f6);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.neon-title span:nth-child(3){
    background:linear-gradient(90deg,#00f5ff,#2563eb);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    text-shadow:
        0 0 10px rgba(0,238,255,.65),
        0 0 24px rgba(37,99,235,.55);
}

@media(max-width:768px){
    .neon-title{
        font-size:30px !important;
        line-height:1.18 !important;
        padding:0 16px;
        letter-spacing:-0.5px;
    }
}.pc-builder-new {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: start;
}

.builder-categories,
.builder-search,
.component-results {
  grid-column: 1;
}

.build-summary-new {
  grid-column: 2;
  grid-row: 1 / span 3;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.builder-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;

    
}

.category-btn {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.06);
  color: white;
  cursor: pointer;
}

.category-btn.active {
    background: #1b1d22 !important;
    color: #00eaff !important;
    border: 2px solid #00eaff !important;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(0,234,255,.45) !important;
}

.builder-search {
  margin-bottom: 1.5rem;
}

#componentSearch {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.35);
  color: white;
}

.component-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.performance-box {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
}

#addBuildToCartBtn {
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .pc-builder-new {
    grid-template-columns: 1fr;
  }

  .builder-categories,
  .builder-search,
  .component-results,
  .build-summary-new {
    grid-column: 1;
    grid-row: auto;
  }

  .build-summary-new {
    position: static;
  }
}#addBuildToCartBtn.main-cta {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem 1.3rem;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: #000;
  font-weight: 800;
  cursor: pointer;
  font-size: 1rem;
}.component-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1rem;
  min-height: 320px;
}

.component-card img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.component-card h4 {
  margin-bottom: 0.5rem;
}

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

.component-card button {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: #000;
  font-weight: 800;
  cursor: pointer;
}

.selected-build-row,
.selected-build-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.selected-build-row span,
.selected-build-total span {
  color: var(--text-muted);
}

.selected-build-total {
  margin-top: 1rem;
  font-size: 1.1rem;
  border-bottom: none;
}.component-card button {
  background: #00e5ff !important;
  color: #000 !important;
  font-weight: 700;
}/* ZOOM CARD PRODOTTI CONFIGURATORE */
.component-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
    cursor: pointer;
}

.component-card:hover {
    transform: translateY(-8px) scale(1.04) !important;
    border-color: #00eaff !important;
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.35) !important;
    z-index: 10 !important;
}/* TITOLO CONFIGURATORE PREMIUM */
.config-title{
    font-size: 3rem;
    font-weight: 900;
    text-align: center;

    line-height: 1.25;
    padding-bottom: 15px;
    margin-bottom: 25px;

    background: linear-gradient(
        90deg,
        #ffffff,
        #00eaff,
        #39ff88
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    text-shadow: 0 0 25px rgba(0,234,255,.25);
}.config-subtitle{
    text-align:center;
    font-size:1.15rem;
    color:#9befff;
    text-shadow:0 0 12px rgba(0,234,255,.25);
    max-width:1000px;
    margin:0 auto 35px auto;
    line-height:1.7;
}

.config-title{
  @media (min-width: 769px) {
    .builder-categories {
        margin-top: 70px !important;
    }
}
    line-height:1.25;
    padding-bottom:15px;
}

.config-hero{
    padding-top:40px;
}

@media (max-width: 768px) {
    .config-hero{
        padding-top:110px !important;
    }
}

.config-hero .config-subtitle{
    color:#9befff !important;
    text-align:center !important;
    font-size:1.15rem !important;
    text-shadow:0 0 12px rgba(0,234,255,.25) !important;
    max-width:1000px !important;
    margin:0 auto 35px auto !important;
    line-height:1.7 !important;
}.build-title{
    color:#00eaff !important;
    font-size:1.8rem;
    font-weight:900;
    text-align:center;
    text-shadow:0 0 18px rgba(0,234,255,.45);
    margin-bottom:20px;
}.perf-title{
    color:#39ff88 !important;
    font-size:1.2rem;
    font-weight:800;
    text-shadow:0 0 15px rgba(57,255,136,.35);
}#addBuildToCartBtn{
    width:100%;
    margin-top:20px;

    background:linear-gradient(
        135deg,
        #00eaff,
        #39ff88
    ) !important;

    color:#020617 !important;

    font-weight:900 !important;
    font-size:1.1rem !important;

    border:none !important;
    border-radius:14px !important;

    padding:16px !important;

    box-shadow:0 0 20px rgba(0,234,255,.35);
}

#addBuildToCartBtn:hover{
    transform:scale(1.03);
    box-shadow:0 0 30px rgba(0,234,255,.55);
}@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

    #hero {
        flex-direction: column;
        gap: 2rem;
        padding-top: 100px;
        min-height: auto;
    }

    .hero-content {
        transform: none !important;
        flex: none;
        width: 100%;
        text-align: center;
    }

    .hero-visual {
        flex: none;
        width: 100%;
    }

    .subtitle {
        max-width: 100%;
        margin: 0 auto 2rem auto;
    }
}@media (max-width: 768px) {
    .mobile-menu-toggle,
    .hamburger,
    .menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 9999;
        pointer-events: auto;
    }

    .nav-links {
        z-index: 9998;
    }
}@media (min-width: 769px) {
    #hero .hero-visual .glass-panel {
        min-height: 620px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    #hero .hero-visual .glass-panel > div {
        flex: 1;
        align-content: center;
    }
}@media (min-width: 769px) {
    #services-panel {
        height: 820px !important;
        padding: 3rem !important;
        display: flex !important;
        flex-direction: column !important;
    }

    #services-grid {
        flex: 1 !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1.8rem !important;
    }

    #services-panel .service-box {
        min-height: 150px !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        font-size: 1.15rem !important;
    }

    #services-panel .service-box ion-icon {
        font-size: 2.2rem !important;
        margin-bottom: 1rem !important;
    }
}@media (max-width: 768px) {
    .hero-actions {
        opacity: 1 !important;
        transform: translateY(-25px) !important;
        animation: none !important;
        display: flex !important;
        justify-content: center !important;
        visibility: visible !important;
    }

    .hero-actions .pulse-build {
        opacity: 1 !important;
        visibility: visible !important;
        animation: pulseBuild 1.8s infinite !important;
    }
}.home-logo-img {
    height: 90px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .home-logo-img {
        height: 65px !important;
        width: auto !important;
    }
}.home-logo-img {
    height: 90px;
    width: auto;
    display: block;
    transform: translateX(30px);
}

@media (max-width: 768px) {
    .home-logo-img {
        height: 65px !important;
        transform: translateX(0) !important;
    }
}@media (max-width: 768px) {
    .configurator-hero,
    .builder-hero,
    .pc-builder-new,
    #configuratore {
        padding-top: 160px !important;
    }
}@media (min-width: 769px) {
    #configuratore-area {
        margin-top: 4rem !important;
        padding-top: 3rem !important;
        border-top: 1px solid rgba(255,255,255,0.08) !important;
    }
}

@media (max-width: 768px) {
    #configuratore-area {
        margin-top: -10rem !important;
        padding-top: -10rem !important;
        border-top: 1px solid rgba(255,255,255,0.08) !important;
    }
}@media (max-width: 768px) {

    .builder-layout,
    .pc-builder-layout,
    .builder-main {
        display: flex !important;
        flex-direction: column !important;
    }

    .build-summary-new,
    .build-summary,
    .selected-build-box {
        order: 2 !important;
        width: 100% !important;
        margin: 1rem 0 1.5rem 0 !important;
    }

    .component-results {
        order: 3 !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }

    .component-card {
        padding: 0.75rem !important;
        min-height: auto !important;
    }

    .component-card img,
    .component-card .component-image,
    .component-img {
        width: 80px !important;
        height: 80px !important;
        object-fit: contain !important;
        margin: 0 auto 0.5rem auto !important;
        display: block !important;
    }

    .component-card h3,
    .component-card h4 {
        font-size: 0.85rem !important;
        line-height: 1.1 !important;
        min-height: 2.2em !important;
    }

    .component-card p,
    .component-card .description,
    .component-card .specs {
        font-size: 0.72rem !important;
        line-height: 1.2 !important;
    }

    .component-card button {
        font-size: 0.75rem !important;
        padding: 0.55rem 0.6rem !important;
        width: 100% !important;
    }
}@media (max-width: 768px) {

    .config-hero {
        padding-top: 80px !important;
        margin-bottom: 0.5rem !important;
    }

    .config-title {
        font-size: 1.65rem !important;
        line-height: 1.1 !important;
        margin-bottom: 0.6rem !important;
        padding-bottom: 0 !important;
    }

    .config-mobile-info {
    position: absolute !important;
    top: 22px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 999999 !important;
    margin: 0 !important;
}

    .config-mobile-info summary {
        display: inline-block !important;
        padding: 0.55rem 1rem !important;
        border-radius: 999px !important;
        background: rgba(255,255,255,0.08) !important;
        border: 1px solid rgba(0,255,255,0.35) !important;
        color: #00ffff !important;
        font-weight: 700 !important;
        font-size: 0.85rem !important;
        cursor: pointer !important;
    }

    .config-mobile-info .config-subtitle {
        margin-top: 0.75rem !important;
        font-size: 0.85rem !important;
        line-height: 1.35 !important;
        color: var(--text-muted) !important;
    }

    .builder-categories {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 0.5rem !important;
        margin-bottom: 0.75rem !important;
        padding-bottom: 0.35rem !important;
        scrollbar-width: none !important;
    }

    .builder-categories::-webkit-scrollbar {
        display: none !important;
    }

    .category-btn {
        flex: 0 0 auto !important;
        min-width: 140px !important;
        font-size: 0.75rem !important;
        padding: 0.55rem 0.8rem !important;
        white-space: nowrap !important;
    }

    .builder-search {
        margin-bottom: 0.75rem !important;
    }

    #componentSearch {
        height: 42px !important;
        font-size: 0.9rem !important;
    }

    .component-results {
        display: flex !important;
        overflow-x: auto !important;
        gap: 0.75rem !important;
        padding: 0.5rem 0 1rem 0 !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
    }

    .component-results::-webkit-scrollbar {
        display: none !important;
    }

    .component-card {
        flex: 0 0 155px !important;
        max-width: 155px !important;
        min-width: 155px !important;
        padding: 0.7rem !important;
        scroll-snap-align: start !important;
        border-radius: 16px !important;
    }

    .component-card img,
    .component-card .component-image,
    .component-img {
        width: 72px !important;
        height: 72px !important;
        object-fit: contain !important;
        margin: 0 auto 0.45rem auto !important;
        display: block !important;
    }

    .component-card h3,
    .component-card h4 {
        font-size: 0.78rem !important;
        line-height: 1.1 !important;
        min-height: 2.1em !important;
        margin-bottom: 0.35rem !important;
    }

    .component-card .specs,
    .component-card p {
        font-size: 0.68rem !important;
        line-height: 1.15 !important;
        margin-bottom: 0.45rem !important;
    }

    .component-card button {
        font-size: 0.7rem !important;
        padding: 0.45rem 0.5rem !important;
        width: 100% !important;
    }

    .build-summary-new {
        margin-top: 0.5rem !important;
        width: 100% !important;
    }
}@media (max-width: 768px) {

    .config-hero {
        padding-top: 60px !important;
        margin-bottom: 0 !important;
    }

    .config-mobile-info {
        margin: 0.2rem auto 0.4rem auto !important;
        max-width: 94% !important;
        text-align: center !important;
    }

    .config-mobile-info summary {
        display: inline-block !important;
        padding: 0.45rem 0.9rem !important;
        border-radius: 999px !important;
        background: rgba(255,255,255,0.08) !important;
        border: 1px solid rgba(0,255,255,0.35) !important;
        color: #00ffff !important;
        font-weight: 800 !important;
        font-size: 0.8rem !important;
        cursor: pointer !important;
    }

    .config-mobile-info .config-title {
        font-size: 1.15rem !important;
        line-height: 1.1 !important;
        margin: 0.7rem 0 0.4rem 0 !important;
        padding-bottom: 0 !important;
    }

    .config-mobile-info .config-subtitle {
        margin: 0 !important;
        font-size: 0.78rem !important;
        line-height: 1.25 !important;
    }

    .builder-categories {
        margin-top: 0 !important;
        margin-bottom: 0.35rem !important;
    }

    .builder-search {
        margin-top: 0 !important;
        margin-bottom: 0.35rem !important;
    }

    #componentSearch {
        height: 38px !important;
        font-size: 0.82rem !important;
    }

    .build-summary-new {
        padding: 0.75rem !important;
        margin: 0.45rem 0 0.6rem 0 !important;
    }

    .build-summary-new h2,
    .build-summary-new h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.45rem !important;
    }

    .selected-build-row {
        padding: 0.35rem 0 !important;
        font-size: 0.78rem !important;
    }

    .performance-box {
        padding: 0.65rem !important;
        margin-top: 0.5rem !important;
        font-size: 0.78rem !important;
    }

    .component-results {
        margin-top: 0.35rem !important;
    }

}@media (min-width: 769px) {
    .config-mobile-info {
        position: static !important;
        transform: none !important;
        width: auto !important;
        background: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 auto 2rem auto !important;
        text-align: center !important;
    }

    .config-mobile-info summary {
        display: none !important;
    }

    .config-mobile-info .config-title {
        display: block !important;
    }

    .config-mobile-info .config-subtitle {
        display: block !important;
    }
}
@media (min-width: 769px) {

    .config-mobile-info summary {
        display: none !important;
    }

    .config-mobile-info {
        position: static !important;
        width: auto !important;
        background: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 auto 2rem auto !important;
        text-align: center !important;
    }

    .config-mobile-info .config-title {
        display: block !important;
    }

    .config-mobile-info .config-subtitle {
        display: block !important;
    }

}
/* FIX DEFINITIVO CONFIGURATORE MOBILE/DESKTOP */

@media (max-width: 768px) {

    .config-hero {
        padding-top: 0 !important;
        margin: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
    }

    .config-mobile-info {
        position: absolute !important;
        top: 22px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 9999 !important;
        margin: 0 !important;
        text-align: center !important;
    }

    .config-mobile-info summary {
        display: inline-block !important;
        padding: 0.45rem 0.9rem !important;
        border-radius: 999px !important;
        background: rgba(255,255,255,0.10) !important;
        border: 1px solid rgba(0,255,255,0.5) !important;
        color: #00ffff !important;
        font-weight: 800 !important;
        font-size: 0.8rem !important;
        cursor: pointer !important;
    }

    .config-mobile-info .config-title,
    .config-mobile-info .config-subtitle {
        display: none !important;
    }

    .config-mobile-info[open] {
        width: 92% !important;
        background: rgba(5,8,15,0.96) !important;
        border: 1px solid rgba(0,255,255,0.35) !important;
        border-radius: 18px !important;
        padding: 0.8rem !important;
    }

    .config-mobile-info[open] .config-title,
    .config-mobile-info[open] .config-subtitle {
        display: block !important;
    }

    .config-mobile-info[open] .config-title {
        font-size: 1rem !important;
        line-height: 1.15 !important;
        margin: 0.7rem 0 0.4rem 0 !important;
        padding: 0 !important;
    }

    .config-mobile-info[open] .config-subtitle {
        font-size: 0.75rem !important;
        line-height: 1.25 !important;
        margin: 0 !important;
    }

    #configuratore-area {
        margin-top: 2.2rem !important;
        padding-top: 0 !important;
    }

    .builder-categories {
        margin-top: 0 !important;
        margin-bottom: 0.15rem !important;
    }

    .builder-search {
        margin-top: 0 !important;
        margin-bottom: 0.2rem !important;
    }

    .component-results {
        margin-top: 0.2rem !important;
    }
}

@media (min-width: 769px) {

    .config-hero {
        height: auto !important;
        min-height: auto !important;
        padding-top: 40px !important;
        margin-bottom: 2rem !important;
    }

    .config-mobile-info {
        position: static !important;
        transform: none !important;
        width: auto !important;
        background: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 auto 2rem auto !important;
        text-align: center !important;
    }

    .config-mobile-info summary {
        display: none !important;
    }

    .config-mobile-info .config-title,
    .config-mobile-info .config-subtitle {
        display: block !important;
    }
}
/* FIX FINALE CONFIGURATORE DESKTOP/MOBILE */

@media (min-width: 769px) {
    .config-desktop-title {
        display: block !important;
        text-align: center !important;
    }

    .config-mobile-info {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .config-desktop-title {
        display: none !important;
    }

    .config-hero {
        height: 0 !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .config-mobile-info {
        position: absolute !important;
        top: 22px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 9999 !important;
        margin: 0 !important;
        text-align: center !important;
    }

    .config-mobile-info summary {
        display: inline-block !important;
        padding: 0.45rem 0.9rem !important;
        border-radius: 999px !important;
        background: rgba(255,255,255,0.10) !important;
        border: 1px solid rgba(0,255,255,0.5) !important;
        color: #00ffff !important;
        font-weight: 800 !important;
        font-size: 0.8rem !important;
        cursor: pointer !important;
    }

    .config-mobile-info[open] {
        width: 92% !important;
        background: rgba(5,8,15,0.96) !important;
        border: 1px solid rgba(0,255,255,0.35) !important;
        border-radius: 18px !important;
        padding: 0.8rem !important;
    }

    .config-mobile-info .config-title {
        font-size: 1rem !important;
        line-height: 1.15 !important;
        margin: 0.7rem 0 0.4rem 0 !important;
    }

    .config-mobile-info .config-subtitle {
        font-size: 0.75rem !important;
        line-height: 1.25 !important;
        margin: 0 !important;
    }

    #configuratore-area {
        margin-top: 2.2rem !important;
        padding-top: 0 !important;
    }
}
/* FIX MOBILE ORDINE CONFIGURATORE */

@media (max-width: 768px) {

    #configuratore-area {
    margin-top: -5rem !important;
    padding-top: 0 !important;
}

    .pc-builder-new {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    .builder-categories {
    order: 1 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    width: 100vw !important;
    max-width: 100vw !important;
    justify-content: flex-start !important;
    gap: 0.45rem !important;
    margin: 0 0 0.25rem 0 !important;
    padding: 0.35rem 0.75rem 0.6rem 0.75rem !important;
    scrollbar-width: none !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch !important;
}

    .builder-categories::-webkit-scrollbar {
        display: none !important;
    }

    .builder-search {
        order: 2 !important;
        margin: 0 0 0.35rem 0 !important;
        padding: 0 !important;
    }

    #componentSearch {
        height: 34px !important;
        font-size: 0.82rem !important;
        padding: 0.4rem 0.7rem !important;
    }

    .component-results {
        order: 3 !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 0.6rem !important;
        margin: 0 0 0.4rem 0 !important;
        padding: 0.25rem 0 0.4rem 0 !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
    }

    .component-results::-webkit-scrollbar {
        display: none !important;
    }

    .component-card {
        flex: 0 0 135px !important;
        min-width: 135px !important;
        max-width: 135px !important;
        padding: 0.55rem !important;
        border-radius: 15px !important;
        scroll-snap-align: start !important;
    }

    .component-card img {
        width: 55px !important;
        height: 55px !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto 0.3rem auto !important;
    }

    .component-card h3,
    .component-card h4 {
        font-size: 0.72rem !important;
        line-height: 1.1 !important;
        margin-bottom: 0.25rem !important;
    }

    .component-card p,
    .component-card .specs {
        font-size: 0.64rem !important;
        line-height: 1.12 !important;
        margin-bottom: 0.3rem !important;
    }

    .component-card button {
        font-size: 0.66rem !important;
        padding: 0.4rem 0.42rem !important;
    }

    .build-summary-new {
        order: 4 !important;
        margin-top: 0.2rem !important;
        padding: 0.7rem !important;
        width: 100% !important;
    }
}
@media (max-width: 768px) {
    body > .config-mobile-info {
        position: absolute !important;
        top: 22px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 999999 !important;
        margin: 0 !important;
    }

    .component-results {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-x !important;
    }
}
.selected-build-row.row-ok strong {
    color: #20ff8a !important;
}

.selected-build-row.row-warning strong {
    color: #ffd447 !important;
}

.selected-build-row.row-error strong {
    color: #ff4d5a !important;
}@media (max-width: 768px) {
    .builder-categories {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 10px !important;
        padding: 10px 4px 14px 4px !important;
        margin-bottom: 15px !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .builder-categories::-webkit-scrollbar {
        display: none;
    }

    .builder-categories {
        scrollbar-width: none;
    }

    .category-btn {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        min-width: max-content !important;
        scroll-snap-align: start;
    }
}
.builder-categories .category-btn {
    flex: 0 0 auto !important;
    min-width: 130px !important;
    white-space: nowrap !important;
}
@media (min-width: 769px) {
  #hero {
    grid-template-columns: 0.8fr 1.9fr !important;
    gap: 2rem !important;
  }

  .home-logo-img {
    max-width: 1200px !important;
    width: 100% !important;
  }

  #services-panel {
    max-width: 520px !important;
    width: 100% !important;
    justify-self: end !important;
  }
}
@media (min-width: 769px) {
  #hero {
    grid-template-columns: 1.65fr 0.75fr !important;
    gap: 3rem !important;
    align-items: start !important;
  }

  .hero-content {
    max-width: 1000px !important;
    width: 100% !important;
  }

  .home-logo-img {
    width: 100% !important;
    max-width: 980px !important;
  }

  #services-panel {
    max-width: 460px !important;
    width: 100% !important;
    justify-self: end !important;
    padding: 1.6rem !important;
  }

  #services-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }

  #services-grid .service-box {
    min-height: 135px !important;
    padding: 1.2rem !important;
  }
}
.reviews-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.reviews-popup-overlay.active {
  display: flex;
}
.reviews-nav-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: #ffffff !important;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.reviews-google-label {
  color: #ffffff;
}

.reviews-stars {
  color: #ffd700;
  letter-spacing: 1px;
}

.reviews-score {
  color: #00e5ff;
}

.reviews-count {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.reviews-mobile-link {
  color: #ffd700 !important;
  font-weight: 800;
}
.mobile-reviews-banner {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-reviews-banner {
    display: block !important;
    width: calc(100% - 32px) !important;
    margin: 100px auto 16px !important;
    padding: 11px 12px !important;
    border: 1px solid #00e5ff !important;
    border-radius: 14px !important;
    background: rgba(0, 229, 255, 0.12) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    text-align: center !important;
    box-shadow: 0 0 14px rgba(0, 229, 255, 0.22) !important;
  }
}
.component-price.pulse-price{
    display:block !important;
    color:#35e7ff !important;
    font-size:1.8rem !important;
    font-weight:900 !important;
    text-align:center !important;
    text-shadow:0 0 5px rgba(53,231,255,.45) !important;
    animation: pricePulse 2.2s ease-in-out infinite !important;
    transform-origin:center center;
}

@keyframes pricePulse{
    0%,100%{
        transform:scale(1);
        opacity:.9;
    }
    50%{
        transform:scale(1.08);
        opacity:1;
    }
}/* Titoli sfumati pagine servizi */
.gradient-title-soft {
    background: linear-gradient(90deg, #ffffff, #00eaff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.checkout-choice .btn,
.checkout-choice a.btn {
  width: 100%;
  max-width: 330px;
  justify-content: center;
  margin-top: 12px;
}

.checkout-paypal-btn {
  margin-top: 16px !important;
  background: linear-gradient(135deg, #00eaff, #3b82f6) !important;
  box-shadow: 0 0 18px rgba(0, 234, 255, 0.35);
}

.checkout-choice + .checkout-choice {
  margin-top: 26px;
}
@media (max-width: 768px) {
  .modal-content {
    width: 92vw !important;
    max-width: 92vw !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    padding: 22px !important;
  }

  #paypal-button-container {
    width: 100% !important;
    min-height: 120px !important;
  }

  .checkout-paypal-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}
.mobile-cart-btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(0,234,255,0.75);
    color: #fff;
    text-decoration: none;
    position: absolute;
    top: 10px;
    right: 82px;
    z-index: 10000;
  }

  .mobile-cart-btn ion-icon {
    font-size: 1.55rem;
  }

  #mobileCartCount {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #ff2d55;
    color: white;
    border-radius: 999px;
    font-size: 0.7rem;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.service-cart-btn {
  position: fixed;
  top: 20px;
  right: 25px;
  z-index: 9999;
  text-decoration: none;
  color: white;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(0,234,255,0.75);
  padding: 12px 18px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .service-cart-btn {
    top: 22px;
    right: 22px;
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}
/* ========================= */
/* WoW Store Starter Build   */
/* ========================= */

.starter-builds{
    margin:70px auto;
}

.starter-title{
    text-align:center;
    margin-bottom:15px;
}

.starter-subtitle{
    text-align:center;
    max-width:900px;
    margin:0 auto 40px;
    color:#cfcfcf;
}

.starter-slider{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.starter-card{
    width:380px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    padding:25px;
    text-align:center;
    transition:.3s;
}

.starter-card:hover{
    transform:translateY(-8px);
}

.starter-card img{
    width:100%;
    max-width:260px;
    margin:auto;
    display:block;
}

.starter-price{
    font-size:2rem;
    font-weight:bold;
    color:#00e5ff;
    margin:20px 0;
}

@media(max-width:768px){

.starter-builds{
    margin:40px auto;
}

.starter-slider{
    flex-direction:column;
    align-items:center;
}

.starter-card{
    width:95%;
    max-width:380px;
}

}
/* ============================= */
/* HOME - WoW Store Starter Build */
/* ============================= */

#hero{
    display:grid;
    grid-template-columns: 1fr 380px 1fr;
    align-items:center;
    gap:2rem;
}

.hero-content{
    grid-column:1;
}

.hero-visual{
    grid-column:2;
    display:flex;
    justify-content:center;
    align-items:center;
}

#services-panel{
    grid-column:3;
}

.starter-home-card{
    position:relative;
    width:360px;
    padding:2px;
    border-radius:24px;
    background:linear-gradient(135deg, rgba(0,234,255,.9), rgba(47,124,255,.9), rgba(0,234,255,.4));
    box-shadow:0 0 35px rgba(0,234,255,.35);
    animation:starterPulse 2.8s infinite ease-in-out;
}

.starter-card-content{
    position:relative;
    z-index:2;
    background:rgba(5,8,18,.92);
    border-radius:22px;
    padding:1.4rem;
    text-align:center;
    overflow:hidden;
}

.starter-home-card h3{
    color:var(--accent-cyan);
    font-size:1.25rem;
    margin-bottom:.7rem;
}

.starter-home-subtitle{
    color:#ddd;
    font-size:.95rem;
    line-height:1.45;
    margin-bottom:.8rem;
}

.starter-home-card img{
    width:100%;
    max-width:245px;
    display:block;
    margin:.8rem auto 1rem;
    filter:drop-shadow(0 0 18px rgba(0,234,255,.35));
}

.starter-home-card h4{
    font-size:1.35rem;
    color:#fff;
    margin-bottom:.5rem;
}

.starter-home-card p{
    color:var(--text-muted);
    font-size:.92rem;
    line-height:1.45;
}

.starter-home-btn{
    width:100%;
    justify-content:center;
    margin-top:1rem;
}

@keyframes starterPulse{
    0%{
        box-shadow:0 0 18px rgba(0,234,255,.25);
        transform:scale(1);
    }
    50%{
        box-shadow:0 0 42px rgba(0,234,255,.65);
        transform:scale(1.015);
    }
    100%{
        box-shadow:0 0 18px rgba(0,234,255,.25);
        transform:scale(1);
    }
}

/* Mobile: non tocchiamo la home mobile */
@media(max-width:768px){
    #hero{
        display:block;
    }

    .hero-visual{
        display:none;
    }
}
/* ============================= */
/* HOME DESKTOP DEFINITIVA        */
/* Sinistra testo - Centro servizi - Destra Starter */
/* ============================= */

@media (min-width: 769px){

    #hero{
        display:grid !important;
        grid-template-columns: 1.25fr 0.75fr 1fr !important;
        gap:1.5rem !important;
        align-items:center !important;
        min-height:760px !important;
        padding-top:110px !important;
    }

        .hero-content{
        grid-column:1 !important;
        justify-self:center !important;
        max-width:700px !important;
        transform:translateY(-35px) scale(1.08) !important;
    }

    .hero-content > div:first-child img{
        max-width:760px !important;
    }

    #services-panel{
        grid-column:2 !important;
        grid-row:1 !important;
        width:100% !important;
        max-width:260px !important;
        justify-self:center !important;
        padding:.85rem !important;
        transform:translateY(-5px) !important;
        border:1px solid rgba(0,234,255,.25) !important;
        box-shadow:0 0 22px rgba(0,234,255,.12) !important;
        height:auto !important;
    }

    #services-panel h3{
        font-size:1.18rem !important;
        margin-bottom:.75rem !important;
        color:#fff !important;
    }

    #services-grid{
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:.45rem !important;
    }

    #services-grid .service-box{
        min-height:72px !important;
        height:72px !important;
        padding:.45rem .35rem !important;
        border-radius:12px !important;
        background:rgba(255,255,255,.055) !important;
        border:1px solid rgba(255,255,255,.16) !important;
        box-shadow:inset 0 0 0 1px rgba(0,234,255,.05) !important;
        transition:.25s ease !important;
        cursor:pointer !important;
    }

    #services-grid .service-box:hover{
        transform:translateY(-4px) scale(1.03) !important;
        border-color:rgba(0,234,255,.75) !important;
        box-shadow:0 0 20px rgba(0,234,255,.42) !important;
        background:rgba(0,234,255,.10) !important;
    }

    #services-grid .service-box ion-icon{
        font-size:1.25rem !important;
        margin-bottom:.2rem !important;
        filter:drop-shadow(0 0 8px rgba(0,234,255,.6)) !important;
    }

    #services-grid .service-box span{
        font-size:.68rem !important;
        line-height:1.05 !important;
        font-weight:800 !important;
    }

    .hero-visual{
        grid-column:3 !important;
        grid-row:1 !important;
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;
        width:100% !important;
        transform:translateY(-75px) !important;
    }

    .starter-home-card{
        position:relative !important;
        width:430px !important;
        padding:2px !important;
        border-radius:26px !important;
        background:linear-gradient(135deg, rgba(0,234,255,.95), rgba(47,124,255,.95), rgba(0,234,255,.35)) !important;
        box-shadow:0 0 38px rgba(0,234,255,.42) !important;
        animation:starterPulse 2.8s infinite ease-in-out !important;
    }

    .starter-card-content{
        background:rgba(5,8,18,.94) !important;
        border-radius:24px !important;
        padding:1.35rem !important;
        text-align:center !important;
    }

    .starter-home-card h3{
        color:var(--accent-cyan) !important;
        font-size:1.28rem !important;
        margin-bottom:.55rem !important;
    }

    .starter-home-subtitle{
        color:#ddd !important;
        font-size:.92rem !important;
        line-height:1.35 !important;
        margin-bottom:.55rem !important;
    }

    .starter-home-card img{
        width:100% !important;
        max-width:340px !important;
        display:block !important;
        margin:.45rem auto .75rem !important;
        filter:drop-shadow(0 0 20px rgba(0,234,255,.45)) !important;
    }

    .starter-home-card h4{
        font-size:1.45rem !important;
        margin-bottom:.45rem !important;
    }

    .starter-home-card p{
        font-size:.92rem !important;
        line-height:1.35 !important;
        color:var(--text-muted) !important;
    }

    .starter-home-btn{
        width:100% !important;
        justify-content:center !important;
        margin-top:.85rem !important;
    }
}

@keyframes starterPulse{
    0%{
        box-shadow:0 0 18px rgba(0,234,255,.25);
        transform:scale(1);
    }
    50%{
        box-shadow:0 0 50px rgba(0,234,255,.72);
        transform:scale(1.015);
    }
    100%{
        box-shadow:0 0 18px rgba(0,234,255,.25);
        transform:scale(1);
    }
}

/* MOBILE: non tocchiamo la home mobile */
@media(max-width:768px){
    #hero{
        display:block !important;
    }

    .hero-visual{
        display:none !important;
    }
}
/* STARTER BUILD CAROUSEL */
.starter-carousel{
    position:relative;
    width:430px;
    overflow:hidden;
}

.starter-track{
    display:flex;
    transition:transform .55s ease;
}

.starter-track .starter-home-card{
    min-width:430px !important;
    max-width:430px !important;
    flex:0 0 430px !important;
}

.starter-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:5;
    width:34px;
    height:34px;
    border-radius:50%;
    border:1px solid rgba(0,234,255,.55);
    background:rgba(5,8,18,.85);
    color:#fff;
    font-size:1.8rem;
    cursor:pointer;
    box-shadow:0 0 15px rgba(0,234,255,.35);
}

.starter-prev{
    left:8px;
}

.starter-next{
    right:8px;
}

@media(max-width:768px){
    .starter-carousel{
        display:none !important;
    }
}
/* STARTER BUILD CAROUSEL MOBILE */
@media(max-width:768px){

    .hero-visual{
        display:block !important;
        margin:25px auto 10px !important;
        width:100% !important;
    }

    .starter-carousel{
        display:block !important;
        width:100% !important;
        max-width:340px !important;
        margin:0 auto !important;
        overflow:hidden !important;
    }

    .starter-track .starter-home-card{
        min-width:340px !important;
        max-width:340px !important;
        flex:0 0 340px !important;
    }

    .starter-home-card{
        width:340px !important;
    }

    .starter-card-content{
        padding:1rem !important;
    }

    .starter-home-card img{
        max-width:250px !important;
    }

    .starter-arrow{
        width:30px !important;
        height:30px !important;
        font-size:1.5rem !important;
    }
}
/* STARTER BUILD HERO */
.starter-build-hero {
  width: 100%;
  max-width: 1180px;
  margin: 28px auto 35px;
  padding: 0 18px;
  display: none;
  position: relative;
  z-index: 5;
}

.starter-build-card {
  background: linear-gradient(135deg, rgba(0,255,210,0.12), rgba(0,170,255,0.10), rgba(8,10,22,0.96));
  border: 1px solid rgba(0,255,210,0.35);
  border-radius: 26px;
  padding: 34px 26px;
  text-align: center;
  box-shadow: 0 0 35px rgba(0,255,210,0.16);
}

.starter-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0,255,210,0.10);
  border: 1px solid rgba(0,255,210,0.35);
  color: #36ffe0;
  font-weight: 900;
  margin-bottom: 14px;
}

.starter-build-card h1 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  margin: 8px 0 12px;
  background: linear-gradient(90deg, #ffffff, #35ffe0, #00b7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.starter-build-card p {
  max-width: 780px;
  margin: 0 auto 24px;
  color: #d9faff;
  font-size: 1.08rem;
  line-height: 1.55;
}

.starter-fps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.starter-fps-grid div {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(0,255,210,0.18);
  border-radius: 18px;
  padding: 16px 10px;
}

.starter-fps-grid strong {
  display: block;
  color: #ffffff;
  margin-bottom: 6px;
}

.starter-fps-grid span {
  color: #35ffe0;
  font-weight: 900;
}

.starter-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.starter-btn.primary {
  display: none !important;
}

.starter-btn.secondary {
  border: none;
  border-radius: 18px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 950;
  cursor: pointer;
  color: #041015;
  background: linear-gradient(135deg, #ffffff, #35ffe0, #00b7ff);
  box-shadow: 0 0 22px rgba(0,255,210,0.35);
  animation: starterPulse 1.4s infinite;
}

@keyframes starterPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(0,255,210,0.30);
  }
  50% {
    transform: scale(1.045);
    box-shadow: 0 0 34px rgba(0,255,210,0.55);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(0,255,210,0.30);
  }
}

@media (max-width: 768px) {
  .starter-build-hero {
    margin-top: 95px !important;
  }

  .starter-build-card {
    padding: 34px 16px 26px;
  }

  .starter-build-card h1 {
    font-size: 2.25rem;
    line-height: 1.05;
  }

  .starter-fps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .starter-btn.secondary {
    width: 100%;
  }
}
/* FIX MOBILE - ABBASSA STARTER BUILD SOTTO HOME/CARRELLO */
@media (max-width: 768px) {
  .starter-build-hero {
    margin-top: 150px !important;
    padding-top: 0 !important;
  }
}