/* Base Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --secondary: #c53030;
  --accent: #ed8936;
  --dark: #1a202c;
  --gray-900: #171923;
  --gray-800: #2d3748;
  --gray-700: #4a5568;
  --gray-600: #718096;
  --gray-500: #a0aec0;
  --gray-400: #cbd5e0;
  --gray-300: #e2e8f0;
  --gray-200: #edf2f7;
  --gray-100: #f7fafc;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

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

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

.nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

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

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  padding: 5rem 2rem 2rem;
  transition: var(--transition);
  z-index: 99;
}

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

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--gray-600);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 98;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255,255,255,0.05);
  transform: rotate(15deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

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

.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: #9b2c2c;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background: var(--gray-100);
}

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

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

/* Sections */
section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Company Overview */
.overview {
  background: var(--gray-100);
}

.overview-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.overview-text h2 {
  font-size: 1.75rem;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.overview-text p {
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.overview-graphic {
  display: flex;
  justify-content: center;
}

.overview-graphic svg {
  max-width: 300px;
}

/* Services Cards */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

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

/* Benefits Section */
.benefits {
  background: var(--primary);
  color: var(--white);
}

.benefits .section-label {
  color: var(--accent);
}

.benefits .section-title {
  color: var(--white);
}

.benefits .section-subtitle {
  color: rgba(255,255,255,0.8);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}

.benefit-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.benefit-content p {
  font-size: 0.9375rem;
  opacity: 0.85;
}

/* Statistics */
.statistics {
  background: var(--gray-900);
  color: var(--white);
  padding: 3rem 0;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

/* Testimonials */
.testimonials {
  background: var(--gray-100);
}

.testimonials-slider {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.testimonial-quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
}

.testimonial-info h4 {
  font-size: 1rem;
  color: var(--gray-900);
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.step-content h3 {
  font-size: 1.125rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

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

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  transition: var(--transition);
}

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

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

.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 1.5rem 1.25rem;
  color: var(--gray-600);
}

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

/* Industries Section */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.industry-tag {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition);
}

.industry-tag:hover {
  background: var(--primary);
  color: var(--white);
}

/* Values Section */
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary);
}

.value-card h3 {
  font-size: 1.125rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--secondary) 0%, #9b2c2c 100%);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.cta p {
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta .btn:hover {
  background: var(--gray-100);
}

