:root {
  --sand-50: #faf8f5;
  --sand-100: #f2ede4;
  --sand-200: #e8dfd0;
  --sand-300: #d4c5ab;
  --terracotta-400: #c97b5e;
  --terracotta-500: #b85d3f;
  --terracotta-600: #9d4a2f;
  --slate-700: #3d4b52;
  --slate-800: #2a3438;
  --slate-900: #1a2124;
  --moss-500: #7a9175;
  --moss-600: #5f7359;
  
  --shadow-soft: 0 2px 8px rgba(58, 75, 82, 0.06), 0 8px 24px rgba(58, 75, 82, 0.08);
  --shadow-medium: 0 4px 16px rgba(58, 75, 82, 0.1), 0 12px 40px rgba(58, 75, 82, 0.12);
  --shadow-glow: 0 4px 20px rgba(201, 123, 94, 0.15), 0 8px 40px rgba(201, 123, 94, 0.1);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-organic: 48% 52% 51% 49% / 47% 53% 47% 53%;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--slate-800);
  background: var(--sand-50);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.2;
  color: var(--slate-900);
  font-weight: 400;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 0.875rem;
}

p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.35s 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 & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 197, 171, 0.3);
  transition: all 0.4s ease;
}

header.scrolled {
  background: rgba(250, 248, 245, 0.96);
  box-shadow: var(--shadow-soft);
}

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

.logo {
  display: flex;
  align-items: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  color: var(--slate-900);
  gap: 0.75rem;
}

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

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

.nav-links a {
  font-weight: 500;
  color: var(--slate-700);
  position: relative;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
}

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

.nav-links a:hover {
  color: var(--terracotta-500);
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--sand-300);
}

.lang-btn {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--slate-700);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: var(--terracotta-500);
  background: var(--sand-100);
}

.lang-btn.active {
  color: var(--terracotta-500);
  background: var(--sand-200);
}

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

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

.mobile-menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--slate-800);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding-top: 6rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 85vh;
}

.hero-side {
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-side.problem {
  background: linear-gradient(135deg, var(--sand-100) 0%, var(--sand-200) 100%);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

.hero-side.solution {
  background: linear-gradient(135deg, var(--terracotta-500) 0%, var(--terracotta-600) 100%);
  color: var(--sand-50);
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.hero-side.solution h1,
.hero-side.solution h3,
.hero-side.solution p {
  color: var(--sand-50);
}

.hero-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  width: fit-content;
}

.hero-side.problem .hero-label {
  background: var(--sand-300);
  color: var(--slate-800);
}

.typed-cursor {
  color: var(--terracotta-500);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--terracotta-500);
  color: var(--sand-50);
  box-shadow: 0 4px 16px rgba(201, 123, 94, 0.25), 0 8px 32px rgba(201, 123, 94, 0.15);
}

.btn-primary:hover {
  background: var(--terracotta-600);
  box-shadow: 0 6px 24px rgba(201, 123, 94, 0.35), 0 12px 48px rgba(201, 123, 94, 0.25);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--sand-50);
  color: var(--terracotta-500);
  border: 2px solid var(--terracotta-500);
}

.btn-secondary:hover {
  background: var(--terracotta-500);
  color: var(--sand-50);
  box-shadow: 0 4px 16px rgba(201, 123, 94, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--sand-50);
  border: 2px solid var(--sand-50);
}

.btn-outline:hover {
  background: var(--sand-50);
  color: var(--terracotta-500);
  transform: translateY(-2px);
}

/* Services Section */
.services {
  padding: var(--space-xl) 0;
  background: var(--sand-50);
}

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

.service-card {
  background: var(--sand-100);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-card:nth-child(odd) {
  border-radius: 32% 68% 68% 32% / 47% 53% 47% 53%;
}

.service-card:nth-child(even) {
  border-radius: 68% 32% 32% 68% / 53% 47% 53% 47%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  background: var(--sand-50);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--terracotta-400), var(--terracotta-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--sand-50);
  box-shadow: var(--shadow-soft);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--slate-900);
}

.service-card p {
  color: var(--slate-700);
  line-height: 1.8;
  margin-bottom: 0;
}

/* Dashboard Widget Layout */
.dashboard-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(180deg, var(--sand-50) 0%, var(--sand-100) 100%);
}

