/* ========================================
   Gestion Locale - Style CSS
   Mobile-first, Flexbox layout
======================================== */

:root {
  --color-primary: #1a365d;
  --color-secondary: #2c5282;
  --color-accent: #3182ce;
  --color-light: #ebf4ff;
  --color-dark: #1a202c;
  --color-gray: #718096;
  --color-gray-light: #e2e8f0;
  --color-white: #ffffff;
  --color-success: #38a169;
  --color-warm: #f7fafc;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-white);
}

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

ul {
  list-style: none;
}

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

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

/* ========================================
   Typography
======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary);
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-gray);
}

/* ========================================
   Header & Navigation
======================================== */

.header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 30px;
}

.nav-desktop a {
  color: var(--color-dark);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.nav-desktop a:hover {
  color: var(--color-accent);
}

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

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

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

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  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(7px, -7px);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  padding: 20px;
}

.nav-mobile.active {
  display: block;
}

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

.nav-mobile a {
  display: block;
  padding: 10px 15px;
  color: var(--color-dark);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-mobile a:hover {
  background-color: var(--color-light);
  color: var(--color-accent);
}

/* ========================================
   Buttons
======================================== */

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

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

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

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

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

.btn-light:hover {
  background-color: var(--color-light);
}

/* ========================================
   Hero Section
======================================== */

.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  padding: 60px 20px;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  color: var(--color-white);
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

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

/* ========================================
   Sections
======================================== */

.section {
  padding: 50px 20px;
}

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

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

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-dark p {
  color: rgba(255,255,255,0.85);
}

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

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

.section-header p {
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   Cards
======================================== */

.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  flex: 1 1 100%;
  max-width: 400px;
  transition: var(--transition);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

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

.card p {
  font-size: 0.95rem;
}

/* ========================================
   Service Cards
======================================== */

.service-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  flex: 1 1 100%;
  transition: var(--transition);
  border-left: 4px solid var(--color-accent);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-card h3 {
  color: var(--color-primary);
  margin-bottom: 10px;
}

.service-card p {
  margin-bottom: 15px;
}

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

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

/* ========================================
   Feature Blocks
======================================== */

.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

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

/* ========================================
   Statistics
======================================== */

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

.stat-item {
  text-align: center;
  flex: 1 1 140px;
  max-width: 200px;
}

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

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

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

.section-dark .stat-label {
  color: rgba(255,255,255,0.8);
}

/* ========================================
   Testimonials
======================================== */

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  position: relative;
}

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

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar svg {
  width: 30px;
  height: 30px;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-primary);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--color-gray);
}

/* ========================================
   FAQ Accordion
======================================== */

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

