@charset "utf-8";

:root { --primary: #2563eb; --secondary: #3b82f6; --accent: #06b6d4; --dark: #0f0f13; --glass: rgba(255, 255, 255, 0.05); --glass-border: rgba(255, 255, 255, 0.1); --text: #ffffff; --text-gray: #a1a1aa; --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1); --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }

* { margin: 0px; padding: 0px; box-sizing: border-box; font-family: Montserrat, sans-serif; scrollbar-width: thin; scrollbar-color: var(--primary) var(--dark); }

::-webkit-scrollbar { width: 8px; }

::-webkit-scrollbar-track { background: var(--dark); }

::-webkit-scrollbar-thumb { background: linear-gradient(var(--primary), var(--secondary)); border-radius: 4px; }

body { background-color: var(--dark); color: var(--text); overflow-x: hidden; position: relative; opacity: 0; animation: 1s cubic-bezier(0.23, 1, 0.32, 1) 0s 1 normal forwards running fadeIn; }

@keyframes fadeIn { 
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.bg-blobs { position: fixed; top: 0px; left: 0px; width: 100%; height: 100%; z-index: -2; background: radial-gradient(circle at 15% 50%, rgba(37, 99, 235, 0.15), transparent 25%), radial-gradient(circle at 85% 30%, rgba(59, 130, 246, 0.15), transparent 25%); animation: 20s ease-in-out 0s infinite alternate none running blobMove; }

@keyframes blobMove { 
  0% { transform: scale(1) translate(0px, 0px); }
  100% { transform: scale(1.1) translate(-2%, -2%); }
}

.header { position: fixed; top: 0px; width: 100%; padding: 20px 5%; z-index: 1000; background: rgba(15, 15, 19, 0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); display: flex; justify-content: space-between; align-items: center; transition: var(--transition-smooth); transform: translateY(0px); }

.header.scrolled { padding: 15px 5%; background: rgba(15, 15, 19, 0.95); box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 30px; }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; transition: var(--transition-bounce); }

.logo:hover { transform: scale(1.05); }

.logo-img { width: 45px; height: 45px; border-radius: 10px; box-shadow: rgba(37, 99, 235, 0.5) 0px 0px 15px; transition: var(--transition-smooth); }

.logo:hover .logo-img { box-shadow: rgba(37, 99, 235, 0.8) 0px 0px 25px; transform: rotate(360deg); }

.logo-text { font-family: Orbitron, sans-serif; font-size: 1.4rem; font-weight: 900; text-transform: uppercase; background-image: ; background-position-x: ; background-position-y: ; background-size: ; background-repeat: ; background-attachment: ; background-origin: ; background-color: ; background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 1px; transition: var(--transition-smooth); }

.breadcrumb { padding: 100px 5% 20px; background: transparent; color: var(--text-gray); animation: 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.2s 1 normal both running slideDown; }

@keyframes slideDown { 
  0% { transform: translateY(-30px); opacity: 0; }
  100% { transform: translateY(0px); opacity: 1; }
}

.breadcrumb a { color: var(--primary); text-decoration: none; transition: var(--transition-smooth); position: relative; }

.breadcrumb a::after { content: ""; position: absolute; bottom: -2px; left: 0px; width: 0px; height: 1px; background: var(--accent); transition: var(--transition-smooth); }

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb a:hover::after { width: 100%; }

section { padding: 60px 5%; animation: 1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s 1 normal both running fadeUp; }

@keyframes fadeUp { 
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0px); opacity: 1; }
}

.section-header { text-align: center; margin-bottom: 60px; }

.section-title { font-family: Orbitron, sans-serif; font-size: 2.5rem; margin-bottom: 15px; animation: 3s ease-in-out 0s infinite normal none running glowPulse; }

@keyframes glowPulse { 
  0%, 100% { text-shadow: rgba(37, 99, 235, 0.5) 0px 0px 10px; }
  50% { text-shadow: rgba(6, 182, 212, 0.8) 0px 0px 30px; }
}

.section-desc { color: var(--text-gray); max-width: 600px; margin: 0px auto; }

.glass-card { background: rgba(30, 30, 35, 0.6); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 30px; transition: var(--transition-bounce); position: relative; overflow: hidden; }

.glass-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 50px; border-color: rgba(37, 99, 235, 0.3); }

