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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e6eaf0;
  z-index: 1000;
  padding: 20px 0;
}

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

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

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

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

.nav a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav a:hover {
  color: #d6a200;
}

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

.cta-btn {
  background: #f4c400;
  color: #1a1a1a;
  border: none;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.cta-btn:hover {
  background: #d6a200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(246, 196, 0, 0.3);
}

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

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

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

.hero-text h1 {
  font-size: 64px;
  font-weight: 700;
  color: #d6a200;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.hero-text p {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 540px;
}

.hero-cta {
  background: #f4c400;
  color: #1a1a1a;
  border: none;
  padding: 18px 48px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.hero-cta:hover {
  background: #d6a200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(246, 196, 0, 0.35);
}

.hero-grid {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, #fff9e8 0%, #ffffff 100%);
  border-radius: 8px;
  border: 1px solid #e6eaf0;
}

.hero-grid::before,
.hero-grid::after {
  content: "";
  position: absolute;
  background: #f4c400;
  opacity: 0.15;
}

.hero-grid::before {
  width: 200px;
  height: 2px;
  top: 30%;
  left: 10%;
  transform: rotate(-15deg);
}

.hero-grid::after {
  width: 2px;
  height: 180px;
  bottom: 20%;
  right: 25%;
  transform: rotate(10deg);
}

.features {
  padding: 120px 0;
  background: #ffffff;
}

.features h2 {
  font-size: 48px;
  font-weight: 700;
  color: #d6a200;
  text-align: center;
  margin-bottom: 80px;
}

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

.feature-card {
  padding: 48px;
  background: #fff9e8;
  border: 1px solid #e6eaf0;
  border-radius: 8px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

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

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(214, 162, 0, 0.12);
  border-color: #f4c400;
}

.feature-icon {
  margin-bottom: 24px;
  animation: float 3s ease-in-out infinite;
}

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

.feature-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #d6a200;
  margin-bottom: 16px;
}

.feature-card p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.7;
}

.testimonials {
  padding: 120px 0;
  background: #ffffff;
}

.testimonials h2 {
  font-size: 48px;
  font-weight: 700;
  color: #d6a200;
  text-align: center;
  margin-bottom: 80px;
}

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

.testimonial {
  padding: 40px;
  background: #fff9e8;
  border-left: 3px solid #f4c400;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

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

.testimonial p {
  font-size: 16px;
  color: #2a2a2a;
  margin-bottom: 24px;
  line-height: 1.7;
  font-style: italic;
}

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

.testimonial-author strong {
  font-size: 15px;
  color: #d6a200;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 14px;
  color: #6a6a6a;
}

.pricing {
  padding: 120px 0;
  background: #ffffff;
}

.pricing h2 {
  font-size: 48px;
  font-weight: 700;
  color: #d6a200;
  text-align: center;
  margin-bottom: 80px;
}

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

.pricing-card {
  padding: 48px;
  background: #ffffff;
  border: 2px solid #d6a200;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

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

.pricing-card.featured {
  border-color: #f4c400;
  border-width: 3px;
  transform: scale(1.05);
}

.pricing-card.featured.fade-in {
  transform: scale(1.05);
}

.pricing-card:hover {
  border-color: #f4c400;
  box-shadow: 0 12px 40px rgba(214, 162, 0, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #f4c400;
  color: #1a1a1a;
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
}

.pricing-label {
  font-size: 28px;
  font-weight: 700;
  color: #d6a200;
  margin-bottom: 12px;
}

.pricing-desc {
  font-size: 15px;
  color: #6a6a6a;
  margin-bottom: 32px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 400;
  color: #6a6a6a;
}

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

.pricing-features li {
  padding: 12px 0;
  color: #4a4a4a;
  border-bottom: 1px solid #e6eaf0;
  font-size: 15px;
}

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

.pricing-btn {
  width: 100%;
  background: #f4c400;
  color: #1a1a1a;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.pricing-btn:hover {
  background: #d6a200;
  transform: translateY(-2px);
}

.contact {
  padding: 120px 0;
  background: #fff9e8;
}

.contact h2 {
  font-size: 48px;
  font-weight: 700;
  color: #d6a200;
  text-align: center;
  margin-bottom: 60px;
}

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

.contact-info p {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 48px;
  line-height: 1.7;
}

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

.contact-details p {
  font-size: 16px;
  color: #2a2a2a;
  margin: 0;
}

.contact-details strong {
  color: #d6a200;
  font-weight: 600;
}

.footer {
  background: #ffffff;
  border-top: 1px solid #e6eaf0;
  padding: 40px 0;
}

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

.footer p {
  color: #6a6a6a;
  font-size: 14px;
}

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

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

.footer-links a:hover {
  color: #f4c400;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 2px solid #f4c400;
  padding: 24px 0;
  z-index: 2000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

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

.cookie-content p {
  color: #2a2a2a;
  font-size: 15px;
  margin: 0;
}

.cookie-btn {
  background: #f4c400;
  color: #1a1a1a;
  border: none;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  white-space: nowrap;
}

.cookie-btn:hover {
  background: #d6a200;
}

.legal-page {
  padding: 100px 0;
  min-height: 60vh;
}

.legal-page h1 {
  font-size: 48px;
  font-weight: 700;
  color: #d6a200;
  margin-bottom: 32px;
}

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

.legal-intro {
  font-size: 16px;
  color: #6a6a6a;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 2px solid #f4c400;
}

.legal-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: #d6a200;
  margin-top: 48px;
  margin-bottom: 20px;
}

.legal-content p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.legal-content li {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content strong {
  color: #d6a200;
  font-weight: 600;
}

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

  .hero {
    padding: 80px 0;
  }

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

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

  .hero-grid {
    height: 400px;
  }

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

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

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

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured.fade-in {
    transform: scale(1);
  }
}

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

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 40px;
    gap: 32px;
    border-bottom: 2px solid #f4c400;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }

  .nav.active {
    transform: translateY(0);
  }

  .cta-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 60px 0;
  }

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

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

  .hero-grid {
    height: 300px;
  }

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

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

  .feature-card {
    padding: 32px;
  }

  .testimonial {
    padding: 32px;
  }

  .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: 60px 0;
  }

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

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

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

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

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

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

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

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