/* 
 * Netqubinex - Premium Running Gear
 * Main Stylesheet
 */

/* CSS Variables */
:root {
  /* Colors */
  --netqubinex-blue-dark: #154d71;
  --netqubinex-blue-medium: #1c6ea4;
  --netqubinex-blue-light: #33a1e0;
  --netqubinex-yellow-light: #fff9af;
  --netqubinex-white: #ffffff;
  --netqubinex-gray-100: #f8f9fa;
  --netqubinex-gray-200: #e9ecef;
  --netqubinex-gray-300: #dee2e6;
  --netqubinex-gray-400: #ced4da;
  --netqubinex-gray-500: #adb5bd;
  --netqubinex-gray-600: #6c757d;
  --netqubinex-gray-700: #495057;
  --netqubinex-gray-800: #343a40;
  --netqubinex-gray-900: #212529;
  --netqubinex-black: #000000;

  /* Spacing */
  --netqubinex-space-xs: 0.25rem;
  --netqubinex-space-sm: 0.5rem;
  --netqubinex-space-md: 1rem;
  --netqubinex-space-lg: 1.5rem;
  --netqubinex-space-xl: 2rem;
  --netqubinex-space-xxl: 3rem;

  /* Typography */
  --netqubinex-font-primary: 'Montserrat', sans-serif;
  --netqubinex-font-secondary: 'Space Grotesk', sans-serif;

  /* Border Radius */
  --netqubinex-radius-sm: 4px;
  --netqubinex-radius-md: 8px;
  --netqubinex-radius-lg: 16px;

  /* Transitions */
  --netqubinex-transition: all 0.3s ease;

  /* Shadows */
  --netqubinex-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --netqubinex-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --netqubinex-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--netqubinex-font-primary);
  line-height: 1.6;
  color: var(--netqubinex-gray-800);
  background-color: var(--netqubinex-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--netqubinex-font-secondary);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--netqubinex-space-md);
  color: var(--netqubinex-blue-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--netqubinex-space-md);
}

a {
  color: var(--netqubinex-blue-medium);
  text-decoration: none;
  transition: var(--netqubinex-transition);
}

a:hover {
  color: var(--netqubinex-blue-light);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: var(--netqubinex-space-xl) 0;
}

/* Container */
.netqubinex-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--netqubinex-space-md);
}

/* Header */
.netqubinex-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: var(--netqubinex-space-md) 0;
  overflow: hidden;
}

.netqubinex-header-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: var(--netqubinex-space-sm) 0;
}

.netqubinex-header-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.netqubinex-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--netqubinex-space-md);
  position: relative;
}

/* Logo */
.netqubinex-logo {
  position: relative;
  z-index: 10;
}

.netqubinex-logo-wrapper {
  position: relative;
  display: inline-block;
  max-width: 150px;
}

.netqubinex-logo-text {
  font-family: var(--netqubinex-font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  color: var(--netqubinex-blue-dark);
}

.netqubinex-logo-highlight {
  position: relative;
  z-index: 1;
  color: var(--netqubinex-blue-light);
}

.netqubinex-logo-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--netqubinex-yellow-light);
  transform: skewX(-15deg);
  z-index: -1;
  opacity: 0.6;
}

/* Navigation */
.netqubinex-nav {
  display: flex;
  align-items: center;
}

.netqubinex-menu {
  display: flex;
  gap: var(--netqubinex-space-lg);
}

.netqubinex-menu li a {
  color: var(--netqubinex-gray-700);
  font-weight: 500;
  padding: var(--netqubinex-space-xs) var(--netqubinex-space-sm);
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.netqubinex-menu li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--netqubinex-blue-medium);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}

.netqubinex-menu li a:hover,
.netqubinex-menu li a.netqubinex-active {
  color: var(--netqubinex-blue-medium);
}

.netqubinex-menu li a:hover::before,
.netqubinex-menu li a.netqubinex-active::before {
  transform: translateX(0);
}

.netqubinex-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 2000;
}