.widget-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.widget {
  background: var(--sand-50);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--sand-200);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.widget:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.widget-large {
  grid-column: span 8;
}

.widget-medium {
  grid-column: span 6;
}

.widget-small {
  grid-column: span 4;
}

.widget-tall {
  grid-row: span 2;
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--sand-200);
}

.widget-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--moss-500), var(--moss-600));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--sand-50);
}

.widget-title {
  font-size: 1.25rem;
  margin: 0;
}

/* Values Section */
.values {
  padding: var(--space-xl) 0;
  background: var(--sand-50);
}

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

.value-card {
  background: var(--sand-100);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-200);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--terracotta-400);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--terracotta-400), var(--terracotta-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--sand-50);
  box-shadow: var(--shadow-soft);
}

/* CTA Section */
.cta-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--slate-800) 0%, var(--slate-900) 100%);
  color: var(--sand-50);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 123, 94, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2,
.cta-content p {
  color: var(--sand-50);
}

.cta-content p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  box-shadow: var(--shadow-medium);
  transform: scale(1.02);
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(42, 52, 56, 0.95), transparent);
  color: var(--sand-50);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

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

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

.contact-info {
  background: var(--sand-100);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-200);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--terracotta-400), var(--terracotta-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--sand-50);
  flex-shrink: 0;
}

.contact-form {
  background: var(--sand-50);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-200);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: var(--slate-800);
  font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  background: var(--sand-50);
  color: var(--slate-800);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta-500);
  box-shadow: 0 0 0 3px rgba(201, 123, 94, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

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

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

.map-container {
  margin-top: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--sand-200);
  box-shadow: var(--shadow-soft);
}

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

/* Footer */
footer {
  background: var(--slate-900);
  color: var(--sand-200);
  padding: var(--space-lg) 0 var(--space-md);
}

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

.footer-about h3 {
  color: var(--sand-50);
  margin-bottom: 1rem;
}

.footer-about p {
  color: var(--sand-200);
  line-height: 1.8;
}

.footer-links h4 {
  color: var(--sand-50);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: var(--sand-200);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(212, 197, 171, 0.15);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--sand-200);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--slate-900);
  color: var(--sand-50);
  padding: 1.5rem;
  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-consent.show {
  transform: translateY(0);
}

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

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

.cookie-text p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.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.9375rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn.accept {
  background: var(--terracotta-500);
  color: var(--sand-50);
}

.cookie-btn.accept:hover {
  background: var(--terracotta-600);
}

.cookie-btn.reject {
  background: transparent;
  color: var(--sand-200);
  border: 1px solid var(--sand-200);
}

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

.cookie-btn.customize {
  background: var(--sand-200);
  color: var(--slate-900);
}

.cookie-btn.customize:hover {
  background: var(--sand-100);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 33, 36, 0.85);
  backdrop-filter: blur(4px);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-settings-modal.show {
  display: flex;
}

.cookie-settings-content {
  background: var(--sand-50);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-medium);
}

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

.cookie-settings-header h3 {
  margin: 0;
}

.close-settings {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--slate-700);
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.close-settings:hover {
  color: var(--terracotta-500);
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--sand-100);
  border-radius: var(--radius-md);
}

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

.cookie-category h4 {
  margin: 0;
  font-size: 1.125rem;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--sand-300);
  border-radius: 26px;
  transition: 0.3s;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .toggle-slider {
  background: var(--terracotta-500);
}

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

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

.cookie-category p {
  font-size: 0.875rem;
  color: var(--slate-700);
  margin: 0;
  line-height: 1.6;
}

.cookie-settings-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cookie-settings-actions button {
  flex: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .widget-large {
    grid-column: span 12;
  }
  
  .widget-medium {
    grid-column: span 6;
  }
  
  .widget-small {
    grid-column: span 6;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 3rem;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--sand-50);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    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: 1.5rem;
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.125rem;
  }
  
  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--sand-300);
    padding-top: 1rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .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-split {
    grid-template-columns: 1fr;
  }
  
  .hero-side.problem {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }
  
  .hero-side.solution {
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .widget-medium,
  .widget-small {
    grid-column: span 12;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-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 {
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .hero-side {
    padding: var(--space-lg) var(--space-md);
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Print Styles */
@media print {
  header,
  .cookie-consent,
  .mobile-menu-toggle {
    display: none;
  }
}