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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1A1F3A;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A1F3A;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p {
  margin-bottom: 16px;
  color: #2E5266;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #2E5266;
}

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

a:hover {
  color: #00a8cc;
  transform: translateX(3px);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
  transition: transform 0.3s ease;
}

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

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00D9FF, #00a8cc);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #00D9FF;
  transform: none;
}

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

.header-cta {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #00D9FF, #00a8cc);
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 30px rgba(0, 217, 255, 0.6);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #1A1F3A 0%, #2E5266 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  overflow-y: auto;
  transition: right 0.4s ease;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #00D9FF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #00D9FF;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  padding: 15px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  border-left-color: #00D9FF;
  background: rgba(0, 217, 255, 0.1);
  transform: translateX(10px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, #00D9FF 0%, #00a8cc 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #00D9FF;
  border: 2px solid #00D9FF;
}

.btn-secondary:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1A1F3A 0%, #2E5266 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subheadline {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.trust-badges {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid rgba(0, 217, 255, 0.3);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(0, 217, 255, 0.2);
  border-color: #00D9FF;
  transform: translateY(-3px);
}

.price-highlight {
  font-size: 32px;
  font-weight: 700;
  color: #00D9FF;
  margin: 24px 0;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #00D9FF;
  transform: none;
}

/* Sections */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #2E5266;
  max-width: 800px;
  margin: 0 auto 40px;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* Services Grid */
.services-grid,
.services-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card,
.service-full {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(26, 31, 58, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

.service-full {
  flex: 1 1 100%;
}

.service-card:hover,
.service-full:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.2);
  border-color: #00D9FF;
}

.service-card h3,
.service-full h2 {
  color: #1A1F3A;
  margin-bottom: 16px;
  font-size: 24px;
}

.service-card p,
.service-full p {
  color: #2E5266;
  margin-bottom: 16px;
}

.service-card ul,
.service-full ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.service-card li,
.service-full li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.service-card li::before,
.service-full li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00D9FF;
  font-weight: bold;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #00D9FF;
  margin-top: 24px;
  font-family: 'Rajdhani', sans-serif;
}

.duration {
  font-size: 14px;
  color: #2E5266;
  font-style: italic;
}

/* Features Grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(26, 31, 58, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #00D9FF;
}

.feature:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.15);
}

.feature h3 {
  color: #1A1F3A;
  margin-bottom: 12px;
}

.feature p {
  color: #2E5266;
}

/* Statistics Section */
.statistics {
  background: linear-gradient(135deg, #1A1F3A 0%, #2E5266 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #00D9FF;
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 60px 20px;
}

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  box-shadow: 0 4px 20px rgba(26, 31, 58, 0.1);
  border-left: 4px solid #00D9FF;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #1A1F3A;
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 600;
  color: #2E5266;
  font-style: italic;
  font-size: 14px;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26, 31, 58, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: #00D9FF;
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.2);
}

.value-card h3 {
  color: #00D9FF;
  margin-bottom: 12px;
  font-size: 24px;
}

/* Team Section */
.team {
  text-align: center;
}

.team-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.team-stats .stat {
  background: linear-gradient(135deg, #00D9FF 0%, #00a8cc 100%);
  color: #ffffff;
  padding: 24px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

/* Audit Packages */
.audit-packages {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.package {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26, 31, 58, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
}

.package:hover {
  transform: scale(1.05);
  border-color: #00D9FF;
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
}

.package h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1A1F3A;
}

.package p:not(.price) {
  margin-bottom: 24px;
  color: #2E5266;
}

.package .price {
  font-size: 36px;
  color: #00D9FF;
  font-weight: 700;
  margin-top: 24px;
}

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(26, 31, 58, 0.08);
  border-top: 4px solid #00D9FF;
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.2);
}

.benefit h3 {
  color: #1A1F3A;
  margin-bottom: 12px;
}

