:root {
  --color-primary: #2C2C2C;
  --color-secondary: #6B6B6B;
  --color-accent: #B8956A;
  --color-accent-light: #D4B896;
  --color-bg: #FAFAF8;
  --color-surface: #FFFFFF;
  --color-text: #2C2C2C;
  --color-text-light: #6B6B6B;
  --color-border: #E8E8E6;
  --color-hover: #F5F5F3;
  --spacing-unit: 1.5rem;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-subtle: 0 2px 20px rgba(0, 0, 0, 0.04);
  --shadow-elevated: 0 8px 40px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  margin-bottom: 2rem;
}

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

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

p {
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  max-width: 1600px;
  margin: 0 auto;
}

.logo {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-smooth);
}

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

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 400;
}

.lang-btn {
  color: var(--color-text-light);
  transition: var(--transition-smooth);
  padding: 0.25rem 0.5rem;
}

.lang-btn:hover {
  color: var(--color-accent);
}

.lang-btn.active {
  color: var(--color-primary);
  font-weight: 500;
}

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

.hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-surface);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
}

.menu-nav {
  text-align: center;
}

.menu-nav ul {
  list-style: none;
}

.menu-nav li {
  margin: 2rem 0;
}

.menu-nav a {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--color-text);
  transition: var(--transition-smooth);
  display: inline-block;
}

.menu-nav a:hover {
  color: var(--color-accent);
  transform: translateX(10px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 4rem;
  position: relative;
}

.hero-content {
  width: 100%;
}

.hero-headline {
  margin-bottom: 4rem;
  max-width: 900px;
}

.hero-headline h1 {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-light);
  max-width: 700px;
  line-height: 1.6;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.hero-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 3rem 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--color-accent);
  transition: var(--transition-smooth);
}

.hero-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--color-accent-light);
}

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

.hero-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
  font-size: 1.75rem;
}

.hero-card h3 {
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  margin: 0 auto 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.benefit-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.benefit-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

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

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 2rem 0;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text);
  transition: var(--transition-smooth);
}

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

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  padding-top: 1.5rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  border-color: var(--color-accent-light);
  box-shadow: var(--shadow-subtle);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-weight: 400;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.image-card {
  position: relative;
  overflow: hidden;
  margin: 3rem 0;
}

.image-card img {
  width: 100%;
  height: auto;
  transition: var(--transition-smooth);
}

.image-card:hover img {
  transform: scale(1.02);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
  padding: 4rem 0;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.stat-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: clamp(2rem, 5vw, 4rem);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 400;
  color: var(--color-text);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--color-text);
  transition: var(--transition-smooth);
}

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

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

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 2rem 0;
}

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

.checkbox-group label {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-light);
  cursor: pointer;
}

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

.btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--color-primary);
  color: var(--color-surface);
  border: 1px solid var(--color-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn:hover {
  background: transparent;
  color: var(--color-primary);
}

.btn-accent {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-surface);
}

.btn-accent:hover {
  background: transparent;
  color: var(--color-accent);
}

.btn-full {
  width: 100%;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.area-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 2rem;
  transition: var(--transition-smooth);
  text-align: center;
}

.area-card:hover {
  border-color: var(--color-accent-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-subtle);
}

.area-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.area-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.content-section {
  padding: 4rem 0;
}

.content-block {
  margin-bottom: 3rem;
}

.content-block h2 {
  margin-bottom: 1.5rem;
}

.content-block h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-block ul {
  list-style: none;
  padding-left: 0;
}

.content-block ul li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.content-block ul li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  color: var(--color-accent);
  font-size: 1.5rem;
  line-height: 1.4;
}

footer {
  background: var(--color-primary);
  color: var(--color-surface);
  padding: 2rem 0;
  margin-top: 6rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-surface);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

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

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

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

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

.cookie-btn {
  padding: 0.75rem 2rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

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

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

.cookie-btn.accept:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.thanks-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

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

.thanks-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 3rem;
}

.ambient-element {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 149, 106, 0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.ambient-element:nth-child(1) {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.ambient-element:nth-child(2) {
  bottom: 15%;
  left: 10%;
  animation-delay: 7s;
  width: 300px;
  height: 300px;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

@media (max-width: 768px) {
  .hero-cards {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .menu-nav a {
    font-size: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-card {
    padding: 2rem 1.5rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
}