.netqubinex-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--netqubinex-blue-medium);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.netqubinex-menu-toggle span:nth-child(1) {
  top: 0;
}

.netqubinex-menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.netqubinex-menu-toggle span:nth-child(3) {
  bottom: 0;
}

.netqubinex-menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}

.netqubinex-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.netqubinex-menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11px;
}

/* Hero Section */
main {
  padding-top: 80px; /* Height of the header */
}

.netqubinex-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--netqubinex-blue-dark) 0%,
    var(--netqubinex-blue-medium) 100%
  );
  color: var(--netqubinex-white);
  margin-top: -80px; /* Negative header height to make hero full-screen */
  padding-top: 80px; /* Add padding equal to header height */
  background-image: url(../media_strides/hero.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.netqubinex-hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.netqubinex-hero-shape-1 {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background-color: rgba(255, 249, 175, 0.05);
  border-radius: 50%;
  animation: floatAnimation 15s infinite alternate ease-in-out;
}

.netqubinex-hero-shape-2 {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 400px;
  height: 400px;
  background-color: rgba(51, 161, 224, 0.1);
  border-radius: 50%;
  animation: floatAnimation 20s infinite alternate-reverse ease-in-out;
}

.netqubinex-hero-shape-3 {
  position: absolute;
  top: 10%;
  left: 30%;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphAnimation 15s infinite alternate ease-in-out;
}

.netqubinex-hero-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  opacity: 0.3;
}

.netqubinex-hero .netqubinex-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.netqubinex-hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--netqubinex-space-xl);
}

.netqubinex-hero-content {
  flex: 1;
  max-width: 600px;
}

.netqubinex-hero h1 {
  color: var(--netqubinex-white);
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: var(--netqubinex-space-lg);
  display: flex;
  flex-direction: column;
}

.netqubinex-hero-text-1,
.netqubinex-hero-text-2,
.netqubinex-hero-text-3 {
  display: block;
  animation: fadeInUp 0.8s both;
}

.netqubinex-hero-text-1 {
  font-weight: 300;
  animation-delay: 0.2s;
}

.netqubinex-hero-text-2 {
  font-weight: 700;
  animation-delay: 0.4s;
  color: var(--netqubinex-yellow-light);
}

.netqubinex-hero-text-3 {
  font-weight: 500;
  animation-delay: 0.6s;
}

.netqubinex-subtitle {
  font-size: 1.3rem;
  margin-bottom: var(--netqubinex-space-lg);
  opacity: 0.9;
  animation: fadeInUp 0.8s 0.8s both;
}

.netqubinex-hero-actions {
  display: flex;
  gap: var(--netqubinex-space-md);
  animation: fadeInUp 0.8s 1s both;
}

.netqubinex-hero-visual {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.netqubinex-hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--netqubinex-white);
  opacity: 0.7;
  font-size: 0.8rem;
  animation: fadeInUp 0.8s 1.2s both;
}

.netqubinex-hero-scroll-indicator span:first-child {
  width: 20px;
  height: 30px;
  border: 2px solid var(--netqubinex-white);
  border-radius: 10px;
  margin-bottom: 8px;
  position: relative;
}

.netqubinex-hero-scroll-indicator span:first-child::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--netqubinex-white);
  animation: scrollAnimation 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatAnimation {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 30px);
  }
}

@keyframes morphAnimation {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

@keyframes runnerAnimation {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.8;
  }
  100% {
    transform: translateX(-50%) translateY(-15px);
    opacity: 1;
  }
}