.glass-card::before { content: ""; position: absolute; top: 0px; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); transition: 0.8s; }

.glass-card:hover::before { left: 100%; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px; background: linear-gradient(90deg, var(--primary), var(--secondary)); color: white; text-decoration: none; border-radius: 12px; font-weight: 700; font-size: 1.1rem; position: relative; overflow: hidden; transition: var(--transition-bounce); box-shadow: rgba(37, 99, 235, 0.4) 0px 10px 25px; cursor: pointer; border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; animation: 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s 1 normal both running btnAppear; }

@keyframes btnAppear { 
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.btn::before { content: ""; position: absolute; top: 0px; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); transition: 0.8s; }

.btn:hover { transform: translateY(-5px) scale(1.05); box-shadow: rgba(37, 99, 235, 0.6) 0px 20px 40px; }

.btn:hover::before { left: 100%; }

.btn-sm { padding: 12px 24px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); border-radius: 10px; color: white; text-decoration: none; transition: var(--transition-smooth); font-weight: 600; display: inline-block; position: relative; overflow: hidden; }

.btn-sm:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); box-shadow: rgba(37, 99, 235, 0.3) 0px 10px 20px; }

.product-details { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1400px; margin: 0px auto; }

.product-gallery { position: relative; border-radius: 20px; overflow: hidden; border: 2px solid var(--glass-border); background: rgba(30, 30, 35, 0.4); animation: 6s ease-in-out 0s infinite normal none running float; }

@keyframes float { 
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.gallery-container { position: relative; height: 400px; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 20px; }

.gallery-container img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 15px; transition: var(--transition-smooth); animation: 1s cubic-bezier(0.23, 1, 0.32, 1) 0s 1 normal none running zoomIn; }

@keyframes zoomIn { 
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.gallery-container img:hover { transform: scale(1.05); }

.product-info { animation: 1s cubic-bezier(0.23, 1, 0.32, 1) 0.4s 1 normal both running slideRight; }

@keyframes slideRight { 
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0px); opacity: 1; }
}

.product-info h2 { font-family: Orbitron, sans-serif; font-size: 2.5rem; margin-bottom: 20px; background-image: ; background-position-x: ; background-position-y: ; background-repeat: ; background-attachment: ; background-origin: ; background-color: ; background-clip: text; -webkit-text-fill-color: transparent; animation: 5s ease 0s infinite normal none running gradientShift; background-size: 200% 200%; }

