:root {
  color-scheme: dark;
  --bg: #0a0a0f;
  --bg-secondary: #0f0f1a;
  --card: #151520;
  --card-hover: #1a1a2e;
  --muted: rgba(255, 255, 255, 0.6);
  --border: rgba(100, 200, 255, 0.15);
  --accent: #00d4ff;
  --accent-2: #ff006e;
  --accent-3: #8338ec;
  --accent-4: #ffbe0b;
  --neon-blue: #00f5ff;
  --neon-pink: #ff006e;
  --neon-purple: #8338ec;
  --radius: 16px;
  --font-primary: "Rajdhani", "Segoe UI", system-ui, sans-serif;
  --font-display: "Orbitron", "Rajdhani", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--bg);
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(131, 56, 236, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0f 0%, #0f0f1a 100%);
  animation: bgPulse 20s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Particle Effect */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.2rem clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.nav__brand::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--neon-blue);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
  50% { transform: translateY(-50%) scale(1.2); opacity: 0.7; }
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.3s ease;
}

.nav__links a:hover {
  color: #fff;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  gap: 1rem;
}

/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
  text-decoration: none;
  display: inline-block;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.btn-secondary:hover {
  background: var(--accent);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem clamp(20px, 5vw, 80px) 3rem;
  z-index: 2;
}

.hero__content {
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--accent);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
  50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.6); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 50%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section */
.section {
  position: relative;
  padding: 3rem clamp(20px, 5vw, 80px);
  z-index: 2;
}

.section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.section__eyebrow {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 0, 110, 0.1);
  border: 1px solid var(--accent-2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 1200px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 0, 110, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.card:hover::before {
  opacity: 1;
}

.card__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.3rem 0.8rem;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 3;
  text-transform: uppercase;
  white-space: nowrap;
}

.card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0;
}

.card__features {
  list-style: none;
  margin: 1.5rem 0;
}

.card__features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--muted);
}

.card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Product Card */
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.product-card:hover::before {
  left: 100%;
}

.product-card > *:not(.card__badge) {
  position: relative;
  z-index: 2;
}

.product-card__category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.8rem 0;
}

.product-description {
  margin: 0;
  padding: 0;
  min-height: auto;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  grid-auto-flow: row;
}