.faq-item {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

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

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

.faq-question:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

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

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

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

/* ========================================
   Process Steps
======================================== */

.process-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.process-number {
  width: 45px;
  height: 45px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

/* ========================================
   Quote Section
======================================== */

.quote-section {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--color-primary);
}

.quote-text {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-white);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.quote-author {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ========================================
   Industries Section
======================================== */

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

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

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

.industry-item svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.industry-item span {
  font-weight: 500;
  color: var(--color-dark);
}

/* ========================================
   Contact Info
======================================== */

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background-color: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-details h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-details p {
  margin-bottom: 0;
}

.contact-details a {
  color: var(--color-accent);
}

.contact-details a:hover {
  text-decoration: underline;
}

/* ========================================
   Company Info Block
======================================== */

.company-info-block {
  background-color: var(--color-light);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.company-info-block h3 {
  margin-bottom: 15px;
}

.company-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.company-info-list li {
  display: flex;
  gap: 10px;
}

.company-info-list strong {
  color: var(--color-primary);
  min-width: 120px;
}

/* ========================================
   CTA Section
======================================== */

.cta-section {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  padding: 60px 20px;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* ========================================
   Footer
======================================== */

.footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 50px 20px 30px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

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

.footer-logo span {
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

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

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  margin-top: 40px;
  text-align: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-legal a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

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

/* ========================================
   Cookie Banner
======================================== */

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-text p {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-weight: 500;
}

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

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

.cookie-btn-reject {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.3);
}

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

.cookie-btn-settings {
  background-color: transparent;
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

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

/* ========================================
   Cookie Modal
======================================== */

.cookie-modal-overlay {
  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-overlay.active {
  display: flex;
}

.cookie-modal {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  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 {
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: var(--color-gray);
}

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

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

.cookie-category {
  margin-bottom: 25px;
}

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

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

.cookie-category h4 {
  margin-bottom: 0;
}

.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-accent);
}

.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;
  margin-bottom: 0;
}

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

/* ========================================
   Thank You Page
======================================== */

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background-color: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-icon svg {
  width: 50px;
  height: 50px;
  color: var(--color-success);
}

/* ========================================
   Legal Pages
======================================== */

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

.legal-content h1 {
  margin-bottom: 30px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 35px;
  margin-bottom: 15px;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 25px;
  margin-bottom: 10px;
}

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

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

.legal-content li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--color-dark);
}

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

.legal-content a:hover {
  text-decoration: underline;
}

.legal-update {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 30px;
}

/* ========================================
   Values Section
======================================== */

.values-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.value-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

/* ========================================
   Timeline
======================================== */

.timeline {
  position: relative;
  padding-left: 30px;
}

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

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

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

.timeline-item h3 {
  margin-bottom: 8px;
}

/* ========================================
   Comparison Table
======================================== */

.comparison-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-light);
}

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

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background-color: var(--color-light);
}

.check-icon {
  color: var(--color-success);
}

/* ========================================
   Highlight Panel
======================================== */

.highlight-panel {
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
  border-left: 4px solid var(--color-accent);
  padding: 30px;
  border-radius: var(--radius-md);
}

.highlight-panel h3 {
  margin-bottom: 15px;
}

/* ========================================
   Team Section
======================================== */

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.team-member {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  flex: 1 1 250px;
  max-width: 300px;
}

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

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

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

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

/* ========================================
   Page Headers
======================================== */

.page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 50px 20px;
  text-align: center;
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   Two Column Layout
======================================== */

.two-columns {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.column-content {
  flex: 1;
}

.column-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.column-image svg {
  max-width: 300px;
  width: 100%;
  height: auto;
}

/* ========================================
   Skip Link
======================================== */

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

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

/* ========================================
   Media Queries
======================================== */

@media (min-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .section {
    padding: 70px 20px;
  }

  .card {
    flex: 1 1 calc(50% - 15px);
  }

  .service-card {
    flex: 1 1 calc(50% - 15px);
  }

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

  .testimonial-card {
    flex: 1 1 calc(50% - 15px);
  }

  .feature-item {
    flex-direction: row;
    align-items: flex-start;
  }

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

  .value-item {
    flex: 1 1 calc(50% - 15px);
  }

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

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

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

  .two-columns {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .header-inner {
    padding: 15px 30px;
  }

  .nav-desktop {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }

  .hero {
    padding: 100px 30px;
    min-height: 500px;
  }

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

  .section {
    padding: 90px 30px;
  }

  .card {
    flex: 1 1 calc(33.333% - 20px);
  }

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

  .stat-number {
    font-size: 3rem;
  }

  .quote-text {
    font-size: 1.75rem;
  }

  .footer-grid {
    flex-wrap: nowrap;
  }

  .footer-brand {
    flex: 0 0 300px;
  }

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

  .contact-info {
    flex: 1;
  }

  .company-info-block {
    flex: 1;
  }
}

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

  h1 {
    font-size: 3rem;
  }

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

/* ========================================
   Focus States for Accessibility
======================================== */

a:focus,
button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn:focus {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

/* ========================================
   Reduced Motion
======================================== */

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