:root {
  /* Color Palette - Warm Editorial Tones */
  --color-primary: #1a1a1a;
  --color-secondary: #d94a2e;
  --color-accent: #f7a21b;
  --color-dark: #0d0d0d;
  --color-light: #fafaf8;
  --color-gray-100: #f5f5f3;
  --color-gray-200: #e8e8e5;
  --color-gray-300: #c4c4bf;
  --color-gray-400: #9a9a94;
  --color-gray-600: #5a5a54;
  --color-gray-800: #2a2a26;
  
  /* Typography Scale */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base: 1.0625rem;
  --line-height-base: 1.7;
  --line-height-tight: 1.2;
  --line-height-heading: 1.1;
  
  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  
  /* Border Radius Scale */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  
  /* Shadows - Layered System */
  --shadow-sm: 
    0 1px 2px rgba(26, 26, 26, 0.04),
    0 2px 4px rgba(26, 26, 26, 0.04);
  --shadow-md: 
    0 2px 4px rgba(26, 26, 26, 0.06),
    0 4px 8px rgba(26, 26, 26, 0.06),
    0 8px 16px rgba(26, 26, 26, 0.06);
  --shadow-lg: 
    0 4px 8px rgba(26, 26, 26, 0.08),
    0 8px 16px rgba(26, 26, 26, 0.08),
    0 16px 32px rgba(26, 26, 26, 0.08);
  --shadow-xl: 
    0 8px 16px rgba(26, 26, 26, 0.1),
    0 16px 32px rgba(26, 26, 26, 0.1),
    0 32px 64px rgba(26, 26, 26, 0.1);
  
  /* Transitions */
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-gray-800);
  background-color: var(--color-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: var(--line-height-heading);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem, 8vw, 6.5rem);
  letter-spacing: -0.03em;
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  margin-bottom: var(--space-md);
}

.text-large {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
}

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

.text-muted {
  color: var(--color-gray-600);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-gray-200);
  transition: all var(--transition-base);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-gray-800);
  position: relative;
  padding: var(--space-xs) 0;
}

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

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 600;
}

.lang-btn {
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--color-gray-600);
  transition: all var(--transition-base);
}

.lang-btn:hover {
  color: var(--color-primary);
  background: var(--color-gray-100);
}

.lang-btn.active {
  color: var(--color-secondary);
  background: rgba(217, 74, 46, 0.1);
}

.lang-divider {
  color: var(--color-gray-300);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

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

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

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

/* Hero Section with Marquee */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-gray-100) 100%);
  padding: var(--space-3xl) var(--space-lg);
  margin-top: 80px;
}

.marquee-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  overflow: hidden;
  opacity: 0.08;
  pointer-events: none;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}

.marquee-text {
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  padding: 0 var(--space-xl);
  color: var(--color-primary);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(20px);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero h1 {
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gray-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-gray-600);
  margin-bottom: var(--space-xl);
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1rem 2rem;
  background: var(--color-secondary);
  color: white;
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.hero-cta:hover {
  background: #c23d24;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Section Spacing */
section {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-subtitle {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

/* Timeline Section */
.timeline {
  position: relative;
  padding: var(--space-xl) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-gray-200), var(--color-secondary), var(--color-gray-200));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-date {
  grid-column: 2;
  grid-row: 1;
}

.timeline-content {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--transition-base);
}

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

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.timeline-date {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.timeline-date-circle {
  width: 80px;
  height: 80px;
  background: var(--color-secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--color-light);
}

/* About Preview */
.about-preview {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gray-800) 100%);
  color: white;
  padding: var(--space-3xl) var(--space-lg);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.about-preview::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(247, 162, 27, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.about-preview-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-preview h2 {
  color: white;
  margin-bottom: var(--space-lg);
}

.about-preview p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* Zigzag Content Section */
.zigzag-section {
  padding: var(--space-3xl) 0;
}

.zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
}

.zigzag-item:nth-child(even) .zigzag-image {
  grid-column: 2;
  grid-row: 1;
}

.zigzag-item:nth-child(even) .zigzag-content {
  grid-column: 1;
  grid-row: 1;
}

.zigzag-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.zigzag-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.zigzag-image:hover img {
  transform: scale(1.05);
}

.zigzag-content h3 {
  margin-bottom: var(--space-md);
}

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

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.service-card {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--color-gray-200);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-secondary);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.service-card h3 {
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

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

/* Swiper Slider */
.swiper {
  padding: var(--space-lg) 0 var(--space-2xl);
}

.swiper-slide {
  height: auto;
}

.swiper-pagination-bullet {
  background: var(--color-gray-400);
  opacity: 1;
  transition: all var(--transition-base);
}

.swiper-pagination-bullet-active {
  background: var(--color-secondary);
  transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-secondary);
  transition: all var(--transition-base);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--color-primary);
}

