:root {
  --primary-yellow: #FFD700;
  --primary-gold: #FFA500;
  --neon-green: #39FF14;
  --lime-green: #9EFF00;
  --dark-bg: #0a0a0a;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --light-gray: #3a3a3a;
  --text-white: #ffffff;
  --text-light: #b0b0b0;
  --accent-orange: #FF6B35;
  --accent-cyan: #00d4ff;
}

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

html {
  scroll-behavior: smooth;
}

body.dark-theme {
  font-family: 'Rajdhani', 'Roboto', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.header-dark {
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-gray) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary-gold);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.nav-wrapper-dark {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-section {
  display: flex;
  align-items: center;
  padding-left: 0;
  flex-shrink: 0;
  gap: 25px;
  order: 1;
}

.logo-img {
  height: 70px;
  width: auto;
  filter: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.client-access-link {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.client-access-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.nav-dark {
  display: flex;
  gap: 40px;
  align-items: center;
  order: 2;
  flex: 1;
}

.client-access-link {
  order: 3;
  margin-left: auto;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  background: transparent;
  border: none;
  order: 2;
}

.hamburger-menu span {
  width: 30px;
  height: 3px;
  background: var(--primary-yellow);
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-8px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-8px, -6px);
}

.nav-link-dark {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 10px 0;
  position: relative;
  font-family: 'Orbitron', sans-serif;
}

.nav-link-dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-yellow), var(--neon-green));
  transition: width 0.3s ease;
}

.nav-link-dark:hover::after,
.nav-link-dark.active::after {
  width: 100%;
}

.nav-link-dark:hover,
.nav-link-dark.active {
  color: var(--primary-yellow);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.testimonials-grid {
  grid-template-columns: repeat(4, 1fr);
}

.client-gallery {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.client-gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(57, 255, 20, 0.2);
  border: 3px solid rgba(57, 255, 20, 0.3);
  flex: 0 0 auto;
}

.client-gallery-item-alt {
  box-shadow: 0 15px 40px rgba(255, 165, 0, 0.2);
  border: 3px solid rgba(255, 165, 0, 0.3);
}

.client-gallery-item img {
  width: 550px;
  height: auto;
  display: block;
  max-width: 100%;
}

.hero-modern {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-gray) 50%, var(--medium-gray) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(57, 255, 20, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content-modern {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}

.hero-badge .text-gradient {
  font-size: 28px;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 4px;
}

.hero-title-modern {
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.1;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 2px;
}

.text-white {
  color: var(--text-white);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--neon-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
}

.hero-subtitle-modern {
  font-size: 28px;
  color: var(--text-light);
  margin-bottom: 60px;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-item-hero {
  text-align: center;
}

.stat-number-hero {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-yellow);
  margin-bottom: 10px;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-label-hero {
  font-size: 16px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.cards-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  grid-template-rows: repeat(2, auto);
}

.feature-card {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  min-height: 300px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.card-large {
  grid-row: span 2;
  min-height: auto;
}

.card-image {
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.card-large .card-image {
  min-height: 630px;
}

.card-content {
  position: relative;
  z-index: 2;
}

.card-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text-white);
  line-height: 1.2;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.card-title-small {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-white);
  font-family: 'Orbitron', sans-serif;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.card-description {
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.card-description-small {
  font-size: 17px;
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.5;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.btn-card {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--primary-gold));
  color: var(--dark-bg);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.btn-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, var(--neon-green), var(--lime-green));
}

.btn-card-small {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--primary-gold));
  color: var(--dark-bg);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-card-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, var(--neon-green), var(--lime-green));
}

.info-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.info-card {
  background: linear-gradient(135deg, var(--dark-gray), var(--medium-gray));
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--primary-yellow);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.info-icon {
  font-size: 48px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.info-card h4 {
  font-size: 22px;
  color: var(--primary-yellow);
  margin-bottom: 15px;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
}

.info-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, var(--medium-gray) 0%, var(--dark-gray) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text-white);
  font-family: 'Orbitron', sans-serif;
}

.cta-text {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-modern {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--primary-gold));
  color: var(--dark-bg);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  font-family: 'Orbitron', sans-serif;
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, var(--neon-green), var(--lime-green));
}

