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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #5C3A21;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 201, 179, 0.3);
  transition: all 0.3s ease;
}

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

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

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

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav a {
  color: #5C3A21;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #5C3A21;
  transition: width 0.3s ease;
}

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

.cta-button {
  background-color: #5C3A21;
  color: #FFFFFF;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background-color: #3d2516;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(92, 58, 33, 0.25);
}

.cta-button:active {
  transform: translateY(0);
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 32px;
}

.mobile-nav a {
  color: #5C3A21;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.hero {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #5C3A21;
  letter-spacing: -1px;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #5C3A21;
  opacity: 0.9;
}

.hero-cta {
  font-size: 18px;
  padding: 16px 36px;
}

.hero-shape {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(217, 201, 179, 0.3) 0%, rgba(217, 201, 179, 0.1) 100%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
}

.about {
  padding: 80px 0 40px;
  text-align: center;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #5C3A21;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 18px;
  color: #5C3A21;
  opacity: 0.85;
}

.features {
  padding: 60px 0 100px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  background-color: #D9C9B3;
  padding: 40px 32px;
  border-radius: 16px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

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

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(92, 58, 33, 0.15);
}

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

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #5C3A21;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #5C3A21;
  opacity: 0.9;
}

.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(217, 201, 179, 0.1) 0%, transparent 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 36px;
  border-radius: 16px;
  border: 2px solid #D9C9B3;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

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

.testimonial-card:hover {
  border-color: #5C3A21;
  box-shadow: 0 12px 32px rgba(92, 58, 33, 0.12);
  transform: translateY(-4px);
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: #5C3A21;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #5C3A21;
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 14px;
  color: #5C3A21;
  opacity: 0.7;
}

.pricing {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.pricing-card {
  background-color: #D9C9B3;
  padding: 48px 36px;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  border: 3px solid transparent;
}

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

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(92, 58, 33, 0.2);
}

.pricing-card.featured {
  background-color: #5C3A21;
  border-color: #D9C9B3;
}

.pricing-card.featured * {
  color: #FFFFFF !important;
}

.pricing-card.featured .cta-button {
  background-color: #FFFFFF;
  color: #5C3A21 !important;
}

.pricing-card.featured .cta-button:hover {
  background-color: #D9C9B3;
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #D9C9B3;
  color: #5C3A21;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pricing-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #5C3A21;
  opacity: 0.8;
}

.pricing-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #5C3A21;
}

.pricing-description {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #5C3A21;
  opacity: 0.9;
  min-height: 60px;
}

.pricing-price {
  margin-bottom: 32px;
}

.price-amount {
  font-size: 52px;
  font-weight: 700;
  color: #5C3A21;
  line-height: 1;
}

.price-currency {
  font-size: 18px;
  font-weight: 500;
  color: #5C3A21;
  opacity: 0.8;
  margin-left: 4px;
}

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

.pricing-features li {
  padding: 12px 0;
  font-size: 15px;
  color: #5C3A21;
  border-bottom: 1px solid rgba(92, 58, 33, 0.15);
  line-height: 1.5;
}

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

.pricing-cta {
  width: 100%;
  padding: 14px 28px;
}

.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(217, 201, 179, 0.2) 0%, rgba(217, 201, 179, 0.05) 100%);
}

.contact-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #5C3A21;
}

.contact p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #5C3A21;
  opacity: 0.9;
}

.footer {
  padding: 40px 0;
  background-color: #FFFFFF;
  border-top: 1px solid #D9C9B3;
}

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

.footer p {
  color: #5C3A21;
  opacity: 0.8;
  font-size: 14px;
}

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

.footer-links a {
  color: #5C3A21;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 2px solid #D9C9B3;
  padding: 20px 0;
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(92, 58, 33, 0.1);
}

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

.cookie-content p {
  color: #5C3A21;
  font-size: 14px;
  margin: 0;
}

.cookie-accept {
  background-color: #5C3A21;
  color: #FFFFFF;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept:hover {
  background-color: #3d2516;
}

.legal-page {
  padding: 100px 0;
  min-height: calc(100vh - 300px);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #5C3A21;
  letter-spacing: -0.5px;
}

.legal-intro {
  font-size: 16px;
  color: #5C3A21;
  opacity: 0.7;
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
  color: #5C3A21;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #5C3A21;
}

.legal-content ul {
  margin: 20px 0 20px 24px;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #5C3A21;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header .cta-button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding: 60px 0;
  }

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

  .hero p {
    font-size: 18px;
  }

  .hero-shape {
    width: 400px;
    height: 400px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 16px;
  }

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

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

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

  .contact h2 {
    font-size: 32px;
  }

  .contact p {
    font-size: 16px;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

  .legal-content h2 {
    font-size: 24px;
  }

  .container {
    padding: 0 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero h1 {
    font-size: 44px;
  }

  .section-header h2 {
    font-size: 36px;
  }
}
