/* 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, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1E293B;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* Typography - Minimalist Design */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1E293B;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

/* Header - Clean & Minimal */
header {
  background-color: #FFFFFF;
  padding: 20px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

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

header img {
  height: 40px;
  width: auto;
}

/* Navigation */
.main-nav {
  display: none;
}

.main-nav a {
  color: #1E293B;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  margin: 0 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #0A7AFF;
  background-color: #F8FAFC;
}

/* CTA Button */
.cta-button,
.btn-primary {
  background-color: #0A7AFF;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.cta-button:hover,
.btn-primary:hover {
  background-color: #0056B3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 122, 255, 0.2);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #0A7AFF;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #0A7AFF;
  cursor: pointer;
  text-align: center;
}

.btn-secondary:hover {
  background-color: #0A7AFF;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-link {
  color: #0A7AFF;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: #0056B3;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0A7AFF;
  color: #FFFFFF;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background-color: #0056B3;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

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

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 32px;
  color: #1E293B;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.mobile-nav a {
  color: #1E293B;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #F8FAFC;
  color: #0A7AFF;
}

/* Hero Section - Minimalist */
.hero {
  background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin-bottom: 24px;
  color: #1E293B;
}

.hero-subheadline {
  font-size: 18px;
  color: #64748B;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

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

.trust-indicators span {
  color: #475569;
  font-size: 14px;
  font-weight: 500;
}

/* Page Hero */
.page-hero {
  background-color: #F8FAFC;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero.urgent {
  background: linear-gradient(135deg, #FF6B35 0%, #C73E0F 100%);
  color: #FFFFFF;
}

.page-hero.urgent h1,
.page-hero.urgent p {
  color: #FFFFFF;
}

.express-badge {
  display: inline-block;
  background-color: #FFFFFF;
  color: #FF6B35;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

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

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

/* Service Grid - Flexbox Only */
.service-grid,
.benefits-grid,
.category-grid,
.trust-grid,
.guarantee-grid,
.values-grid,
.contact-grid,
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

/* Cards - Minimalist Design */
.service-card,
.benefit-item,
.category-card,
.trust-item,
.guarantee-item,
.value-item,
.contact-card,
.testimonial-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 300px;
  max-width: 360px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.service-card:hover,
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #0A7AFF;
}

.service-card img,
.benefit-item img,
.category-card img,
.trust-item img,
.guarantee-item img,
.value-item img,
.contact-card img {
  width: 48px;
  height: 48px;
}

.service-card h3,
.benefit-item h3,
.category-card h3,
.trust-item h3,
.guarantee-item h3,
.value-item h3,
.contact-card h3 {
  margin-bottom: 8px;
}

.service-card p,
.benefit-item p,
.category-card p,
.trust-item p,
.guarantee-item p,
.value-item p,
.contact-card p {
  color: #64748B;
  font-size: 14px;
  flex-grow: 1;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #0A7AFF;
  display: block;
  margin-top: 8px;
}

.duration {
  font-size: 14px;
  color: #64748B;
  display: block;
  margin-top: 4px;
}

/* Testimonials - High Contrast for Readability */
.testimonial-card {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.testimonial-card p {
  color: #1E293B;
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
}

.customer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.customer-info strong {
  color: #1E293B;
  font-weight: 600;
  font-size: 16px;
}

.customer-info span {
  color: #64748B;
  font-size: 14px;
}

.rating {
  color: #FF6B35;
  font-size: 18px;
  margin-top: 4px;
}

/* Text Sections */
.text-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-section h2,
.text-section h3 {
  margin-bottom: 16px;
  margin-top: 32px;
}

.text-section h2:first-child,
.text-section h3:first-child {
  margin-top: 0;
}

.text-section ul,
.text-section ol {
  margin: 16px 0;
  padding-left: 20px;
}

.text-section li {
  margin-bottom: 8px;
  color: #475569;
  line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.process-step {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #0A7AFF;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  color: #64748B;
  font-size: 14px;
}

/* Protection Levels */
.protection-levels {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.protection-card {
  background-color: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.protection-card.featured {
  border-color: #0A7AFF;
  background: linear-gradient(135deg, #F0F9FF 0%, #FFFFFF 100%);
  transform: scale(1.05);
}

.protection-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.protection-card h3 {
  color: #1E293B;
  margin-bottom: 16px;
}

.protection-card ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.protection-card li {
  color: #475569;
  padding: 8px 0;
  border-bottom: 1px solid #E2E8F0;
}

.protection-card li:last-child {
  border-bottom: none;
}

/* Bundle Cards */
.bundle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.bundle-card {
  background-color: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bundle-card:hover {
  border-color: #0A7AFF;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.original-price {
  text-decoration: line-through;
  color: #94A3B8;
  font-size: 16px;
}

.bundle-price {
  font-size: 32px;
  font-weight: 700;
  color: #0A7AFF;
  display: block;
}

.savings {
  color: #10B981;
  font-weight: 600;
  font-size: 14px;
}

/* Brand Grid */
.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.brand-item {
  flex: 1 1 140px;
  max-width: 180px;
  padding: 24px;
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-item:hover {
  background-color: #FFFFFF;
  border-color: #0A7AFF;
  transform: translateY(-2px);
}

.brand-item p {
  font-weight: 600;
  color: #1E293B;
  margin: 0;
}

/* Integration Grid */
.integration-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.integration-item {
  flex: 1 1 240px;
  padding: 24px;
  background-color: #F8FAFC;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.integration-item h3 {
  color: #1E293B;
  font-size: 18px;
  margin-bottom: 8px;
}

.integration-item p {
  color: #64748B;
  font-size: 14px;
}

/* Rights Grid (DSGVO) */
.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.right-item {
  flex: 1 1 280px;
  padding: 24px;
  background-color: #F8FAFC;
  border-left: 4px solid #0A7AFF;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.right-item h3 {
  color: #1E293B;
  font-size: 18px;
  margin-bottom: 8px;
}

.right-item p {
  color: #64748B;
  font-size: 14px;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  flex: 1 1 200px;
  max-width: 300px;
}

.benefit-item img {
  width: 24px;
  height: 24px;
}

.benefit-item span {
  color: #475569;
  font-weight: 500;
  font-size: 14px;
}

/* Location CTA */
.location-cta {
  background-color: #F8FAFC;
  padding: 60px 20px;
  text-align: center;
}

.location-content {
  max-width: 600px;
  margin: 0 auto 32px;
}

.location-info {
  margin-bottom: 32px;
}

.location-info p {
  margin-bottom: 24px;
  color: #475569;
}

/* Contact Form */
.contact-form-section {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-info p {
  color: #64748B;
  margin-bottom: 24px;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  color: #1E293B;
  font-weight: 600;
  font-size: 14px;
}

.form-input {
  padding: 12px 16px;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #FFFFFF;
}

.form-input:focus {
  outline: none;
  border-color: #0A7AFF;
  box-shadow: 0 0 0 3px rgba(10, 122, 255, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group label {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
}

.checkbox-group label a {
  color: #0A7AFF;
  text-decoration: underline;
}

/* Location Details */
.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.info-block {
  flex: 1 1 250px;
}

.info-block h3 {
  color: #1E293B;
  font-size: 18px;
  margin-bottom: 12px;
}

.info-block p {
  color: #64748B;
  font-size: 14px;
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  padding: 24px;
  background-color: #F8FAFC;
  border-radius: 8px;
  border-left: 4px solid #0A7AFF;
}

.faq-item h3 {
  color: #1E293B;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #64748B;
  font-size: 14px;
  margin: 0;
}

/* Legal Content */
.legal-hero {
  background-color: #F8FAFC;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.legal-hero h1 {
  margin-bottom: 8px;
}

.last-updated {
  color: #64748B;
  font-size: 14px;
}

.legal-content {
  padding: 40px 20px;
}

.legal-content .text-section {
  max-width: 900px;
}

/* Thank You Page */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #F0F9FF 0%, #FFFFFF 100%);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #10B981;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  font-weight: 700;
}

.confirmation-text {
  font-size: 18px;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto;
}

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

.step-card,
.action-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 280px;
  max-width: 340px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.action-card img {
  width: 48px;
  height: 48px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

.contact-method {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-method img {
  width: 48px;
  height: 48px;
}

.contact-method h3 {
  color: #1E293B;
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-method p {
  color: #64748B;
  font-size: 14px;
  margin: 0;
}

/* Footer - Clean */
footer {
  background-color: #1E293B;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col img {
  height: 36px;
  width: auto;
  margin-bottom: 8px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col p,
.footer-col a {
  color: #CBD5E1;
  font-size: 14px;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #0A7AFF;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #334155;
  text-align: center;
}

.footer-bottom p {
  color: #94A3B8;
  font-size: 14px;
  margin: 0;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 300px;
}

.cookie-consent-text p {
  color: #475569;
  font-size: 14px;
  margin: 0;
}

.cookie-consent-text a {
  color: #0A7AFF;
  text-decoration: underline;
}

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

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

.cookie-btn-accept {
  background-color: #0A7AFF;
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background-color: #0056B3;
}

.cookie-btn-reject {
  background-color: #E2E8F0;
  color: #1E293B;
}

.cookie-btn-reject:hover {
  background-color: #CBD5E1;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #0A7AFF;
  border: 1px solid #0A7AFF;
}

.cookie-btn-settings:hover {
  background-color: #F0F9FF;
}

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #64748B;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cookie-category {
  padding: 20px;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  margin-bottom: 16px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-category h3 {
  margin: 0;
  font-size: 16px;
}

.cookie-category p {
  color: #64748B;
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 0;
}

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

.cookie-toggle.active {
  background-color: #0A7AFF;
}

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

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

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

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

/* Responsive Design - Mobile First */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

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

  header .cta-button {
    display: inline-block;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .hero {
    padding: 120px 20px;
  }

  .service-grid,
  .benefits-grid,
  .category-grid {
    gap: 32px;
  }

  .footer-content {
    gap: 48px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  section {
    padding: 60px 40px;
  }

  .service-card,
  .category-card {
    flex: 1 1 calc(33.333% - 24px);
  }

  .benefit-item {
    flex: 1 1 calc(25% - 24px);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.tagline {
  font-size: 20px;
  color: #64748B;
  font-weight: 500;
}

.response-time {
  font-size: 12px;
  color: #64748B;
  display: block;
  margin-top: 8px;
}

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

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