:root {
  --color-purple: #7B2CBF;
  --color-pink: #E63B7A;
  --color-orange: #FF6B35;
  --color-teal: #00B4D8;
  --color-yellow: #FFB703;
  
  --text-dark: #1a1a2e;
  --text-light: #f8f9fa;
  --text-muted: #6c757d;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16), 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2), 0 8px 24px rgba(0, 0, 0, 0.15);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --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;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

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

header {
  position: fixed;
  top: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: 1200px;
  z-index: 1000;
  transition: all 0.4s ease;
}

.nav-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-purple);
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-link svg {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
}

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

nav a {
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

nav a:hover {
  background: rgba(123, 44, 191, 0.1);
  color: var(--color-purple);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: var(--space-sm);
}

.lang-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(123, 44, 191, 0.1);
  color: var(--color-purple);
}

.lang-btn.active {
  background: var(--color-purple);
  color: white;
}

.lang-divider {
  color: var(--text-muted);
}

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

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hero {
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-pink) 100%);
  padding: calc(var(--space-2xl) + 80px) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  color: var(--text-light);
}

.hero h1 {
  color: white;
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

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

.cta-button {
  display: inline-block;
  background: white;
  color: var(--color-purple);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--shadow-xl), 0 0 40px rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(255, 255, 255, 0.5);
}

.hero-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  position: relative;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s ease;
}

.hero-image:hover {
  transform: translateY(-8px);
}

.hero-image:first-child {
  grid-row: span 2;
  margin-top: var(--space-lg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services {
  background: var(--color-teal);
  padding: var(--space-2xl) 0;
  position: relative;
}

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

.section-header h2 {
  color: white;
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

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

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg), 0 8px 32px rgba(0, 180, 216, 0.2);
  transition: all 0.4s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-purple));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl), 0 16px 48px rgba(0, 180, 216, 0.3);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-teal), var(--color-purple));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.3);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  color: var(--color-purple);
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 0;
}

.about-preview {
  background: var(--color-orange);
  padding: var(--space-2xl) 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-preview::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
  opacity: 0.95;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 16px 48px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-section {
  background: var(--color-yellow);
  padding: var(--space-2xl) 0;
  color: var(--text-dark);
}

.process-section .section-header h2 {
  color: var(--text-dark);
}

.process-section .section-header p {
  color: var(--text-dark);
  opacity: 0.8;
}

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

.process-step {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md), 0 8px 24px rgba(255, 183, 3, 0.2);
  transition: all 0.4s ease;
  position: relative;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: -20px;
  left: var(--space-md);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: white;
  box-shadow: var(--shadow-md);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 16px 32px rgba(255, 183, 3, 0.3);
}

.process-step h3 {
  margin-top: var(--space-md);
  color: var(--color-orange);
}

.glassmorphism-section {
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.glassmorphism-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><circle cx="100" cy="100" r="80" fill="white" opacity="0.05"/></svg>');
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl), inset 0 0 40px rgba(255, 255, 255, 0.1);
  color: white;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.glass-card h2 {
  color: white;
  margin-bottom: var(--space-md);
  text-align: center;
}

.glass-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 0;
  opacity: 0.95;
}

.cta-section {
  background: var(--color-purple);
  padding: var(--space-2xl) 0;
  text-align: center;
  color: white;
}

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

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-secondary {
  display: inline-block;
  background: white;
  color: var(--color-purple);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
}

.cta-button-secondary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(255, 255, 255, 0.4);
}

footer {
  background: #0d1117;
  color: var(--text-light);
  padding: var(--space-xl) 0 var(--space-md);
}

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

.footer-brand h3 {
  color: white;
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.footer-brand p {
  opacity: 0.8;
  line-height: 1.7;
}

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

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

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

.footer-links a {
  opacity: 0.8;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-teal);
  transform: translateX(4px);
}

.footer-contact p {
  margin-bottom: var(--space-sm);
  opacity: 0.8;
}

.footer-contact i {
  color: var(--color-teal);
  margin-right: 0.5rem;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

.page-header {
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-pink) 100%);
  padding: calc(var(--space-xl) + 80px) 0 var(--space-xl);
  text-align: center;
  color: white;
}

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

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.content-section {
  padding: var(--space-2xl) 0;
}

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

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-text h2 {
  color: var(--color-purple);
  margin-bottom: var(--space-md);
}

.content-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.content-text ul {
  list-style: none;
  margin-bottom: var(--space-md);
}

.content-text li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.content-text li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-teal);
}

.content-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.stat-card {
  background: linear-gradient(135deg, var(--color-teal), var(--color-purple));
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  color: white;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-card h3 {
  font-size: 3rem;
  color: white;
  margin-bottom: var(--space-sm);
}

.stat-card p {
  opacity: 0.9;
  margin-bottom: 0;
}

.form-section {
  background: var(--color-teal);
  padding: var(--space-2xl) 0;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
}

.form-container h2 {
  color: var(--color-purple);
  margin-bottom: var(--space-md);
  text-align: center;
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

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

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

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

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

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-group a {
  color: var(--color-teal);
  text-decoration: underline;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--color-teal), var(--color-purple));
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-md);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.contact-info {
  background: white;
  padding: var(--space-2xl) 0;
}

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

.contact-card {
  background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: white;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
}

.contact-card i {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

.contact-card h3 {
  color: white;
  margin-bottom: var(--space-sm);
}

.contact-card p {
  margin-bottom: 0;
  opacity: 0.9;
}

.contact-card a {
  color: white;
  text-decoration: underline;
}

.thanks-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) 0;
}

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

.thanks-content i {
  font-size: 5rem;
  color: var(--color-teal);
  margin-bottom: var(--space-md);
}

.thanks-content h1 {
  color: var(--color-purple);
  margin-bottom: var(--space-md);
}

.thanks-content p {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

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

.legal-content h2 {
  color: var(--color-purple);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content h3 {
  color: var(--color-teal);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

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

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

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

.last-updated {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 17, 23, 0.98);
  backdrop-filter: blur(20px);
  color: white;
  padding: var(--space-md);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  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(--color-teal);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
  background: #0096b8;
}

.cookie-btn.reject {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

.cookie-btn.customize {
  background: var(--color-purple);
  color: white;
}

.cookie-btn.customize:hover {
  background: #6a25a6;
}

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

  header {
    top: var(--space-sm);
    width: calc(100% - 2rem);
  }

  .nav-container {
    padding: var(--space-sm);
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px var(--space-lg) var(--space-lg);
    gap: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease;
    z-index: 999;
  }

  nav ul.active {
    right: 0;
  }

  nav li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  nav a {
    display: block;
    width: 100%;
    padding: var(--space-md);
  }

  .lang-switcher {
    margin-left: 0;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid #f0f0f0;
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1000;
  }

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

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

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

  .hero-content,
  .about-content,
  .content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-images {
    grid-template-columns: 1fr;
  }

  .hero-image:first-child {
    margin-top: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .services-grid,
  .process-steps,
  .stats-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding: calc(var(--space-xl) + 60px) 0 var(--space-xl);
  }

  .page-header {
    padding: calc(var(--space-lg) + 80px) 0 var(--space-lg);
  }

  .logo-link {
    font-size: 1.25rem;
  }

  .logo-link svg {
    width: 32px;
    height: 32px;
  }
}