/* Base Reset & Variables */
:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-secondary: #0f172a;
  --color-accent: #f59e0b;
  --color-light: #f8fafc;
  --color-gray: #64748b;
  --color-gray-light: #e2e8f0;
  --color-white: #ffffff;
  --color-success: #10b981;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--color-secondary);
  background-color: var(--color-white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-secondary);
}

.btn-accent:hover {
  background-color: #d97706;
  transform: translateY(-2px);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo svg {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: none;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--color-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-cta {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--color-secondary);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  padding: 30px 20px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 1.2rem;
  padding: 15px;
  border-bottom: 1px solid var(--color-gray-light);
}

.mobile-menu a:hover {
  color: var(--color-primary);
  background-color: var(--color-light);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.hero-text h1 span {
  color: var(--color-primary);
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--color-gray);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual svg {
  width: 100%;
  max-width: 500px;
  height: auto;
}

@media (min-width: 992px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text {
    flex: 1;
  }

  .hero-visual {
    flex: 1;
  }
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--color-light);
}

.section-dark {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  margin-bottom: 15px;
}

.section-header p {
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: var(--color-gray-light);
}

/* Cards */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  flex: 1 1 300px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 30px;
  height: 30px;
  color: var(--color-primary);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--color-gray);
}

/* Service Cards */
.service-card {
  background-color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  flex: 1 1 350px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 30px;
  color: var(--color-white);
}