/* Team Section */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-member {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.team-member h3 {
  font-size: 1.125rem;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.team-member .role {
  color: var(--secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

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

/* About Page Sections */
.about-intro {
  background: var(--gray-100);
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-300);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: var(--secondary);
  border-radius: 50%;
  transform: translateX(-50%);
}

.timeline-year {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.timeline-item h3 {
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

/* Contact Page */
.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.contact-card h3 {
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.contact-card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

.contact-card a {
  color: var(--primary);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--secondary);
}

/* Map Placeholder */
.map-section {
  background: var(--gray-200);
  padding: 3rem 0;
}

.map-placeholder {
  background: var(--gray-300);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder svg {
  width: 64px;
  height: 64px;
  fill: var(--gray-500);
}

/* Directions */
.directions {
  background: var(--gray-100);
}

.directions-content h2 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.directions-content p {
  color: var(--gray-700);
  margin-bottom: 1rem;
}

/* Company Info Block */
.company-info {
  background: var(--primary);
  color: var(--white);
}

.company-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.company-info p {
  opacity: 0.9;
  margin-bottom: 1rem;
}

.company-details {
  margin-top: 2rem;
}

.company-detail {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.company-detail strong {
  min-width: 100px;
}

/* Thank You Page */
.thank-you {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.thank-you-content svg {
  width: 80px;
  height: 80px;
  fill: var(--secondary);
  margin: 0 auto 1.5rem;
}

.thank-you h1 {
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.thank-you p {
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Legal Pages */
.legal-content {
  padding: 3rem 0;
}

.legal-content h1 {
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.legal-content .last-updated {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  max-width: 300px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.9375rem;
  transition: var(--transition);
}

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-800);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray-900);
  color: var(--white);
  padding: 1.5rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: var(--transition);
}

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

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-content p {
  font-size: 0.9375rem;
  opacity: 0.9;
}

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

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
}

.cookie-btn-accept {
  background: var(--secondary);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: #9b2c2c;
}

.cookie-btn-reject {
  background: transparent;
  border: 1px solid var(--gray-600);
  color: var(--gray-400);
}

.cookie-btn-reject:hover {
  border-color: var(--white);
  color: var(--white);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--gray-400);
  text-decoration: underline;
}

.cookie-btn-settings:hover {
  color: var(--white);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1rem;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

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

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

.cookie-modal-header h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
}

.cookie-modal-close {
  font-size: 1.5rem;
  color: var(--gray-500);
  transition: var(--transition);
}

.cookie-modal-close:hover {
  color: var(--gray-900);
}

.cookie-modal-body {
  padding: 1.5rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
}

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

.cookie-category h4 {
  font-size: 1rem;
  color: var(--gray-900);
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
}

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

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

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

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

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

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

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

.cookie-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-modal-footer .cookie-btn {
  flex: 1;
  min-width: 120px;
}

/* Highlight Panel */
.highlight-panel {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}

.highlight-panel h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.highlight-panel p {
  color: var(--gray-700);
}

/* Comparison Section */
.comparison-table {
  width: 100%;
  overflow-x: auto;
}

.comparison-row {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 0;
}

.comparison-row:first-child {
  font-weight: 600;
  color: var(--gray-900);
  background: var(--gray-100);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 1rem;
  margin: 0 -1rem;
}

.comparison-cell {
  flex: 1;
  padding: 0 0.5rem;
  font-size: 0.9375rem;
}

.comparison-cell:first-child {
  flex: 2;
}

/* Knowledge Section */
.knowledge-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.knowledge-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.knowledge-card h3 {
  font-size: 1.125rem;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.knowledge-card h3 svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
}

.knowledge-card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

/* Trust Indicators */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

.trust-badge {
  text-align: center;
}

.trust-badge svg {
  width: 48px;
  height: 48px;
  fill: var(--primary);
  margin-bottom: 0.5rem;
}

.trust-badge span {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Alternate Content Blocks */
.alt-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}

.alt-block:nth-child(even) {
  background: var(--gray-100);
}

.alt-block-content h2 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.alt-block-content p {
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.alt-block-graphic {
  display: flex;
  justify-content: center;
}

.alt-block-graphic svg {
  max-width: 250px;
}

/* Responsive Styles */
@media (min-width: 640px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 280px;
  }

  .stats-grid {
    justify-content: space-around;
  }

  .team-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .team-member {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-brand {
    flex: 1 1 100%;
  }

  .footer-links {
    flex: 1 1 calc(50% - 1rem);
  }

  .values-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .value-card {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .knowledge-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .knowledge-card {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (min-width: 768px) {
  section {
    padding: 5rem 0;
  }

  .hero {
    padding: 6rem 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .overview-content {
    flex-direction: row;
    align-items: center;
  }

  .overview-text {
    flex: 1;
  }

  .overview-graphic {
    flex: 1;
  }

  .benefits-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .benefit-item {
    flex: 1 1 calc(50% - 1rem);
  }

  .testimonials-slider {
    flex-direction: row;
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .contact-info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-card {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-content p {
    flex: 1;
    margin-right: 2rem;
  }

  .alt-block {
    flex-direction: row;
    align-items: center;
  }

  .alt-block:nth-child(even) .alt-block-content {
    order: 2;
  }

  .alt-block-content,
  .alt-block-graphic {
    flex: 1;
  }

  .footer-brand {
    flex: 1 1 40%;
  }

  .footer-links {
    flex: 1 1 calc(30% - 1rem);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .service-card {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .team-member {
    flex: 1 1 calc(25% - 1.125rem);
  }

  .benefits-list {
    flex-wrap: nowrap;
  }

  .benefit-item {
    flex: 1;
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 calc(50% - 1rem);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}
