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

:root {
  --bg-primary: #f5f1e8;
  --bg-secondary: #fbf8f5;
  --brown-deep: #5c3a21;
  --brown-electric: #a56a3a;
  --brown-dark: #3f2b1e;
  --gray-separator: #e0e0e0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg-primary);
  color: var(--brown-deep);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background-color: rgba(245, 241, 232, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--gray-separator);
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

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

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

.cta-button {
  background-color: var(--brown-electric);
  color: white;
  border: none;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
}

.cta-button:hover {
  background-color: var(--brown-deep);
  transform: translateY(-1px);
}

.cta-button:focus {
  outline: 2px solid var(--brown-electric);
  outline-offset: 2px;
}

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

.menu-icon {
  display: block;
}

.menu-toggle .line {
  transition: all 0.3s ease;
}

.menu-toggle.active .line1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .line2 {
  opacity: 0;
}

.menu-toggle.active .line3 {
  transform: rotate(-45deg) translate(7px, -6px);
}

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

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

.hero-text h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--brown-deep);
  letter-spacing: -0.02em;
}

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

.cta-button-large {
  background-color: var(--brown-electric);
  color: white;
  border: none;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.cta-button-large:hover {
  background-color: var(--brown-deep);
  transform: translateY(-2px);
}

.cta-button-large:focus {
  outline: 2px solid var(--brown-electric);
  outline-offset: 2px;
}

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

.glow-line {
  position: absolute;
  background: linear-gradient(180deg, transparent, var(--brown-electric), transparent);
  width: 1px;
  height: 100%;
  opacity: 0.3;
}

.glow-line-1 {
  left: 20%;
  animation: glow 3s ease-in-out infinite;
}

.glow-line-2 {
  left: 50%;
  height: 80%;
  animation: glow 4s ease-in-out infinite 1s;
}

.glow-line-3 {
  left: 80%;
  height: 60%;
  animation: glow 5s ease-in-out infinite 2s;
}

@keyframes glow {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 0.5;
    transform: scaleY(1);
  }
}

.features {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--gray-separator);
}

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

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

.feature-card {
  padding: 48px;
  background-color: var(--bg-primary);
  border: 1px solid var(--gray-separator);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

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

.feature-card:hover {
  border-color: var(--brown-electric);
  box-shadow: 0 8px 24px rgba(92, 58, 33, 0.08);
}

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

.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;
  margin-bottom: 16px;
  color: var(--brown-deep);
}

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

.testimonials {
  padding: 100px 0;
  border-top: 1px solid var(--gray-separator);
}

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

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

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

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

.testimonial-card p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--brown-deep);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.testimonial-author span {
  font-size: 14px;
  color: var(--brown-electric);
}

.pricing {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--gray-separator);
}

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

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

.pricing-card {
  padding: 48px;
  background-color: var(--bg-primary);
  border: 1px solid var(--brown-deep);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

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

.pricing-card:hover {
  border-color: var(--brown-electric);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(92, 58, 33, 0.12);
}

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

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

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

.pricing-description {
  font-size: 16px;
  color: var(--brown-electric);
  margin-bottom: 24px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 32px;
}

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

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

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

.pricing-cta {
  width: 100%;
  background-color: var(--brown-deep);
  color: white;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
}

.pricing-cta:hover {
  background-color: var(--brown-electric);
}

.pricing-cta:focus {
  outline: 2px solid var(--brown-electric);
  outline-offset: 2px;
}

.pricing-featured .pricing-cta {
  background-color: var(--brown-electric);
}

.pricing-featured .pricing-cta:hover {
  background-color: var(--brown-deep);
}

.contact {
  padding: 100px 0;
  border-top: 1px solid var(--gray-separator);
}

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

.contact-content h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--brown-deep);
}

.contact-content p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--brown-electric);
  margin-bottom: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  color: var(--brown-deep);
}

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

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

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

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

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

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

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--brown-electric);
  z-index: 2000;
  padding: 20px;
}

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

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

.cookie-accept {
  background-color: var(--brown-electric);
  color: white;
  border: none;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}

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

.legal-page {
  padding: 160px 0 80px;
}

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

.legal-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--brown-deep);
}

.legal-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 20px;
  color: var(--brown-deep);
}

.legal-content section {
  margin-bottom: 32px;
}

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

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--brown-deep);
  margin-bottom: 8px;
}

.legal-update {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-separator);
  font-size: 14px;
  color: var(--brown-electric);
  font-style: italic;
}

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

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

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

  .hero-decoration {
    height: 200px;
  }

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

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

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

  .cookie-content {
    padding: 0 60px;
  }
}

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

  .header-content {
    padding: 20px 0;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    font-size: 24px;
  }

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

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 140px 0 80px;
  }

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

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

  .features h2,
  .testimonials h2,
  .pricing h2,
  .contact-content h2,
  .legal-content h1 {
    font-size: 36px;
  }

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

  .feature-card {
    padding: 32px;
  }

  .testimonial-card {
    padding: 28px;
  }

  .pricing-card {
    padding: 32px;
  }

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

  .cookie-content {
    padding: 0 40px;
    flex-direction: column;
    text-align: center;
  }

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

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

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

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

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

  .cta-button-large {
    width: 100%;
    padding: 16px 32px;
  }

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

  .cookie-content {
    padding: 0 24px;
  }
}
