:root {
  --clay-warm: #C4A57B;
  --charcoal-soft: #2D2D2D;
  --cream-natural: #F5F1E8;
  --terracotta-muted: #D4876F;
  --sage-whisper: #A8B5A0;
  --stone-light: #E8E4DC;
  --ink-faded: #4A4A4A;
  
  --shadow-soft: 0 2px 8px rgba(45,45,45,0.08), 0 8px 24px rgba(45,45,45,0.06);
  --shadow-medium: 0 4px 16px rgba(45,45,45,0.1), 0 12px 32px rgba(45,45,45,0.08);
  --shadow-heavy: 0 8px 24px rgba(45,45,45,0.12), 0 16px 48px rgba(45,45,45,0.1);
  
  --radius-sm: 8px 12px 10px 14px;
  --radius-md: 16px 20px 18px 22px;
  --radius-lg: 24px 32px 28px 36px;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-faded);
  background: var(--cream-natural);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--charcoal-soft);
  line-height: 1.2;
  font-weight: 600;
}

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

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

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

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

a {
  color: var(--clay-warm);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--terracotta-muted);
}

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

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

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

header {
  background: var(--stone-light);
  border-bottom: 1px solid rgba(196, 165, 123, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal-soft);
}

.logo-link:hover {
  color: var(--clay-warm);
}

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

nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

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

.nav-links a {
  color: var(--ink-faded);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clay-warm);
  transition: width 0.3s ease;
}

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

.nav-links a:hover {
  color: var(--charcoal-soft);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: var(--spacing-sm);
  padding-left: var(--spacing-sm);
  border-left: 1px solid rgba(196, 165, 123, 0.3);
}

.lang-btn {
  padding: 6px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-faded);
  border-radius: 6px 8px 7px 9px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: var(--cream-natural);
  color: var(--clay-warm);
}

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

.lang-divider {
  color: rgba(196, 165, 123, 0.4);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--charcoal-soft);
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: var(--clay-warm);
}

.hero {
  background: linear-gradient(135deg, var(--stone-light) 0%, var(--cream-natural) 100%);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 165, 123, 0.15) 0%, transparent 70%);
  border-radius: 45% 55% 52% 48%;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-30px, 30px) rotate(5deg); }
}

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

.hero-text h1 {
  background: linear-gradient(135deg, var(--clay-warm) 0%, var(--terracotta-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
}

.hero-text p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--ink-faded);
  margin-bottom: var(--spacing-md);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-heavy);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 10px 14px 12px 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background: var(--clay-warm);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--terracotta-muted);
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: var(--clay-warm);
  color: white;
}

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

.section-alt {
  background: var(--stone-light);
}

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

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

.section-header p {
  font-size: 1.15rem;
  color: var(--ink-faded);
  max-width: 720px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--spacing-md);
}

.feature-card {
  background: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--clay-warm), var(--terracotta-muted));
  transition: height 0.4s ease;
}

.feature-card:hover::before {
  height: 100%;
}

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

.feature-card.large {
  grid-column: span 6;
  grid-row: span 2;
}

.feature-card.medium {
  grid-column: span 6;
}

.feature-card.small {
  grid-column: span 4;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--clay-warm), var(--terracotta-muted));
  border-radius: 12px 16px 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
  color: white;
  font-size: 1.75rem;
}

.feature-card h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--charcoal-soft);
}

.feature-card p {
  color: var(--ink-faded);
  line-height: 1.7;
}

.feature-card img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-sm);
  object-fit: cover;
  aspect-ratio: 16/10;
}

.timeline {
  position: relative;
  padding: var(--spacing-md) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--clay-warm), var(--terracotta-muted));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  background: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.timeline-marker {
  width: 20px;
  height: 20px;
  background: var(--clay-warm);
  border: 4px solid var(--cream-natural);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: var(--shadow-soft);
}

.timeline-date {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--clay-warm);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
}

.timeline-content h4 {
  margin-bottom: var(--spacing-xs);
}

.timeline-content p {
  color: var(--ink-faded);
}

.floating-cta {
  position: fixed;
  right: var(--spacing-md);
  bottom: var(--spacing-md);
  z-index: 999;
  transition: all 0.3s ease;
}

.floating-cta-btn {
  background: var(--clay-warm);
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: var(--shadow-heavy);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.floating-cta-btn:hover {
  background: var(--terracotta-muted);
  transform: scale(1.1) rotate(5deg);
}

.floating-cta-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-heavy);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.floating-cta-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-cta-panel h4 {
  margin-bottom: var(--spacing-sm);
  color: var(--charcoal-soft);
}

.floating-cta-panel p {
  margin-bottom: var(--spacing-sm);
  font-size: 0.95rem;
}

