/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #2C3E50;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: #2C3E50;
}

h3 {
  font-size: 24px;
  color: #2C3E50;
}

h4 {
  font-size: 18px;
  color: #2C3E50;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #2C3E50;
}

a {
  color: #3498DB;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #667eea;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* Main Navigation */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #2C3E50;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 80%;
}

.main-nav a:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

/* CTA Button */
.cta-button,
.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  text-align: center;
}

.cta-button:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
  color: white;
}

.btn-secondary {
  background: white;
  color: #667eea;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid #667eea;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 8px 12px;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: white;
  font-weight: 600;
  font-size: 18px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
}

/* Hero Section */
.hero {
  background: white;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 20px;
  color: #555;
  max-width: 700px;
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

.trust-badges span {
  background: rgba(102, 126, 234, 0.1);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  color: #667eea;
  font-size: 14px;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #667eea;
}

/* Stats */
.stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

.stats span {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Benefits Section */
.benefits {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 300px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

.benefit-card h3 {
  color: #667eea;
  margin-bottom: 16px;
}

/* Services Section */
.services-overview,
.services-list,
.solutions-grid {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.services-overview h2,
.services-list h2,
.solutions-grid h2 {
  text-align: center;
  margin-bottom: 48px;
}

.services-grid,
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card,
.solution-category {
  background: white;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid transparent;
}

.service-card:hover,
.solution-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.3);
  border-color: #667eea;
}

.service-card h3,
.solution-category h3 {
  color: #667eea;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #764ba2;
  margin-top: auto;
}

.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-detailed {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #667eea;
}

.service-detailed:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.service-detailed h3 {
  color: #667eea;
  margin-bottom: 16px;
}

.service-detailed .price {
  margin-top: 16px;
}

/* Testimonials Section */
.testimonials {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 400px;
  max-width: 550px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.testimonial-card p {
  font-style: italic;
  color: #2C3E50;
  line-height: 1.8;
  font-size: 16px;
}

.testimonial-card strong {
  color: #667eea;
  font-weight: 700;
  font-style: normal;
  margin-top: 8px;
}

.rating {
  text-align: center;
  font-weight: 700;
  color: #667eea;
  font-size: 18px;
}

/* CTA Banner */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
}

.cta-banner h2,
.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary,
.cta-section .btn-primary {
  background: white;
  color: #667eea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary:hover,
.cta-section .btn-primary:hover {
  background: #ECF0F1;
  color: #764ba2;
}

/* Process Steps */
.service-process,
.integration-info,
.warranty-info {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-process h2,
.integration-info h2,
.warranty-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.process-steps,
.integration-features,
.warranty-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step,
.feature {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover,
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.step h3,
.feature h3 {
  color: #667eea;
  margin-bottom: 12px;
}

/* Case Studies */
.case-studies {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.case-studies h2 {
  text-align: center;
  margin-bottom: 48px;
}

.case-study {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 32px;
  border-left: 4px solid #667eea;
}

.case-study h3 {
  color: #667eea;
  margin-bottom: 16px;
}

.case-study p {
  margin-bottom: 12px;
}

.case-study .testimonial {
  font-style: italic;
  color: #2C3E50;
  padding: 16px;
  background: white;
  border-radius: 12px;
  margin-top: 16px;
  font-weight: 600;
}

/* Results Showcase */
.results-showcase,
.company-stats {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.results-showcase h2,
.company-stats h2 {
  text-align: center;
  margin-bottom: 48px;
}

.results-grid,
.stats-grid,
.reasons-grid,
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.result,
.stat,
.reason,
.trust-item {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  color: white;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.result:hover,
.stat:hover,
.reason:hover,
.trust-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.result h3,
.stat h3,
.reason h3,
.trust-item h3 {
  color: white;
  font-size: 48px;
  margin-bottom: 8px;
}

.result p,
.stat p,
.reason p,
.trust-item p {
  color: white;
  font-size: 16px;
}

/* Company Story */
.company-story,
.team-section,
.partners,
.why-choose-us,
.showroom-info {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.company-story h2,
.team-section h2,
.partners h2,
.why-choose-us h2,
.showroom-info h2 {
  text-align: center;
  margin-bottom: 32px;
}

.company-story p,
.team-section p,
.partners p,
.showroom-info p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  line-height: 1.8;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto;
}

.timeline-item {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  padding: 16px 24px;
  border-radius: 12px;
  border-left: 4px solid #667eea;
  font-weight: 600;
}

.expertise-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.expertise {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 350px;
}

.expertise h3 {
  color: #667eea;
  margin-bottom: 12px;
}

/* Contact Section */
.contact-info,
.contact-form-section,
.office-info,
.faq-contact,
.trust-indicators {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info h2,
.contact-form-section h2,
.office-info h2,
.faq-contact h2,
.trust-indicators h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.contact-card h3 {
  color: #667eea;
  margin-bottom: 16px;
}

.contact-card a {
  color: #667eea;
  font-weight: 600;
}

.form-info {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 32px;
  border-radius: 20px;
}

.form-info p {
  margin-bottom: 16px;
}

.form-info .note {
  font-style: italic;
  color: #666;
  margin-top: 24px;
  margin-bottom: 24px;
}

.office-details {
  max-width: 700px;
  margin: 32px auto;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 32px;
  border-radius: 20px;
}

.office-details p {
  margin-bottom: 12px;
}

/* FAQ */
.faq-item {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 16px;
  border-left: 4px solid #667eea;
}

.faq-item h3 {
  color: #667eea;
  margin-bottom: 12px;
}

/* Legal Content */
.legal-content {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  color: #667eea;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper h3 {
  color: #764ba2;
  margin-top: 24px;
  margin-bottom: 12px;
}

.last-update,
.effective-date {
  text-align: center;
  color: #666;
  font-style: italic;
  margin-top: 16px;
}

/* Confirmation Page */
.confirmation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.confirmation-message,
.confirmation-content,
.next-steps,
.additional-resources {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.confirmation-message h2,
.next-steps h2,
.additional-resources h2 {
  text-align: center;
  margin-bottom: 32px;
}

.timeline-step {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 16px;
  border-left: 4px solid #667eea;
}

.timeline-step h3 {
  color: #667eea;
  margin-bottom: 8px;
}

.email-confirmation {
  text-align: center;
  font-weight: 600;
  color: #667eea;
  margin-top: 32px;
  font-size: 18px;
}

.actions-grid,
.resources {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.action-card,
.resource-item {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.action-card:hover,
.resource-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.action-card h3,
.resource-item h3 {
  color: #667eea;
}

/* Footer */
footer {
  background: rgba(44, 62, 80, 0.98);
  color: white;
  padding: 60px 20px 24px;
  border-radius: 30px 30px 0 0;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-column h4 {
  color: white;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.98);
  color: white;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  backdrop-filter: blur(10px);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.5);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cookie-settings {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-settings:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #667eea;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav,
  .cta-button {
    display: none;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }

  .trust-badges {
    flex-direction: column;
  }

  .benefits-grid,
  .services-grid,
  .grid,
  .testimonials-grid,
  .process-steps,
  .integration-features,
  .warranty-features,
  .results-grid,
  .stats-grid,
  .reasons-grid,
  .trust-grid,
  .contact-grid,
  .expertise-areas,
  .actions-grid,
  .resources {
    flex-direction: column;
  }

  .benefit-card,
  .service-card,
  .solution-category,
  .testimonial-card,
  .step,
  .feature,
  .result,
  .stat,
  .reason,
  .trust-item,
  .contact-card,
  .expertise,
  .action-card,
  .resource-item {
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-column {
    min-width: 100%;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-text {
    flex: 1 1 100%;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .stats {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  h1 {
    font-size: 40px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .benefit-card,
  .service-card,
  .solution-category {
    flex: 1 1 calc(50% - 12px);
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.hero,
.benefits,
.services-overview,
.testimonials,
.cta-banner {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: rgba(102, 126, 234, 0.3);
  color: #2C3E50;
}

/* Focus Styles */
a:focus,
button:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }
}