.btn-secondary-modern {
  display: inline-block;
  padding: 18px 45px;
  background: transparent;
  color: var(--text-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 3px solid var(--primary-yellow);
  transition: all 0.3s ease;
  font-family: 'Orbitron', sans-serif;
}

.btn-secondary-modern:hover {
  background: var(--primary-yellow);
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.footer-dark {
  background: var(--dark-bg);
  border-top: 2px solid var(--primary-gold);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  filter: brightness(0.9) contrast(1.1) drop-shadow(0 0 10px rgba(255, 215, 0, 0.2));
  background: rgba(255, 255, 255, 0.03);
  padding: 5px;
  border-radius: 10px;
}

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

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

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

.footer-info {
  text-align: right;
  color: var(--text-light);
  font-size: 14px;
}

.footer-info p {
  margin: 5px 0;
}

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

  .card-large {
    grid-row: span 1;
  }

  .card-large .card-image {
    min-height: 400px;
  }
}

.page-hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--medium-gray) 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.page-subtitle {
  font-size: 24px;
  color: var(--text-light);
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.products-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

.products-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.product-card-page {
  background: linear-gradient(135deg, var(--dark-gray), var(--medium-gray));
  border-radius: 20px;
  padding: 40px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-card-page:hover {
  border-color: var(--primary-yellow);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.product-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--light-gray);
}

.product-icon-large {
  font-size: 64px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
}

.product-header h2 {
  font-size: 28px;
  color: var(--primary-yellow);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.product-body {
  text-align: left;
}

.product-description {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.product-features-list {
  list-style: none;
  padding: 0;
}

.product-features-list li {
  color: var(--text-white);
  margin-bottom: 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-features-list .check {
  color: var(--neon-green);
  font-size: 20px;
  font-weight: 700;
}

.content-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

.content-grid {
  max-width: 1000px;
  margin: 0 auto;
}

.content-main {
  color: var(--text-white);
}

.content-main p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

.section-heading {
  font-size: 32px;
  color: var(--primary-yellow);
  margin-bottom: 25px;
  margin-top: 50px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.section-heading:first-child {
  margin-top: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.benefit-item {
  background: linear-gradient(135deg, var(--dark-gray), var(--medium-gray));
  padding: 35px;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: var(--primary-yellow);
  transform: translateY(-3px);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.benefit-item h3 {
  font-size: 20px;
  color: var(--primary-yellow);
  margin-bottom: 15px;
  font-weight: 700;
}

.benefit-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.sectors-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.sectors-list li {
  font-size: 17px;
  color: var(--text-white);
  margin-bottom: 15px;
  padding-left: 10px;
}

.contact-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

.contact-grid-page {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info-box,
.contact-form-box {
  background: linear-gradient(135deg, var(--dark-gray), var(--medium-gray));
  padding: 50px;
  border-radius: 20px;
  border: 2px solid var(--light-gray);
}

.contact-item-page {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.contact-icon-page {
  font-size: 40px;
  min-width: 50px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.2));
}

.contact-details h3 {
  font-size: 18px;
  color: var(--primary-yellow);
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-details p {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.contact-form-page {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group-page {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group-page label {
  font-size: 15px;
  color: var(--text-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group-page input,
.form-group-page textarea,
.form-group-page select {
  padding: 15px 20px;
  background: var(--dark-bg);
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  color: var(--text-white);
  font-size: 16px;
  font-family: 'Rajdhani', sans-serif;
  transition: all 0.3s ease;
}

.form-group-page input:focus,
.form-group-page textarea:focus,
.form-group-page select:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

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

.contact-form-page button {
  margin-top: 15px;
  border: none;
  cursor: pointer;
}

.contact-quick-section {
  background: var(--dark-gray);
  padding: 80px 0;
}

.section-heading-center {
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-yellow);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

.contact-quick-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-quick-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-quick-icon {
  font-size: 32px;
  min-width: 40px;
}

.contact-quick-item strong {
  display: block;
  color: var(--primary-yellow);
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
}

.contact-quick-item p {
  color: var(--text-light);
  margin: 0;
  font-size: 15px;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-facebook:hover {
  background: rgba(24, 119, 242, 0.1);
  border-color: #1877F2;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.social-instagram:hover {
  background: linear-gradient(135deg, rgba(254, 213, 118, 0.1), rgba(188, 48, 129, 0.1));
  border-color: #F47133;
  box-shadow: 0 8px 20px rgba(244, 113, 51, 0.3);
}

.social-x:hover {
  background: rgba(0, 0, 0, 0.3);
  border-color: #666;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  justify-content: flex-end;
}

.footer-social a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary-yellow);
}

.map-section {
  background: var(--dark-bg);
  padding: 80px 0;
}

@media (max-width: 1024px) {
  .contact-grid-page {
    grid-template-columns: 1fr;
  }

  .contact-quick-grid {
    grid-template-columns: 1fr;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container-fluid {
    padding: 0 20px;
  }

  .nav-wrapper-dark {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
  }

  .logo-section {
    order: 1;
    flex-shrink: 0;
  }

  .hamburger-menu {
    display: flex;
    order: 2;
    margin-left: auto;
    flex-shrink: 0;
  }

  .client-access-link {
    order: 3;
    margin-left: auto;
    font-size: 13px;
    padding: 8px 12px;
    flex-shrink: 0;
  }

  .nav-dark {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--dark-bg) 100%);
    flex-direction: column;
    gap: 0;
    text-align: left;
    padding: 100px 30px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    order: 999;
    flex: none;
  }

  .nav-dark.active {
    right: 0;
  }

  .nav-link-dark {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    font-size: 18px;
  }

  .nav-link-dark:last-child {
    border-bottom: none;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    backdrop-filter: blur(2px);
  }

  .mobile-overlay.active {
    display: block;
  }

  .logo-img {
    height: 60px;
  }

  .hero-title-modern {
    font-size: 42px;
  }

  .hero-subtitle-modern {
    font-size: 18px;
  }

  .hero-stats {
    gap: 40px;
  }

  .stat-number-hero {
    font-size: 36px;
  }

  .info-cards-row {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-text {
    font-size: 16px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-info {
    text-align: center;
  }

  .page-title {
    font-size: 38px;
  }

  .products-grid-page {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .card-large {
    grid-row: span 1;
    min-height: 300px;
  }

  .feature-card {
    min-height: 250px;
  }

  .card-image {
    min-height: 250px;
  }

  .card-large .card-image {
    min-height: 300px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 30px;
  }

  .client-gallery {
    flex-direction: column;
    gap: 20px;
  }

  .client-gallery-item img {
    width: 100%;
  }
}
