:root {
  --color-sand: #E8DFD3;
  --color-clay: #C4A684;
  --color-stone: #7A6F5D;
  --color-earth: #4A4238;
  --color-charcoal: #2C2822;
  --color-warmwhite: #FAF8F5;
  --color-accent: #9B7E5C;
  --color-accent-light: #B89A7A;
  
  --shadow-sm: 0 1px 2px rgba(74, 66, 56, 0.04), 0 2px 4px rgba(74, 66, 56, 0.02);
  --shadow-md: 0 2px 4px rgba(74, 66, 56, 0.06), 0 4px 8px rgba(74, 66, 56, 0.04), 0 8px 16px rgba(74, 66, 56, 0.02);
  --shadow-lg: 0 4px 8px rgba(74, 66, 56, 0.08), 0 8px 16px rgba(74, 66, 56, 0.06), 0 16px 32px rgba(74, 66, 56, 0.04);
  --shadow-xl: 0 8px 16px rgba(74, 66, 56, 0.1), 0 16px 32px rgba(74, 66, 56, 0.08), 0 32px 64px rgba(74, 66, 56, 0.06);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-organic: 16px 24px 12px 20px;
  --radius-organic-alt: 20px 12px 24px 16px;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-earth);
  background: var(--color-warmwhite);
  overflow-x: hidden;
}

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

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

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

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

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

a {
  text-decoration: none;
  color: inherit;
  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-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: var(--space-md) 0;
}

header.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: var(--space-sm) 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--color-accent);
  transform: translateY(-1px);
}

.logo svg {
  width: 40px;
  height: 40px;
  margin-right: var(--space-sm);
}

nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--color-stone);
  position: relative;
  padding: var(--space-xs) 0;
  transition: all 0.3s ease;
}

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

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

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-sand);
  border-radius: var(--radius-md);
}

.lang-btn {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-stone);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: var(--color-accent);
  background: rgba(155, 126, 92, 0.1);
}

.lang-btn.active {
  color: var(--color-accent);
  background: rgba(155, 126, 92, 0.15);
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-charcoal);
  cursor: pointer;
  padding: var(--space-xs);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: var(--color-accent);
  transform: scale(1.1);
}

.hero {
  padding-top: 120px;
  padding-bottom: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.hero-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: var(--space-md);
  position: relative;
}

.hero-image-strip {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-organic);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: rotate(-0.5deg);
}

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

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-stone);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 1rem 2rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-warmwhite);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--color-accent-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: var(--color-accent);
  color: var(--color-warmwhite);
  transform: translateY(-2px);
}

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

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

.section-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

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

.section-description {
  font-size: 1.125rem;
  color: var(--color-stone);
  line-height: 1.7;
}

.decorative-strip {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-clay), transparent);
  margin: var(--space-2xl) 0;
  border-radius: 2px;
  opacity: 0.3;
}

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

.benefit-card {
  background: var(--color-warmwhite);
  padding: var(--space-lg);
  border-radius: var(--radius-organic);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  border: 1px solid rgba(196, 166, 132, 0.15);
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-clay));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-sand), var(--color-clay));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
  color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

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

.benefit-card p {
  color: var(--color-stone);
  line-height: 1.7;
}

.cascade-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.cascade-card {
  background: var(--color-warmwhite);
  padding: var(--space-lg);
  border-radius: var(--radius-organic-alt);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(196, 166, 132, 0.15);
  transition: all 0.4s ease;
  position: relative;
}

.cascade-card:nth-child(even) {
  margin-left: var(--space-lg);
  border-radius: var(--radius-organic);
}

.cascade-card:nth-child(odd) {
  margin-right: var(--space-lg);
}