@keyframes scrollAnimation {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  75% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

/* Buttons */
.netqubinex-btn {
  display: inline-block;
  padding: var(--netqubinex-space-sm) var(--netqubinex-space-lg);
  border-radius: var(--netqubinex-radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--netqubinex-transition);
  border: none;
}

.netqubinex-btn-primary {
  background-color: var(--netqubinex-yellow-light);
  color: var(--netqubinex-blue-dark);
}

.netqubinex-btn-primary:hover {
  background-color: var(--netqubinex-white);
  color: var(--netqubinex-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--netqubinex-shadow-md);
}

.netqubinex-btn-secondary {
  background-color: transparent;
  color: var(--netqubinex-blue-medium);
  border: 1px solid var(--netqubinex-blue-medium);
}

.netqubinex-btn-secondary:hover {
  background-color: var(--netqubinex-blue-medium);
  color: var(--netqubinex-white);
  transform: translateY(-2px);
}

/* Features Section */
.netqubinex-features {
  background-color: var(--netqubinex-gray-100);
  text-align: center;
}

.netqubinex-features h2 {
  margin-bottom: var(--netqubinex-space-xl);
}

.netqubinex-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--netqubinex-space-lg);
}

.netqubinex-feature {
  padding: var(--netqubinex-space-lg);
  background-color: var(--netqubinex-white);
  border-radius: var(--netqubinex-radius-md);
  box-shadow: var(--netqubinex-shadow-sm);
  transition: var(--netqubinex-transition);
}

.netqubinex-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--netqubinex-shadow-md);
}

.netqubinex-feature i {
  font-size: 2.5rem;
  color: var(--netqubinex-blue-light);
  margin-bottom: var(--netqubinex-space-md);
}

/* Latest Collection */
.netqubinex-latest {
  text-align: center;
}

.netqubinex-latest h2 {
  margin-bottom: var(--netqubinex-space-xl);
}

.netqubinex-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--netqubinex-space-lg);
}

.netqubinex-product {
  background-color: var(--netqubinex-white);
  border-radius: var(--netqubinex-radius-md);
  overflow: hidden;
  transition: var(--netqubinex-transition);
  box-shadow: var(--netqubinex-shadow-sm);
}

.netqubinex-product:hover {
  transform: translateY(-5px);
  box-shadow: var(--netqubinex-shadow-md);
}

.netqubinex-product-img {
  height: 200px;
  overflow: hidden;
}

.netqubinex-placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--netqubinex-blue-light),
    var(--netqubinex-blue-medium)
  );
}

.netqubinex-product h3 {
  padding: var(--netqubinex-space-md) var(--netqubinex-space-md) 0;
  font-size: 1.25rem;
}

.netqubinex-product p {
  padding: 0 var(--netqubinex-space-md);
  color: var(--netqubinex-gray-600);
}

.netqubinex-product .netqubinex-btn {
  margin: 0 var(--netqubinex-space-md) var(--netqubinex-space-md);
}

/* Testimonials */
.netqubinex-testimonials {
  background-color: var(--netqubinex-gray-100);
  text-align: center;
}

.netqubinex-testimonials h2 {
  margin-bottom: var(--netqubinex-space-xl);
}

.netqubinex-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--netqubinex-space-lg);
}

.netqubinex-testimonial {
  background-color: var(--netqubinex-white);
  border-radius: var(--netqubinex-radius-md);
  padding: var(--netqubinex-space-lg);
  box-shadow: var(--netqubinex-shadow-sm);
}

.netqubinex-testimonial-content p {
  font-style: italic;
  color: var(--netqubinex-gray-700);
}

.netqubinex-testimonial-author {
  margin-top: var(--netqubinex-space-md);
  color: var(--netqubinex-gray-600);
  font-weight: 600;
}

/* CTA Section */
.netqubinex-cta {
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--netqubinex-blue-light),
    var(--netqubinex-blue-medium)
  );
  color: var(--netqubinex-white);
  padding: var(--netqubinex-space-xl) 0;
}

.netqubinex-cta h2 {
  color: var(--netqubinex-white);
}

.netqubinex-cta p {
  margin-bottom: var(--netqubinex-space-lg);
  font-size: 1.1rem;
}

/* Footer */
.netqubinex-footer {
  background-color: var(--netqubinex-blue-dark);
  color: var(--netqubinex-white);
  padding: var(--netqubinex-space-lg) 0;
  font-size: 0.9rem;
}

.netqubinex-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--netqubinex-space-md);
}