/* Insights Grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.insight-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.insight-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.insight-card:hover .insight-image img {
  transform: scale(1.08);
}

.insight-content {
  padding: var(--space-lg);
}

.insight-meta {
  display: flex;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin-bottom: var(--space-md);
}

.insight-content h3 {
  font-size: 1.375rem;
  margin-bottom: var(--space-sm);
}

.insight-excerpt {
  color: var(--color-gray-600);
  margin-bottom: var(--space-md);
}

.insight-link {
  color: var(--color-secondary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: all var(--transition-base);
}

.insight-link:hover {
  gap: var(--space-sm);
}

/* Contact Form */
.contact-section {
  padding: var(--space-3xl) 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gray-800) 100%);
  color: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
}

.contact-info h2 {
  color: white;
  margin-bottom: var(--space-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail-content h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.contact-detail-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.contact-form-wrapper {
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-gray-800);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 1rem;
  transition: all var(--transition-base);
  background: var(--color-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: white;
  box-shadow: 0 0 0 3px rgba(217, 74, 46, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.privacy-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

.privacy-checkbox label {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  cursor: pointer;
}

.privacy-checkbox a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--color-secondary);
  color: white;
  font-weight: 600;
  font-size: 1.0625rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

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

.btn-submit:disabled {
  background: var(--color-gray-300);
  cursor: not-allowed;
  transform: none;
}

.map-container {
  margin-top: var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Thanks Page */
.thanks-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto var(--space-xl);
  box-shadow: var(--shadow-lg);
}

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
}

.legal-content h1 {
  margin-bottom: var(--space-md);
}

.last-updated {
  color: var(--color-gray-600);
  font-size: 0.9375rem;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-gray-200);
}

.legal-content h2 {
  font-size: 2rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.legal-content h3 {
  font-size: 1.5rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-content li {
  margin-bottom: var(--space-xs);
}

/* Footer */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-3xl) 0 var(--space-xl);
  margin-top: var(--space-3xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-section h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.footer-section p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base);
}

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

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-base);
}

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: var(--shadow-xl);
  padding: var(--space-lg);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  border-top: 3px solid var(--color-secondary);
}

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

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

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

.cookie-consent-text p {
  margin-bottom: var(--space-xs);
  color: var(--color-gray-800);
}

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

.cookie-consent-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 0.9375rem;
}

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

.cookie-btn-accept:hover {
  background: #c23d24;
  transform: translateY(-2px);
}

.cookie-btn-decline {
  background: var(--color-gray-200);
  color: var(--color-gray-800);
}

.cookie-btn-decline:hover {
  background: var(--color-gray-300);
}

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

.cookie-btn-customize:hover {
  background: rgba(217, 74, 46, 0.1);
}

.cookie-settings {
  display: none;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-gray-200);
}

.cookie-settings.show {
  display: block;
}

.cookie-category {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4.5rem;
    --space-3xl: 6rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .zigzag-item {
    gap: var(--space-xl);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 60px;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: left;
  }
  
  .timeline-date {
    position: absolute;
    left: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
    --space-3xl: 4.5rem;
  }
  
  .header-container {
    padding: var(--space-md) var(--space-md);
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px var(--space-lg) var(--space-lg);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-slow);
    overflow-y: auto;
  }
  
  .nav-wrapper.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  
  .main-nav a {
    display: block;
    width: 100%;
    padding: var(--space-sm) 0;
    font-size: 1.125rem;
  }
  
  .lang-switcher {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-gray-200);
    width: 100%;
  }
  
  .hero {
    min-height: 70vh;
    padding: var(--space-2xl) var(--space-md);
  }
  
  .hero-content {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .marquee-text {
    font-size: clamp(3rem, 12vw, 8rem);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
  }
  
  .zigzag-item {
    grid-template-columns: 1fr;
  }
  
  .zigzag-item:nth-child(even) .zigzag-image {
    grid-column: 1;
    grid-row: 1;
  }
  
  .zigzag-item:nth-child(even) .zigzag-content {
    grid-column: 1;
    grid-row: 2;
  }
  
  .zigzag-image {
    height: 300px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 50px;
  }
  
  .timeline-date-circle {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    margin-top: 70px;
  }
  
  .header-container {
    padding: var(--space-sm) var(--space-md);
  }
  
  .logo {
    font-size: 1.25rem;
  }
  
  .logo svg {
    width: 28px;
    height: 28px;
  }
  
  .cookie-consent {
    padding: var(--space-md);
  }
  
  .map-container {
    height: 300px;
  }
}