footer {
  background: var(--charcoal-soft);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.footer-card {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.footer-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.footer-card h4 {
  color: var(--clay-warm);
  margin-bottom: var(--spacing-sm);
  font-size: 1.25rem;
}

.footer-card p,
.footer-card a {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
}

.footer-card a:hover {
  color: var(--clay-warm);
  padding-left: 4px;
}

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

.footer-card ul li {
  margin-bottom: 8px;
}

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

.footer-bottom a {
  color: var(--clay-warm);
  margin: 0 8px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.contact-info {
  background: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

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

.contact-item {
  display: flex;
  align-items: start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.contact-item i {
  color: var(--clay-warm);
  font-size: 1.5rem;
  margin-top: 4px;
}

.contact-item div h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--charcoal-soft);
}

.contact-item div p {
  color: var(--ink-faded);
  line-height: 1.6;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-top: var(--spacing-md);
  height: 300px;
}

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

.contact-form {
  background: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--charcoal-soft);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--stone-light);
  border-radius: 8px 10px 9px 11px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--cream-natural);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clay-warm);
  background: white;
}

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

.checkbox-group {
  display: flex;
  align-items: start;
  gap: 12px;
}

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

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

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

.thanks-container {
  text-align: center;
  max-width: 600px;
  margin: var(--spacing-xl) auto;
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--clay-warm), var(--terracotta-muted));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  color: white;
  font-size: 2.5rem;
}

.thanks-container h1 {
  margin-bottom: var(--spacing-sm);
}

.thanks-container p {
  font-size: 1.15rem;
  color: var(--ink-faded);
  margin-bottom: var(--spacing-md);
}

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

.legal-content h1 {
  margin-bottom: var(--spacing-sm);
}

.legal-content .last-updated {
  color: var(--ink-faded);
  font-style: italic;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--stone-light);
}

.legal-content h2 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  color: var(--charcoal-soft);
}

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

.legal-content ul {
  margin: var(--spacing-sm) 0 var(--spacing-md) var(--spacing-md);
  line-height: 1.8;
}

.legal-content ul li {
  margin-bottom: 8px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.team-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-card-content {
  padding: var(--spacing-md);
}

.team-card h3 {
  margin-bottom: 4px;
  color: var(--charcoal-soft);
}

.team-card .role {
  color: var(--clay-warm);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: var(--spacing-sm);
}

.team-card p {
  color: var(--ink-faded);
  line-height: 1.7;
}

.service-detail {
  background: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  margin-bottom: var(--spacing-md);
}

.service-detail h3 {
  color: var(--charcoal-soft);
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-detail h3 i {
  color: var(--clay-warm);
  font-size: 1.5rem;
}

.service-detail p {
  color: var(--ink-faded);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}

.service-detail ul {
  margin-left: var(--spacing-md);
  color: var(--ink-faded);
  line-height: 1.8;
}

.service-detail ul li {
  margin-bottom: 8px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-md);
}

.step-card {
  background: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

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

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--clay-warm), var(--terracotta-muted));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-card h4 {
  margin-bottom: var(--spacing-xs);
  color: var(--charcoal-soft);
}

.step-card p {
  color: var(--ink-faded);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-banner {
  background: linear-gradient(135deg, var(--clay-warm), var(--terracotta-muted));
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  color: white;
  box-shadow: var(--shadow-medium);
}

.cta-banner h2 {
  color: white;
  margin-bottom: var(--spacing-sm);
}

.cta-banner p {
  font-size: 1.15rem;
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
}

.cta-banner .btn {
  background: white;
  color: var(--clay-warm);
}

.cta-banner .btn:hover {
  background: var(--cream-natural);
  transform: translateY(-2px);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal-soft);
  color: white;
  padding: var(--spacing-md);
  box-shadow: var(--shadow-heavy);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent p {
  flex: 1;
  min-width: 280px;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 24px;
  border: none;
  border-radius: 8px 10px 9px 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

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

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

.cookie-reject {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.cookie-customize {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.cookie-customize:hover {
  background: rgba(255, 255, 255, 0.25);
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  margin-bottom: var(--spacing-md);
  color: var(--charcoal-soft);
}

.cookie-category {
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  background: var(--cream-natural);
  border-radius: var(--radius-sm);
}

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

.cookie-category h4 {
  color: var(--charcoal-soft);
  font-size: 1.1rem;
}

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

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

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

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

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

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

.cookie-category p {
  font-size: 0.9rem;
  color: var(--ink-faded);
  line-height: 1.6;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: var(--spacing-md);
}

.cookie-modal-buttons button {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px 10px 9px 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 968px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--stone-light);
    flex-direction: column;
    padding: var(--spacing-lg) var(--spacing-md);
    box-shadow: var(--shadow-heavy);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-links.active {
    display: flex;
    transform: translateX(0);
  }

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

  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }

  .hero-content,
  .contact-section {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .feature-card.large,
  .feature-card.medium,
  .feature-card.small {
    grid-column: span 12;
  }

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

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }

  .timeline-marker {
    left: 30px;
  }

  .floating-cta {
    right: var(--spacing-sm);
    bottom: var(--spacing-sm);
  }

  .floating-cta-btn {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .floating-cta-panel {
    right: -120px;
    min-width: 260px;
  }

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

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

  .cookie-buttons {
    justify-content: stretch;
  }

  .cookie-buttons button {
    flex: 1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .container,
  .container-narrow {
    padding: 0 var(--spacing-sm);
  }

  .section {
    padding: var(--spacing-lg) 0;
  }

  .hero {
    padding: var(--spacing-lg) 0;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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