/* Blog Grid */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.blog-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(26, 31, 58, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border-left: 4px solid transparent;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.2);
  border-left-color: #00D9FF;
}

.blog-card h3 {
  color: #1A1F3A;
  margin-bottom: 12px;
  font-size: 20px;
}

.blog-card p {
  color: #2E5266;
}

/* Categories Grid */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.category {
  background: linear-gradient(135deg, #00D9FF 0%, #00a8cc 100%);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
}

.category:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 30px rgba(0, 217, 255, 0.4);
}

/* Contact Grid */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26, 31, 58, 0.1);
  border-top: 4px solid #00D9FF;
}

.contact-card h3 {
  color: #00D9FF;
  margin-bottom: 16px;
}

.response-note {
  text-align: center;
  font-weight: 600;
  color: #2E5266;
  margin-top: 24px;
}

/* Office Info */
.office-info ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 24px auto;
}

.office-info li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
}

.office-info li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #00D9FF;
  font-weight: bold;
  font-size: 20px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1A1F3A 0%, #2E5266 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.guarantee {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

/* Legal Content */
.legal-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(26, 31, 58, 0.08);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #1A1F3A;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #00D9FF;
}

.legal-content p {
  color: #2E5266;
  line-height: 1.8;
  margin-bottom: 16px;
}

.last-updated {
  font-size: 14px;
  color: #2E5266;
  font-style: italic;
  margin-top: 8px;
}

/* Thank You Content */
.thank-you-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px;
}

.thank-you-content h2 {
  margin-top: 40px;
  margin-bottom: 24px;
}

.thank-you-content ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.thank-you-content li {
  padding: 12px 0;
  font-size: 18px;
}

/* Social Proof */
.social-proof {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 60px 20px;
  margin-bottom: 60px;
}

/* Footer */
footer {
  background: linear-gradient(180deg, #1A1F3A 0%, #0d1025 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

.footer-column h3 {
  color: #00D9FF;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
}

.footer-column a:hover {
  color: #00D9FF;
  transform: translateX(5px);
}

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

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #1A1F3A 0%, #0d1025 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #00D9FF 0%, #00a8cc 100%);
  color: #ffffff;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
}

.cookie-btn-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: #00D9FF;
  border: 2px solid #00D9FF;
}

.cookie-btn-settings:hover {
  background: rgba(0, 217, 255, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #1A1F3A;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-category-info h3 {
  color: #1A1F3A;
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-category-info p {
  color: #2E5266;
  font-size: 14px;
  margin: 0;
}

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

.cookie-toggle.active {
  background: #00D9FF;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  transition: left 0.3s ease;
}

.cookie-toggle.active::after {
  left: 33px;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  .service-card,
  .blog-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .package {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  /* Mobile Menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav,
  .header-cta {
    display: none;
  }
  
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subheadline { font-size: 16px; }
  
  /* Hero Section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  /* Grid Layouts */
  .service-card,
  .feature,
  .benefit,
  .blog-card,
  .package,
  .contact-card,
  .value-card {
    flex: 1 1 100%;
  }
  
  .stats-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-category {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .cookie-btn {
    width: 100%;
  }
  
  /* Section Padding */
  section {
    padding: 30px 20px;
  }
  
  .cta-section {
    padding: 60px 20px;
  }
  
  .statistics,
  .testimonials,
  .social-proof {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero h1 { font-size: 28px; }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .stat-number { font-size: 36px; }
  .stat-label { font-size: 14px; }
  
  .price { font-size: 24px; }
  .price-highlight { font-size: 28px; }
  
  .service-card,
  .feature,
  .benefit,
  .package,
  .legal-content {
    padding: 24px;
  }
  
  .mobile-menu {
    width: 90%;
  }
}

/* Animations */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .btn,
  .cta-section {
    display: none;
  }
  
  body {
    background: white;
  }
  
  * {
    box-shadow: none !important;
  }
}