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

:root {
  --beige: #f5f1e8;
  --deep-brown: #5c3a21;
  --electric-brown: #a56a3a;
  --dark-brown: #3f2b1e;
  --soft-gray: #e0e0e0;
  --light-beige: #fbf8f5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--beige);
  color: var(--dark-brown);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 100px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--beige);
  border-bottom: 1px solid var(--soft-gray);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav a {
  color: var(--deep-brown);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--electric-brown);
  transition: width 0.3s ease;
}

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

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

.btn-primary {
  background-color: var(--electric-brown);
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid var(--electric-brown);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--electric-brown);
  box-shadow: 0 0 15px rgba(165, 106, 58, 0.3);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--beige);
  z-index: 2000;
  transition: right 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.active {
  right: 0;
}

.menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.mobile-nav a {
  color: var(--deep-brown);
  text-decoration: none;
  font-weight: 600;
  font-size: 24px;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--electric-brown);
}

.hero {
  margin-top: 80px;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--beige) 0%, var(--light-beige) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 700;
  color: var(--deep-brown);
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-brown) 0%, transparent 100%);
  margin-bottom: 30px;
}

.hero-text p {
  font-size: 18px;
  color: var(--dark-brown);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
}

.btn-hero {
  background-color: var(--electric-brown);
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--electric-brown);
}

.btn-hero:hover {
  background-color: transparent;
  color: var(--electric-brown);
  box-shadow: 0 0 20px rgba(165, 106, 58, 0.4);
  transform: translateY(-2px);
}

.hero-graphic {
  position: relative;
  height: 400px;
}

.geometric-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border: 1px solid var(--soft-gray);
  border-radius: 50%;
  opacity: 0.3;
}

.geometric-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--electric-brown) 50%, transparent 100%);
}

.features {
  padding: 120px 0;
  background-color: var(--beige);
}

.features h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--deep-brown);
  text-align: center;
  margin-bottom: 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.feature-card {
  background-color: var(--light-beige);
  padding: 50px;
  border: 1px solid var(--soft-gray);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  box-shadow: 0 8px 30px rgba(92, 58, 33, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  margin-bottom: 30px;
}

.feature-icon.floating {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--deep-brown);
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 16px;
  color: var(--dark-brown);
  line-height: 1.7;
}

.testimonials {
  padding: 120px 0;
  background-color: var(--light-beige);
}

.testimonials h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--deep-brown);
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  background-color: var(--beige);
  padding: 40px;
  border-left: 2px solid var(--electric-brown);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  box-shadow: 0 5px 20px rgba(92, 58, 33, 0.08);
}

.quote-mark {
  font-size: 60px;
  color: var(--electric-brown);
  line-height: 1;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-size: 16px;
  color: var(--dark-brown);
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-divider {
  width: 40px;
  height: 1px;
  background-color: var(--soft-gray);
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-brown);
}

.pricing {
  padding: 120px 0;
  background-color: var(--beige);
}

.pricing h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--deep-brown);
  text-align: center;
  margin-bottom: 80px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pricing-card {
  background-color: var(--light-beige);
  padding: 50px 40px;
  border: 1px solid var(--deep-brown);
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.pricing-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover {
  border-color: var(--electric-brown);
  box-shadow: 0 0 25px rgba(165, 106, 58, 0.2);
}

.pricing-card.featured {
  border-width: 2px;
  border-color: var(--electric-brown);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--electric-brown);
  color: white;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 20px;
}

.price-divider {
  width: 40px;
  height: 2px;
  background-color: var(--electric-brown);
  margin-bottom: 20px;
}

.pricing-description {
  font-size: 15px;
  color: var(--dark-brown);
  margin-bottom: 25px;
  min-height: 50px;
}

.price {
  font-size: 42px;
  font-weight: 700;
  color: var(--electric-brown);
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
}

.pricing-features li {
  font-size: 15px;
  color: var(--dark-brown);
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-gray);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.btn-pricing {
  width: 100%;
  background-color: transparent;
  color: var(--deep-brown);
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--deep-brown);
}

.btn-pricing:hover {
  background-color: var(--electric-brown);
  color: white;
  border-color: var(--electric-brown);
}

.contact {
  padding: 120px 0;
  background-color: var(--light-beige);
}

.contact h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--deep-brown);
  text-align: center;
  margin-bottom: 80px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--electric-brown);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 18px;
  color: var(--deep-brown);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--soft-gray);
  background-color: var(--beige);
  color: var(--dark-brown);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--electric-brown);
  box-shadow: 0 0 10px rgba(165, 106, 58, 0.1);
}

.contact-form button {
  background-color: var(--electric-brown);
  color: white;
  padding: 16px 40px;
  border: 2px solid var(--electric-brown);
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.contact-form button:hover {
  background-color: transparent;
  color: var(--electric-brown);
}

.footer {
  background-color: var(--beige);
  border-top: 1px solid var(--soft-gray);
  padding: 40px 0;
}

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

.footer p {
  font-size: 14px;
  color: var(--deep-brown);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  font-size: 14px;
  color: var(--deep-brown);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--electric-brown);
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--light-beige);
  border-top: 1px solid var(--soft-gray);
  padding: 20px 0;
  z-index: 1000;
  display: none;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-content p {
  font-size: 14px;
  color: var(--dark-brown);
  flex: 1;
}

.btn-cookie {
  background-color: var(--electric-brown);
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

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

.legal-page {
  margin-top: 80px;
  padding: 100px 0;
  background-color: var(--beige);
}

.legal-page h1 {
  font-size: 52px;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 60px;
  text-align: center;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--light-beige);
  padding: 60px;
  border: 1px solid var(--soft-gray);
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--deep-brown);
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--soft-gray);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  font-size: 16px;
  color: var(--dark-brown);
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-content ul {
  margin-left: 25px;
  margin-bottom: 20px;
}

.legal-content li {
  font-size: 16px;
  color: var(--dark-brown);
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-content a {
  color: var(--electric-brown);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: var(--deep-brown);
}

.legal-update {
  margin-top: 50px;
  font-size: 14px;
  color: var(--deep-brown);
  font-style: italic;
  text-align: center;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 60px;
  }

  .hero-text h1 {
    font-size: 52px;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 40px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-content .btn-primary {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-text h1 {
    font-size: 44px;
  }

  .hero-graphic {
    height: 300px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .legal-content {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 30px;
  }

  .hero {
    padding: 80px 0;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .features,
  .testimonials,
  .pricing,
  .contact {
    padding: 80px 0;
  }

  .features h2,
  .testimonials h2,
  .pricing h2,
  .contact h2 {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .feature-card {
    padding: 40px 30px;
  }

  .testimonial-card {
    padding: 30px;
  }

  .pricing-card {
    padding: 40px 30px;
  }

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

  .btn-cookie {
    width: 100%;
  }

  .legal-page {
    padding: 60px 0;
  }

  .legal-page h1 {
    font-size: 36px;
  }

  .legal-content {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .features h2,
  .testimonials h2,
  .pricing h2,
  .contact h2 {
    font-size: 28px;
  }

  .feature-card,
  .testimonial-card,
  .pricing-card {
    padding: 30px 20px;
  }

  .legal-content {
    padding: 20px;
  }
}