.netqubinex-footer-info {
  flex: 1;
  min-width: 300px;
}

.netqubinex-footer-info p {
  margin-bottom: var(--netqubinex-space-xs);
}

.netqubinex-footer-links {
  display: flex;
  gap: var(--netqubinex-space-lg);
  flex-wrap: wrap;
}

.netqubinex-footer-links a {
  color: var(--netqubinex-gray-300);
  white-space: nowrap;
}

.netqubinex-footer-links a:hover {
  color: var(--netqubinex-white);
}

@media (max-width: 768px) {
  .netqubinex-footer-content {
    flex-direction: column;
    gap: var(--netqubinex-space-md);
    text-align: center;
  }

  .netqubinex-footer-links {
    justify-content: center;
  }
}

/* Privacy Popup */
.netqubinex-privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--netqubinex-blue-dark);
  color: var(--netqubinex-white);
  padding: var(--netqubinex-space-lg);
  z-index: 9999;
  display: none;
}

.netqubinex-privacy-popup.show {
  display: block;
}

.netqubinex-privacy-content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.netqubinex-privacy-content p {
  margin-bottom: 0;
  margin-right: var(--netqubinex-space-md);
  color: #000000;
}

/* Contact Page */
.netqubinex-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--netqubinex-space-xl);
}

.netqubinex-contact-info {
  background: linear-gradient(
    135deg,
    var(--netqubinex-blue-medium),
    var(--netqubinex-blue-dark)
  );
  color: var(--netqubinex-white);
  padding: var(--netqubinex-space-xl);
  border-radius: var(--netqubinex-radius-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.netqubinex-contact-info h2 {
  color: var(--netqubinex-white);
}

.netqubinex-contact-details {
  margin-top: var(--netqubinex-space-lg);
}

.netqubinex-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--netqubinex-space-md);
}

.netqubinex-contact-item i {
  margin-right: var(--netqubinex-space-md);
  font-size: 1.25rem;
}

.netqubinex-map {
  height: 250px;
  margin-top: var(--netqubinex-space-lg);
  border-radius: var(--netqubinex-radius-sm);
  overflow: hidden;
}

.netqubinex-contact-form {
  padding: var(--netqubinex-space-xl);
  background-color: var(--netqubinex-white);
  border-radius: var(--netqubinex-radius-md);
  box-shadow: var(--netqubinex-shadow-md);
}

.netqubinex-input-group {
  margin-bottom: var(--netqubinex-space-md);
}

.netqubinex-label {
  display: block;
  margin-bottom: var(--netqubinex-space-xs);
  font-weight: 500;
}

.netqubinex-input,
.netqubinex-textarea {
  width: 100%;
  padding: var(--netqubinex-space-sm);
  border: 1px solid var(--netqubinex-gray-300);
  border-radius: var(--netqubinex-radius-sm);
  font-family: var(--netqubinex-font-primary);
  transition: var(--netqubinex-transition);
}

.netqubinex-input:focus,
.netqubinex-textarea:focus {
  outline: none;
  border-color: var(--netqubinex-blue-medium);
  box-shadow: 0 0 0 2px rgba(28, 110, 164, 0.2);
}

.netqubinex-textarea {
  min-height: 150px;
  resize: vertical;
}

/* 404 Page */
.netqubinex-404 {
  text-align: center;
  padding: var(--netqubinex-space-xxl) 0;
}

.netqubinex-404 h1 {
  font-size: 6rem;
  margin-bottom: var(--netqubinex-space-md);
  color: var(--netqubinex-blue-light);
}

.netqubinex-404 p {
  font-size: 1.2rem;
  margin-bottom: var(--netqubinex-space-lg);
}

/* Gear Showcase */
.netqubinex-gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--netqubinex-space-lg);
}

.netqubinex-gear-item {
  background-color: var(--netqubinex-white);
  border-radius: var(--netqubinex-radius-md);
  overflow: hidden;
  box-shadow: var(--netqubinex-shadow-sm);
  transition: var(--netqubinex-transition);
}