.cascade-card:hover {
  transform: translateX(-4px) translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.cascade-card p {
  color: var(--color-stone);
  line-height: 1.7;
}

.process-section {
  background: linear-gradient(135deg, var(--color-sand), var(--color-warmwhite));
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(196, 166, 132, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(155, 126, 92, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.image-text-block:nth-child(even) {
  direction: rtl;
}

.image-text-block:nth-child(even) > * {
  direction: ltr;
}

.image-text-block img {
  width: 100%;
  border-radius: var(--radius-organic);
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
}

.image-text-block img:hover {
  transform: scale(1.02) rotate(0.5deg);
  box-shadow: var(--shadow-xl);
}

.text-content h3 {
  margin-bottom: var(--space-md);
}

.text-content p {
  color: var(--color-stone);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-warmwhite);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 166, 132, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: var(--space-md);
  background: none;
  border: none;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question i {
  font-size: 1rem;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 var(--space-md);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-md) var(--space-md);
}

.faq-answer p {
  color: var(--color-stone);
  line-height: 1.7;
}

.contact-section {
  background: var(--color-warmwhite);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info {
  background: linear-gradient(135deg, var(--color-sand), var(--color-warmwhite));
  padding: var(--space-xl);
  border-radius: var(--radius-organic);
  box-shadow: var(--shadow-md);
}

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

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

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

.contact-item-content h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  color: var(--color-accent);
}

.contact-item-content p {
  color: var(--color-stone);
  line-height: 1.6;
}

.contact-item-content a {
  color: var(--color-stone);
  transition: all 0.3s ease;
}

.contact-item-content a:hover {
  color: var(--color-accent);
}

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

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

.contact-form-container {
  background: var(--color-warmwhite);
  padding: var(--space-xl);
  border-radius: var(--radius-organic-alt);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(196, 166, 132, 0.15);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-charcoal);
  font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--color-sand);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--color-charcoal);
  background: var(--color-warmwhite);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(155, 126, 92, 0.1);
}

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

.iti {
  width: 100%;
}

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

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

.form-checkbox label {
  font-size: 0.875rem;
  color: var(--color-stone);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--color-accent);
  text-decoration: underline;
}

.form-checkbox a:hover {
  color: var(--color-accent-light);
}

.form-submit {
  width: 100%;
}

.thanks-container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 2.5rem;
  color: var(--color-warmwhite);
  box-shadow: var(--shadow-lg);
}

.thanks-container h1 {
  margin-bottom: var(--space-md);
}

.thanks-container p {
  font-size: 1.125rem;
  color: var(--color-stone);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

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

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

.legal-date {
  font-size: 0.875rem;
  color: var(--color-stone);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

footer {
  background: var(--color-charcoal);
  color: var(--color-sand);
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: var(--space-2xl);
}

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

.footer-section h3 {
  color: var(--color-warmwhite);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
  color: var(--color-sand);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  display: block;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--color-accent-light);
  transform: translateX(4px);
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(232, 223, 211, 0.2);
  padding-top: var(--space-lg);
  text-align: center;
  color: var(--color-clay);
  font-size: 0.875rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 40, 34, 0.98);
  backdrop-filter: blur(12px);
  color: var(--color-warmwhite);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  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;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

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

.cookie-text p {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--color-accent-light);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--color-accent);
  color: var(--color-warmwhite);
}

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

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

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

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

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

.bottom-nav {
  display: none;
}

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

  nav {
    display: none;
  }

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

  nav.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    z-index: 999;
    padding: var(--space-xl);
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
  }

  .nav-links a {
    font-size: 1.5rem;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: var(--space-xl);
  }

  .hero-image-strip {
    height: 300px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

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

  .cascade-card:nth-child(even),
  .cascade-card:nth-child(odd) {
    margin-left: 0;
    margin-right: 0;
  }

  .image-text-block {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .image-text-block:nth-child(even) {
    direction: ltr;
  }

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

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

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 -4px 16px rgba(74, 66, 56, 0.1);
    z-index: 1000;
    padding: var(--space-xs) 0;
  }

  .bottom-nav-links {
    display: flex;
    justify-content: space-around;
    width: 100%;
    list-style: none;
  }

  .bottom-nav-links li {
    flex: 1;
  }

  .bottom-nav-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: var(--space-xs);
    color: var(--color-stone);
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .bottom-nav-links a i {
    font-size: 1.25rem;
  }

  .bottom-nav-links a:hover,
  .bottom-nav-links a.active {
    color: var(--color-accent);
  }

  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.25rem;
  }

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

  .hero-image-strip {
    height: 250px;
  }

  .benefit-card,
  .cascade-card,
  .contact-form-container,
  .contact-info {
    padding: var(--space-md);
  }
}