@keyframes gradientShift { 
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.info-list { margin: 30px 0px; padding-left: 20px; }

.info-list li { color: var(--text-gray); margin-bottom: 15px; line-height: 1.6; padding-left: 10px; position: relative; transition: var(--transition-smooth); animation: 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0s 1 normal backwards running listItem; transform-origin: left center; }

@keyframes listItem { 
  0% { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 1; }
}

.info-list li:hover { color: white; transform: translateX(10px); }

.info-list li::before { content: "•"; color: var(--accent); font-size: 1.5rem; position: absolute; left: -15px; top: -2px; transition: var(--transition-smooth); }

.info-list li:hover::before { color: var(--primary); transform: scale(1.3); }

.numbered { font-weight: 700; color: var(--accent); transition: var(--transition-smooth); display: inline-block; }

.info-list li:hover .numbered { transform: scale(1.2); color: var(--primary); }

.footer { background: rgb(5, 5, 5); padding: 60px 5% 30px; border-top: 1px solid var(--glass-border); text-align: center; margin-top: 60px; animation: 1s cubic-bezier(0.23, 1, 0.32, 1) 0.8s 1 normal both running fadeUp; }

.footer-links { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }

.social-btn { width: 50px; height: 50px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; transition: var(--transition-bounce); text-decoration: none; position: relative; overflow: hidden; }

.social-btn::before { content: ""; position: absolute; top: 50%; left: 50%; width: 0px; height: 0px; border-radius: 50%; background: rgba(37, 99, 235, 0.3); transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s; }

.social-btn:hover { background: var(--primary); transform: translateY(-8px) rotate(360deg); box-shadow: rgba(37, 99, 235, 0.4) 0px 10px 25px; }

.social-btn:hover::before { width: 150px; height: 150px; }

@keyframes pulse { 
  0% { transform: scale(1); box-shadow: rgba(37, 99, 235, 0.4) 0px 10px 25px; }
  50% { transform: scale(1.08); box-shadow: rgba(37, 99, 235, 0.7) 0px 20px 35px; }
  100% { transform: scale(1); box-shadow: rgba(37, 99, 235, 0.4) 0px 10px 25px; }
}

.pulse { animation: 2s cubic-bezier(0.34, 1.56, 0.64, 1) 0s infinite normal none running pulse; }

.info-list li:nth-child(1) { animation-delay: 0.1s; }

.info-list li:nth-child(2) { animation-delay: 0.15s; }

.info-list li:nth-child(3) { animation-delay: 0.2s; }

.info-list li:nth-child(4) { animation-delay: 0.25s; }

.info-list li:nth-child(5) { animation-delay: 0.3s; }

.info-list li:nth-child(6) { animation-delay: 0.35s; }

.info-list li:nth-child(7) { animation-delay: 0.4s; }

.info-list li:nth-child(8) { animation-delay: 0.45s; }

.info-list li:nth-child(9) { animation-delay: 0.5s; }

.info-list li:nth-child(10) { animation-delay: 0.55s; }

.info-list li:nth-child(11) { animation-delay: 0.6s; }

.info-list li:nth-child(12) { animation-delay: 0.65s; }

.info-list li:nth-child(13) { animation-delay: 0.7s; }

.info-list li:nth-child(14) { animation-delay: 0.75s; }

.info-list li:nth-child(15) { animation-delay: 0.8s; }

.info-list li:nth-child(16) { animation-delay: 0.85s; }

.info-list li:nth-child(17) { animation-delay: 0.9s; }

@media (max-width: 768px) {
  .product-details { grid-template-columns: 1fr; gap: 40px; }
  .section-title { font-size: 2rem; }
  .product-info h2 { font-size: 2rem; }
  .gallery-container { height: 300px; }
}

#scrollToTop { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: 0.3s; z-index: 1001; box-shadow: rgba(37, 99, 235, 0.5) 0px 4px 15px; }

#scrollToTop.show { opacity: 1; visibility: visible; }

#scrollToTop:hover { transform: translateY(-5px); box-shadow: rgba(37, 99, 235, 0.8) 0px 8px 25px; }

.contact-copy { cursor: pointer; color: var(--accent); font-weight: 600; transition: var(--transition-smooth); position: relative; }

.contact-copy:hover { color: var(--primary); text-decoration: underline; }

.copy-tooltip { position: absolute; background: var(--primary); color: white; padding: 4px 10px; border-radius: 6px; font-size: 0.8rem; white-space: nowrap; top: -35px; left: 50%; transform: translateX(-50%); opacity: 0; transition: opacity 0.3s; pointer-events: none; }

.copy-tooltip.show { opacity: 1; }

.mobile-menu-btn { display: none; background: none; border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; color: white; font-size: 1.8rem; cursor: pointer; z-index: 1002; }

.nav-links { display: flex; gap: 25px; }

.nav-links a { color: var(--text-gray); text-decoration: none; font-weight: 500; transition: var(--transition-smooth); }

.nav-links a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .nav-links { position: fixed; top: 0px; right: -100%; width: 70%; height: 100vh; background: rgba(15, 15, 19, 0.95); backdrop-filter: blur(20px); flex-direction: column; padding: 100px 30px 30px; transition: right 0.4s; z-index: 1001; border-left: 1px solid var(--glass-border); }
  .nav-links.active { right: 0px; }
}

.theme-toggle { background: none; border: 1px solid var(--glass-border); border-radius: 30px; color: white; padding: 8px 16px; display: flex; align-items: center; gap: 8px; cursor: pointer; transition: var(--transition-smooth); font-size: 0.9rem; }

.theme-toggle:hover { border-color: var(--accent); background: rgba(37, 99, 235, 0.1); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; max-width: 1000px; margin: 0px auto; }

.step { text-align: center; background: rgba(30, 30, 35, 0.4); border-radius: 20px; padding: 30px 20px; border: 1px solid var(--glass-border); transition: var(--transition-smooth); }

.step:hover { transform: translateY(-5px); border-color: var(--accent); }

.step-number { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0px auto 15px; color: white; }