:root {
  --clay-warm: #D4A574;
  --earth-deep: #5C4A3D;
  --stone-light: #E8E3DC;
  --paper-white: #F7F5F1;
  --ink-soft: #3A3530;
  --moss-gentle: #8B9B7E;
  --terracotta: #C17B5C;
  --sand-beige: #EBE4D8;
  
  --shadow-soft: 0 2px 8px rgba(58, 53, 48, 0.08);
  --shadow-medium: 0 4px 16px rgba(58, 53, 48, 0.12), 0 2px 4px rgba(58, 53, 48, 0.06);
  --shadow-deep: 0 12px 32px rgba(58, 53, 48, 0.16), 0 4px 8px rgba(58, 53, 48, 0.08);
  --shadow-float: 0 8px 24px rgba(58, 53, 48, 0.14), 0 2px 6px rgba(58, 53, 48, 0.08);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-organic: 48% 52% 51% 49% / 53% 47% 53% 47%;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--ink-soft);
  background: var(--paper-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--earth-deep);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
  font-size: 1.0625rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 245, 241, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(92, 74, 61, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
  box-shadow: var(--shadow-medium);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0 !important;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--earth-deep);
  gap: 0.5rem;
}

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

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

.nav-links a {
  font-weight: 500;
  color: var(--earth-deep);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clay-warm);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: var(--space-sm);
  padding-left: var(--space-sm);
  border-left: 2px solid var(--stone-light);
}

.lang-btn {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--earth-deep);
  opacity: 0.6;
  transition: opacity 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

.lang-btn:hover {
  opacity: 1;
  background: var(--stone-light);
}

.lang-btn.active {
  opacity: 1;
  color: var(--clay-warm);
  font-weight: 700;
}

.lang-divider {
  color: var(--stone-light);
  font-weight: 300;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--earth-deep);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.hero-split {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.hero-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 85vh;
  position: relative;
}

.hero-left {
  background: linear-gradient(135deg, var(--clay-warm) 0%, var(--terracotta) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-organic);
  animation: float 20s ease-in-out infinite;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  max-width: 560px;
  color: var(--paper-white);
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--paper-white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 12px rgba(58, 53, 48, 0.2);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  opacity: 0.95;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.0625rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}

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

.btn-secondary:hover {
  background: var(--paper-white);
  color: var(--earth-deep);
}

.btn-accent {
  background: var(--clay-warm);
  color: var(--paper-white);
}

.btn-accent:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(10deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-10deg);
  }
}

section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section-organic {
  background: var(--stone-light);
  position: relative;
  overflow: hidden;
}

.section-organic::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(212, 165, 116, 0.08);
  border-radius: var(--radius-organic);
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.section-subtitle {
  color: var(--clay-warm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
  font-family: 'Outfit', sans-serif;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.comparison-card {
  background: var(--paper-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--clay-warm), var(--terracotta));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.comparison-card:hover::before {
  opacity: 1;
}

.comparison-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--clay-warm), var(--terracotta));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
  color: var(--paper-white);
  box-shadow: var(--shadow-soft);
}

.comparison-card h3 {
  margin-bottom: var(--space-sm);
}

.comparison-list {
  list-style: none;
  margin-top: var(--space-md);
}

.comparison-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--stone-light);
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--moss-gentle);
  font-weight: 700;
  font-size: 1.25rem;
}

.comparison-card.negative .comparison-list li::before {
  content: '✕';
  color: var(--terracotta);
}

.glass-card {
  background: rgba(247, 245, 241, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-float), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

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

.service-card {
  background: var(--paper-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--clay-warm), var(--moss-gentle));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--stone-light), var(--sand-beige));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 2rem;
  color: var(--clay-warm);
}

.process-timeline {
  position: relative;
  padding: var(--space-xl) 0;
  max-width: 900px;
  margin: 0 auto;
}

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 80px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(180deg, var(--clay-warm), var(--stone-light));
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--clay-warm), var(--terracotta));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--paper-white);
  box-shadow: var(--shadow-medium);
  position: relative;
  z-index: 2;
}

.timeline-content {
  background: var(--paper-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.floating-sidebar {
  position: fixed;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cta {
  background: linear-gradient(135deg, var(--clay-warm), var(--terracotta));
  color: var(--paper-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  text-align: center;
  max-width: 200px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(58, 53, 48, 0.2), 0 6px 12px rgba(58, 53, 48, 0.12);
}

.floating-cta h4 {
  color: var(--paper-white);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.floating-cta p {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
  opacity: 0.95;
}

.floating-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-deep);
}

.image-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(58, 53, 48, 0.9), transparent);
  color: var(--paper-white);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-card:hover .image-overlay {
  transform: translateY(0);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.stat-card {
  text-align: center;
  padding: var(--space-lg);
}

.stat-number {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--clay-warm);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-weight: 600;
  color: var(--earth-deep);
}

form {
  max-width: 600px;
  margin: var(--space-xl) auto 0;
}

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--earth-deep);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: 2px solid var(--stone-light);
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--ink-soft);
  background: var(--paper-white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--clay-warm);
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

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

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

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-info-card {
  background: var(--paper-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.contact-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--stone-light), var(--sand-beige));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
  color: var(--clay-warm);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.blog-card {
  background: var(--paper-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: var(--space-md);
}

.blog-meta {
  display: flex;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--clay-warm);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

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

.blog-excerpt {
  color: var(--ink-soft);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--clay-warm);
  font-weight: 600;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 0.75rem;
}

footer {
  background: var(--earth-deep);
  color: var(--stone-light);
  padding: var(--space-xl) 0 var(--space-md);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clay-warm), var(--terracotta), var(--moss-gentle));
}

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

.footer-brand h3 {
  color: var(--paper-white);
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: var(--stone-light);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.footer-links h4 {
  color: var(--paper-white);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

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

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

.footer-links a {
  color: var(--stone-light);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--clay-warm);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(232, 227, 220, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--stone-light);
  font-size: 0.875rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(58, 53, 48, 0.98);
  backdrop-filter: blur(12px);
  color: var(--paper-white);
  padding: var(--space-md);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.cookie-text p {
  margin-bottom: 0;
  line-height: 1.6;
}

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

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9375rem;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--clay-warm);
  color: var(--paper-white);
}

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

.cookie-btn-decline {
  background: transparent;
  color: var(--paper-white);
  border: 2px solid var(--stone-light);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.cookie-btn-customize:hover {
  border-color: var(--stone-light);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

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

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

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

.legal-content p,
.legal-content li {
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

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

.legal-updated {
  color: var(--clay-warm);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

@media (max-width: 1024px) {
  .floating-sidebar {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 5rem;
  }

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--paper-white);
    flex-direction: column;
    padding: 100px var(--space-md) var(--space-md);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
    gap: var(--space-md);
  }

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

  .nav-links a {
    font-size: 1.125rem;
    width: 100%;
  }

  .lang-switcher {
    border-left: none;
    border-top: 2px solid var(--stone-light);
    padding-left: 0;
    padding-top: var(--space-md);
    margin-left: 0;
    width: 100%;
  }

  .hero-split-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: var(--space-xl) var(--space-md);
    min-height: 60vh;
  }

  .hero-right {
    min-height: 40vh;
  }

  .services-grid,
  .image-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
  }

  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .timeline-item::before {
    left: 30px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container,
  .container-wide {
    padding: 0 var(--space-sm);
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.625rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .comparison-card,
  .service-card,
  .glass-card {
    padding: var(--space-md);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}