:root {
  --color-electric-blue: #0066FF;
  --color-vibrant-coral: #FF6B6B;
  --color-bright-yellow: #FFD93D;
  --color-deep-purple: #6C5CE7;
  --color-emerald: #00D9A3;
  
  --color-text-dark: #1a1a2e;
  --color-text-light: #f8f9fa;
  --color-text-muted: #6c757d;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.15), 0 10px 10px rgba(0,0,0,0.04), 0 4px 4px rgba(0,0,0,0.02);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  
  --space-xs: clamp(0.75rem, 2vw, 1rem);
  --space-sm: clamp(1rem, 3vw, 1.5rem);
  --space-md: clamp(1.5rem, 4vw, 2.5rem);
  --space-lg: clamp(2.5rem, 6vw, 4rem);
  --space-xl: clamp(4rem, 10vw, 8rem);
  
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-quick: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: #ffffff;
}

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

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
}

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

h3 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

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

p {
  margin-bottom: 1.25rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

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

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

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

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

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-electric-blue);
  transition: var(--transition-quick);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-quick);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-electric-blue);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

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

.nav-links a:hover {
  color: var(--color-electric-blue);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.lang-btn {
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-quick);
  color: var(--color-text-muted);
}

.lang-btn:hover {
  background: rgba(0, 102, 255, 0.1);
  color: var(--color-electric-blue);
}

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

.lang-divider {
  color: rgba(0, 0, 0, 0.2);
}

.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 {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

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

.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 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-electric-blue) 0%, var(--color-deep-purple) 100%);
  color: var(--color-text-light);
  padding: var(--space-xl) 0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

.hero-text p {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  margin-bottom: var(--space-md);
  opacity: 0.95;
  line-height: 1.6;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition-smooth);
}

.hero-image img:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

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

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

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: none;
}

.btn-secondary:hover {
  background: white;
  color: var(--color-electric-blue);
  transform: translateY(-3px);
}

.btn i {
  transition: var(--transition-quick);
}

.btn:hover i {
  transform: translateX(4px);
}

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

.section-coral {
  background: linear-gradient(135deg, var(--color-vibrant-coral) 0%, #ff8787 100%);
  color: var(--color-text-light);
  margin: var(--space-lg) var(--space-md);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transform: translateY(-40px);
}

.section-yellow {
  background: linear-gradient(135deg, var(--color-bright-yellow) 0%, #ffe55d 100%);
  color: var(--color-text-dark);
  margin: var(--space-lg) var(--space-md);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transform: translateY(-40px);
}

.section-purple {
  background: linear-gradient(135deg, var(--color-deep-purple) 0%, #8777d9 100%);
  color: var(--color-text-light);
  margin: var(--space-lg) var(--space-md);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transform: translateY(-40px);
}

.section-emerald {
  background: linear-gradient(135deg, var(--color-emerald) 0%, #1ae5b3 100%);
  color: var(--color-text-dark);
  margin: var(--space-lg) var(--space-md);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transform: translateY(-40px);
}

.section-white {
  background: white;
  margin: var(--space-lg) var(--space-md);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transform: translateY(-40px);
}

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

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

.section-header p {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

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

.benefit-card p {
  margin-bottom: 0;
  opacity: 0.95;
  line-height: 1.6;
}

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

.content-split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

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

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

.process-steps {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.step:hover {
  transform: translateX(12px);
  background: rgba(255, 255, 255, 0.25);
}

.step-number {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.step-content p {
  margin-bottom: 0;
  opacity: 0.95;
}

.cta-section {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

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

.cta-section p {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.report-samples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.report-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

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

.report-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

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

.report-card h3 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

.report-card p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.report-features {
  list-style: none;
  margin-top: var(--space-sm);
}

.report-features li {
  padding: 0.5rem 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.report-features li i {
  color: var(--color-emerald);
  font-size: 0.875rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.contact-info {
  background: linear-gradient(135deg, var(--color-electric-blue) 0%, var(--color-deep-purple) 100%);
  color: var(--color-text-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-info h3 {
  margin-bottom: var(--space-md);
}

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

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

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

.contact-item-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  opacity: 0.9;
}

.contact-item-content p {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 500;
}

.map-container {
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: var(--transition-quick);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-electric-blue);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

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

.iti {
  width: 100%;
}

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

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

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  cursor: pointer;
  margin-bottom: 0;
}

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

.btn-submit {
  width: 100%;
  background: var(--color-electric-blue);
  color: white;
  padding: 1.125rem 2rem;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
}

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

.thanks-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

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

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

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

.thanks-content p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

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

.legal-content h1 {
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

.legal-updated {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}

.legal-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-dark);
}

.legal-content h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

.legal-content p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

.legal-content ul, .legal-content ol {
  margin-left: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

footer {
  background: var(--color-text-dark);
  color: var(--color-text-light);
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: var(--space-xl);
}

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

.footer-about h3 {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.footer-about p {
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links h4 {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  opacity: 0.8;
  transition: var(--transition-quick);
  font-size: 0.95rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-electric-blue);
  padding-left: 4px;
}

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

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--color-electric-blue);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-deep-purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(12px);
  color: white;
  padding: var(--space-md);
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

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

.cookie-content {
  max-width: 1400px;
  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: 280px;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
  opacity: 0.95;
}

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

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-quick);
  border: 2px solid transparent;
}

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

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

.cookie-btn-decline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  border-color: white;
}

.cookie-btn-customize {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn-customize:hover {
  border-color: white;
}

.cookie-settings {
  display: none;
  max-width: 1400px;
  margin: var(--space-md) auto 0;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.cookie-category {
  margin-bottom: var(--space-sm);
  padding: var(--space-sm);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
}

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

.cookie-category h4 {
  font-size: 1rem;
  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: rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  transition: var(--transition-quick);
}

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

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

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

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

.cookie-category p {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0;
}

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

.feature-item {
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-electric-blue) 0%, var(--color-deep-purple) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  margin-bottom: var(--space-sm);
}

.feature-item h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

.feature-item p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-xl);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    color: white;
    font-size: 1.125rem;
    width: 100%;
  }
  
  .nav-links a::after {
    background: white;
  }
  
  .lang-switcher {
    border-left: none;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 0;
    padding-top: 1rem;
    margin-left: 0;
    width: 100%;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    margin-top: 70px;
    padding: var(--space-lg) 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-image img {
    transform: none;
  }
  
  .content-split {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .content-split.reverse {
    direction: ltr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
  
  .section-coral,
  .section-yellow,
  .section-purple,
  .section-emerald,
  .section-white {
    margin: var(--space-md) 1rem;
    transform: translateY(-20px);
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .report-samples {
    grid-template-columns: 1fr;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
  
  .back-to-top {
    width: 48px;
    height: 48px;
    bottom: 1rem;
    right: 1rem;
  }
}