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

:root {
  --white: #ffffff;
  --deep-yellow: #d6a200;
  --electric-yellow: #f4c400;
  --dark-golden: #a37c00;
  --soft-gray: #e6eaf0;
  --light-warm-yellow: #fff9e8;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(214, 162, 0, 0.1);
}

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

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

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

.nav {
  display: flex;
  gap: 40px;
}

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

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

.nav a:hover {
  color: var(--deep-yellow);
}

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--electric-yellow);
  color: var(--text-primary);
  box-shadow: 0 4px 12px rgba(244, 196, 0, 0.3);
}

.btn-primary:hover {
  background: var(--deep-yellow);
  box-shadow: 0 6px 20px rgba(214, 162, 0, 0.4);
  transform: translateY(-2px);
}

.btn-primary:focus {
  outline: 2px solid var(--deep-yellow);
  outline-offset: 2px;
}

.btn-large {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-small {
  padding: 10px 24px;
  font-size: 13px;
}

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

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

.menu-toggle.active .line1 {
  transform: translateY(6px) rotate(45deg);
}

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

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

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

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

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

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

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

.grid-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--soft-gray), transparent);
  animation: pulse 3s ease-in-out infinite;
}

.grid-line-1 {
  top: 20%;
  left: 0;
  right: 0;
  height: 2px;
  animation-delay: 0s;
}

.grid-line-2 {
  top: 50%;
  left: 30%;
  right: 10%;
  height: 2px;
  animation-delay: 1s;
}

.grid-line-3 {
  top: 80%;
  left: 10%;
  right: 30%;
  height: 2px;
  animation-delay: 2s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.features {
  padding: 120px 0;
  background: var(--light-warm-yellow);
}

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

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

.feature-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 12px;
  border: 1px solid var(--soft-gray);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

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

.feature-card:hover {
  border-color: var(--electric-yellow);
  box-shadow: 0 8px 30px rgba(244, 196, 0, 0.15);
  transform: translateY(-4px);
}

.feature-icon {
  margin-bottom: 24px;
  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-yellow);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.testimonials {
  padding: 120px 0;
}

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

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

.testimonial {
  padding: 40px;
  border-left: 3px solid var(--electric-yellow);
  background: var(--light-warm-yellow);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

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

.testimonial p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-yellow);
  margin-bottom: 4px;
}

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

.pricing {
  padding: 120px 0;
  background: var(--light-warm-yellow);
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  padding: 48px 36px;
  border-radius: 12px;
  border: 2px solid var(--deep-yellow);
  position: relative;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

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

.pricing-card:hover {
  border-color: var(--electric-yellow);
  box-shadow: 0 12px 40px rgba(244, 196, 0, 0.2);
  transform: translateY(-8px);
}

.pricing-card-featured {
  border-color: var(--electric-yellow);
  box-shadow: 0 8px 30px rgba(244, 196, 0, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--electric-yellow);
  color: var(--text-primary);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pricing-label {
  font-size: 28px;
  font-weight: 700;
  color: var(--deep-yellow);
  margin-bottom: 12px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  min-height: 40px;
}

.pricing-price {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--soft-gray);
}

.price-amount {
  font-size: 56px;
  font-weight: 700;
  color: var(--deep-yellow);
  line-height: 1;
}

.price-currency {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 500;
}

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

.pricing-features li {
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-primary);
  position: relative;
  padding-left: 28px;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--electric-yellow);
  font-weight: 700;
  font-size: 18px;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
}

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

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

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

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

.footer-separator {
  color: var(--soft-gray);
}

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

.cookie-notice {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--electric-yellow);
  padding: 20px 0;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  transition: bottom 0.4s ease;
}

.cookie-notice.show {
  bottom: 0;
}

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

.cookie-notice p {
  font-size: 14px;
  color: var(--text-primary);
  margin: 0;
}

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

.legal-page h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--deep-yellow);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.legal-intro {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 60px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--soft-gray);
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--deep-yellow);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.legal-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 16px;
}

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

.legal-section li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.legal-section strong {
  color: var(--deep-yellow);
  font-weight: 600;
}

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

  .header-container {
    height: 70px;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .header-container > .btn-primary {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 120px 0 60px;
  }

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

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

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

  .hero-visual {
    height: 200px;
  }

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

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

  .features-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cookie-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

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

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

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