@media (max-width: 1600px) {
  .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.video-card__thumb {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 110, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-card__thumb::before {
  content: '';
  position: absolute;
  font-size: 4rem;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
  z-index: 2;
}

.video-card__content {
  padding: 1.5rem;
}

.video-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.video-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  position: relative;
  padding: 4rem clamp(20px, 5vw, 80px);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  z-index: 2;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer__section h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__section p,
.footer__section a {
  color: var(--muted);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer__section a:hover {
  color: var(--accent);
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.cta {
  text-align: center;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Hamburger Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.nav__toggle span {
  width: 25px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
}

.nav__toggle--open span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav__toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 1024px) {
  .nav__cta {
    gap: 0.5rem;
  }
  
  .nav__cta .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem clamp(20px, 5vw, 60px) 1rem;
  }
  
  .section {
    padding: 4rem clamp(20px, 5vw, 60px);
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }
  
  .nav__brand {
    font-size: 1.2rem;
  }
  
  .nav__toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }
  
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  }
  
  .nav__links--open {
    display: flex;
  }
  
  .nav__links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav__links a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .nav__cta {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
    justify-content: flex-end;
  }
  
  .nav__cta .btn-primary {
    display: none !important;
  }
  
  .nav__cta .btn-secondary {
    display: inline-block;
  }
  
  .hero {
    min-height: auto;
    padding: 1.5rem 1.5rem 0.5rem;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    margin-bottom: 0.8rem;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .hero__cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero__cta .btn {
    width: 100%;
    padding: 1rem 2rem;
  }
  
  .hero__stats {
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
  }
  
  .stat__number {
    font-size: 2rem;
  }
  
  .stat__label {
    font-size: 0.8rem;
  }
  
  .section {
    padding: 1.5rem 1.5rem;
  }
  
  .section[style*="padding-top: 4rem"] {
    padding-top: 1.5rem !important;
  }
  
  .section[style*="padding-top: 2rem"] {
    padding-top: 1rem !important;
  }
  
  .section__title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }
  
  .section__subtitle {
    font-size: 1rem;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-card {
    padding: 1.5rem;
  }
  
  .product-card__name {
    font-size: 1.3rem;
  }
  
  .product-card__price {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .footer {
    padding: 3rem 1.5rem;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 0.8rem 1rem;
  }
  
  .nav__brand {
    font-size: 1rem;
    letter-spacing: 1px;
  }
  
  .hero {
    min-height: auto;
    padding: 1rem 1rem 0.5rem;
  }
  
  .hero__badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 0.8rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }
  
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }
  
  .hero__stats {
    margin-top: 0.8rem;
    gap: 1rem;
  }
  
  .section {
    padding: 2rem 1rem;
  }
  
  .section__eyebrow {
    font-size: 0.7rem;
    padding: 0.3rem 1rem;
  }
  
  .section__title {
    font-size: 1.8rem;
  }
  
  .section__subtitle {
    font-size: 0.95rem;
  }
  
  .product-card {
    padding: 1.2rem;
  }
  
  .product-card__image {
    height: 150px !important;
    margin-bottom: 0.8rem !important;
  }
  
  .product-card__name {
    font-size: 1.2rem;
  }
  
  .product-card__price {
    font-size: 1.6rem;
  }
  
  .card__features {
    font-size: 0.9rem;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .video-card__thumb {
    height: 180px;
  }
  
  .video-card__content {
    padding: 1rem;
  }
  
  .video-card h3 {
    font-size: 1.1rem;
  }
  
  .stat__number {
    font-size: 1.8rem;
  }
  
  .stat__label {
    font-size: 0.75rem;
  }
  
  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* Product Detail Page Mobile */
@media (max-width: 768px) {
  .section[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  
  section .section > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  section .section > div[style*="grid-template-columns: 1fr 1fr"] > div:first-child {
    order: 1;
  }
  
  section .section > div[style*="grid-template-columns: 1fr 1fr"] > div:last-child {
    order: 2;
  }
  
  section h1[style*="font-size: 2.5rem"] {
    font-size: 1.8rem !important;
  }
  
  section .product-card__price[style*="font-size: 3rem"] {
    font-size: 2rem !important;
  }
  
  section h2[style*="font-size: 2rem"] {
    font-size: 1.5rem !important;
  }
  
  section div[style*="min-height: 400px"] {
    min-height: 250px !important;
  }
  
  section div[style*="min-height: 300px"] {
    min-height: auto !important;
    padding: 1.5rem !important;
  }
}

/* Contact Page Mobile */
@media (max-width: 768px) {
  section[style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  
  .contact-card {
    width: 100% !important;
  }
  
  .hero__cta[style*="flex-wrap: wrap"] {
    flex-direction: column !important;
  }
  
  .hero__cta[style*="flex-wrap: wrap"] .btn {
    width: 100% !important;
    min-width: auto !important;
  }
}

/* Products CTA Button */
.products-cta-btn {
  position: relative;
}

.products-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.products-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.8), 0 0 60px rgba(0, 212, 255, 0.6), inset 0 0 30px rgba(0, 212, 255, 0.2);
  border-color: #00f5ff;
}

.products-cta-btn:hover::before {
  left: 100%;
}

@media (max-width: 768px) {
  .products-cta-btn {
    padding: 1rem 3rem !important;
    min-width: 300px !important;
    font-size: 0.9rem !important;
    letter-spacing: 1px !important;
  }
}

@media (max-width: 480px) {
  .products-cta-btn {
    padding: 0.9rem 2rem !important;
    min-width: 250px !important;
    font-size: 0.85rem !important;
  }
}