.service-card-header svg {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.service-card-body {
  padding: 30px;
}

.service-card-body p {
  color: var(--color-gray);
  margin-bottom: 20px;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.service-price span {
  font-size: 0.9rem;
  color: var(--color-gray);
  font-weight: 400;
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.feature-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 35px;
  height: 35px;
  color: var(--color-white);
}

.feature-content h3 {
  margin-bottom: 8px;
}

.feature-content p {
  color: var(--color-gray);
}

/* Statistics */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.section-dark .stat-number {
  color: var(--color-accent);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--color-gray);
}

.section-dark .stat-label {
  color: var(--color-gray-light);
}

/* Testimonials */
.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 35px;
  box-shadow: var(--shadow-md);
  flex: 1 1 350px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 6rem;
  color: var(--color-light);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-style: italic;
  color: var(--color-gray);
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.3rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.testimonial-info p {
  font-size: 0.9rem;
  color: var(--color-gray);
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: var(--transition);
  min-width: 20px;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 25px 20px;
  color: var(--color-gray);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Process Steps */
.process-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.process-step {
  text-align: center;
  flex: 1 1 250px;
  position: relative;
}

.process-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 auto 20px;
}

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

.process-step p {
  color: var(--color-gray);
}

/* Industries */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.industry-item {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 280px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.industry-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.industry-item svg {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  min-width: 40px;
}

.industry-item span {
  font-weight: 600;
}

/* Values */
.values-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.value-card {
  flex: 1 1 300px;
  text-align: center;
  padding: 40px 30px;
  background-color: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.value-card svg {
  width: 70px;
  height: 70px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.value-card h3 {
  margin-bottom: 15px;
}

.value-card p {
  color: var(--color-gray);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--color-white);
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section p {
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.cta-section .btn:hover {
  background-color: var(--color-accent);
  color: var(--color-secondary);
}

/* Contact Page */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-info {
  flex: 1 1 400px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background-color: var(--color-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 25px;
  height: 25px;
  color: var(--color-primary);
}

.contact-text h4 {
  margin-bottom: 5px;
}

.contact-text p {
  color: var(--color-gray);
}

.contact-map {
  flex: 1 1 400px;
  background-color: var(--color-light);
  border-radius: 16px;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map svg {
  width: 150px;
  height: 150px;
  color: var(--color-gray);
}

/* About Page */
.about-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h1 {
  margin-bottom: 25px;
}

.about-text p {
  color: var(--color-gray);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-visual {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.about-visual svg {
  width: 100%;
  max-width: 450px;
  height: auto;
}

/* Team Section */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 35px;
  text-align: center;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 50px;
  height: 50px;
  color: var(--color-white);
}

.team-member h3 {
  margin-bottom: 5px;
}

.team-member .role {
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 15px;
}

.team-member p {
  color: var(--color-gray);
  font-size: 0.95rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-primary);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: 10px;
  top: 5px;
  width: 23px;
  height: 23px;
  background-color: var(--color-primary);
  border-radius: 50%;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-sm);
}

.timeline-content {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--shadow-sm);
}

.timeline-year {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content h3 {
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--color-gray);
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-item {
    padding-left: 0;
    width: 50%;
  }

  .timeline-item:nth-child(odd) {
    padding-right: 40px;
    text-align: right;
  }

  .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 40px;
  }

  .timeline-item:nth-child(odd) .timeline-dot {
    left: auto;
    right: -12px;
  }

  .timeline-item:nth-child(even) .timeline-dot {
    left: -12px;
  }
}

/* Legal Pages */
.legal-page {
  padding: 140px 0 80px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 30px;
  color: var(--color-primary);
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--color-gray);
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 25px;
}

.legal-content li {
  margin-bottom: 10px;
  color: var(--color-gray);
  list-style-type: disc;
}

.legal-content .last-updated {
  font-style: italic;
  color: var(--color-gray);
  margin-bottom: 30px;
}

/* Thank You Page */
.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}

.thank-you-content svg {
  width: 120px;
  height: 120px;
  color: var(--color-success);
  margin-bottom: 30px;
}

.thank-you-content h1 {
  margin-bottom: 20px;
  color: var(--color-primary);
}

.thank-you-content p {
  color: var(--color-gray);
  margin-bottom: 30px;
  max-width: 500px;
}

/* Footer */
.footer {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h4 {
  margin-bottom: 20px;
  color: var(--color-white);
}

.footer-col p {
  color: var(--color-gray-light);
  margin-bottom: 15px;
}

.footer-col a {
  display: block;
  color: var(--color-gray-light);
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo svg {
  width: 35px;
  height: 35px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  color: var(--color-gray-light);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: var(--color-gray-light);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--color-accent);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.active {
  display: block;
}

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

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

.cookie-text h4 {
  margin-bottom: 8px;
}

.cookie-text p {
  font-size: 0.95rem;
  color: var(--color-gray-light);
}

.cookie-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

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

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

.cookie-modal-content {
  background-color: var(--color-white);
  border-radius: 16px;
  max-width: 550px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 25px;
  border-bottom: 1px solid var(--color-gray-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  color: var(--color-secondary);
}

.cookie-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.cookie-modal-close svg {
  width: 24px;
  height: 24px;
  color: var(--color-gray);
}

.cookie-modal-body {
  padding: 25px;
}

.cookie-category {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--color-gray-light);
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-category h4 {
  font-size: 1rem;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-gray-light);
  border-radius: 26px;
  transition: var(--transition);
}

.cookie-toggle-slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: var(--color-primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 0.9rem;
  color: var(--color-gray);
}

.cookie-modal-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--color-gray-light);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Page Header */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 15px;
}

.page-header p {
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  text-align: left;
}

.comparison-table th {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
}

.comparison-table tr:nth-child(even) {
  background-color: var(--color-light);
}

.comparison-table td svg {
  width: 22px;
  height: 22px;
}

.comparison-table td svg.check {
  color: var(--color-success);
}

.comparison-table td svg.cross {
  color: var(--color-gray);
}

/* Highlighted Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 20px;
  padding: 50px;
  color: var(--color-white);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.highlight-panel-content {
  flex: 1 1 400px;
}

.highlight-panel h2 {
  margin-bottom: 20px;
}

.highlight-panel p {
  opacity: 0.9;
  margin-bottom: 25px;
}

.highlight-panel-visual {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.highlight-panel-visual svg {
  width: 100%;
  max-width: 280px;
  height: auto;
}

/* Quote Section */
.quote-section {
  text-align: center;
  padding: 100px 0;
  background-color: var(--color-light);
}

.quote-content {
  max-width: 800px;
  margin: 0 auto;
}

.quote-content svg {
  width: 60px;
  height: 60px;
  color: var(--color-primary);
  margin-bottom: 25px;
}

.quote-text {
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-secondary);
  margin-bottom: 25px;
  line-height: 1.5;
}

.quote-author {
  font-weight: 600;
  color: var(--color-primary);
}

/* Alternating Blocks */
.alt-block {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.alt-block:last-child {
  margin-bottom: 0;
}

.alt-block.reverse {
  flex-direction: row-reverse;
}

.alt-block-content {
  flex: 1 1 400px;
}

.alt-block-content h3 {
  margin-bottom: 15px;
}

.alt-block-content p {
  color: var(--color-gray);
  margin-bottom: 20px;
}

.alt-block-visual {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}

.alt-block-visual svg {
  width: 100%;
  max-width: 350px;
  height: auto;
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }

  .hero,
  .section {
    padding: 30px 0;
  }
}