.netqubinex-gear-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--netqubinex-shadow-md);
}

.netqubinex-gear-image {
  height: 250px;
  background: linear-gradient(
    135deg,
    var(--netqubinex-blue-light),
    var(--netqubinex-blue-medium)
  );
}

.netqubinex-gear-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.netqubinex-gear-content {
  padding: var(--netqubinex-space-lg);
}

.netqubinex-gear-content h3 {
  margin-bottom: var(--netqubinex-space-sm);
}

.netqubinex-gear-features {
  margin: var(--netqubinex-space-md) 0;
}

.netqubinex-gear-feature {
  display: flex;
  align-items: center;
  margin-bottom: var(--netqubinex-space-xs);
}

.netqubinex-gear-feature i {
  color: var(--netqubinex-blue-medium);
  margin-right: var(--netqubinex-space-sm);
  font-size: 0.9rem;
}

/* Privacy Page */
.netqubinex-privacy-content {
  background-color: var(--netqubinex-white);
  border-radius: var(--netqubinex-radius-md);
  padding: var(--netqubinex-space-xl);
  box-shadow: var(--netqubinex-shadow-sm);
}

.netqubinex-privacy-section {
  margin-bottom: var(--netqubinex-space-xl);
}

.netqubinex-privacy-section h3 {
  border-bottom: 1px solid var(--netqubinex-gray-200);
  padding-bottom: var(--netqubinex-space-sm);
  margin-bottom: var(--netqubinex-space-md);
}

/* Thanks Page */
.netqubinex-thanks {
  text-align: center;
  padding: var(--netqubinex-space-xxl) 0;
}

.netqubinex-thanks i {
  font-size: 4rem;
  color: var(--netqubinex-blue-medium);
  margin-bottom: var(--netqubinex-space-lg);
}

.netqubinex-thanks h1 {
  margin-bottom: var(--netqubinex-space-md);
}

.netqubinex-thanks p {
  font-size: 1.2rem;
  margin-bottom: var(--netqubinex-space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Media Queries */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .netqubinex-hero-split {
    flex-direction: column;
  }

  .netqubinex-hero-content {
    text-align: center;
    max-width: 100%;
  }

  .netqubinex-hero h1 {
    font-size: 2.5rem;
  }

  .netqubinex-hero-text-1,
  .netqubinex-hero-text-2,
  .netqubinex-hero-text-3 {
    display: inline;
    margin-right: 0.5rem;
  }

  .netqubinex-hero-actions {
    justify-content: center;
  }

  .netqubinex-hero-visual {
    max-width: 100%;
    height: 250px;
  }

  .netqubinex-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--netqubinex-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--netqubinex-transition);
    box-shadow: var(--netqubinex-shadow-lg);
    z-index: 1001;
  }

  .netqubinex-menu.open {
    right: 0;
  }

  .netqubinex-menu li {
    width: 100%;
    text-align: center;
  }

  .netqubinex-menu li a {
    display: block;
    padding: var(--netqubinex-space-md);
  }

  .netqubinex-menu-toggle {
    display: block;
    z-index: 1002;
  }

  .netqubinex-footer-content {
    flex-direction: column;
    gap: var(--netqubinex-space-md);
    text-align: center;
  }

  .netqubinex-footer-links {
    justify-content: center;
  }

  .netqubinex-privacy-content {
    flex-direction: column;
    gap: var(--netqubinex-space-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .netqubinex-logo {
    font-size: 1.5rem;
  }

  .netqubinex-hero {
    padding: var(--netqubinex-space-xl) 0;
  }

  .netqubinex-hero h1 {
    font-size: 2rem;
  }

  .netqubinex-404 h1 {
    font-size: 4rem;
  }

  section {
    padding: var(--netqubinex-space-lg) 0;
  }

  .netqubinex-feature,
  .netqubinex-testimonial,
  .netqubinex-product {
    padding: var(--netqubinex-space-md);
  }
}
