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

:root {
  --white: #ffffff;
  --deep-yellow: #d6a200;
  --electric-yellow: #f4c400;
  --dark-golden: #a37c00;
  --soft-gray: #e6eaf0;
  --light-yellow: #fff9e8;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--soft-gray);
  z-index: 1000;
  padding: 20px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 24px;
  color: var(--deep-yellow);
}

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

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

.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%;
}

.cta-button {
  background: var(--electric-yellow);
  color: #1a1a1a;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid var(--electric-yellow);
}

.cta-button:hover {
  background: var(--deep-yellow);
  border-color: var(--deep-yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 162, 0, 0.3);
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  display: none;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

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

.mobile-nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 24px;
  transition: color 0.3s ease;
}

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

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

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

.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--deep-yellow);
  margin-bottom: 32px;
  letter-spacing: -2px;
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 48px;
  font-weight: 400;
}

.hero-cta {
  display: inline-block;
  background: var(--electric-yellow);
  color: #1a1a1a;
  padding: 18px 48px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid var(--electric-yellow);
}

.hero-cta:hover {
  background: var(--deep-yellow);
  border-color: var(--deep-yellow);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 162, 0, 0.4);
}

.hero-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  pointer-events: none;
  opacity: 0.4;
}

.grid-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--soft-gray), transparent);
}

.grid-line.horizontal {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  box-shadow: 0 0 20px rgba(230, 234, 240, 0.5);
}

.grid-line.vertical {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  box-shadow: 0 0 20px rgba(230, 234, 240, 0.5);
}

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

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

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

.feature-card {
  background: var(--white);
  padding: 48px 32px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid var(--soft-gray);
  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(0, 0, 0, 0.08);
  border-color: var(--electric-yellow);
}

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

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

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

.feature-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--deep-yellow);
  margin-bottom: 16px;
}

.feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.testimonials {
  padding: 120px 0;
}

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

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

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

.testimonial:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateX(8px);
}

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

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

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

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

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

.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 40px;
  border-radius: 12px;
  border: 2px solid var(--deep-yellow);
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

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

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

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

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

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

.pricing-description {
  font-size: 15px;
  color: #666;
  margin-bottom: 32px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 32px;
}

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

.price-currency {
  font-size: 18px;
  color: #666;
}

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

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

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

.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--electric-yellow);
  color: #1a1a1a;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--electric-yellow);
}

.pricing-cta:hover {
  background: var(--deep-yellow);
  border-color: var(--deep-yellow);
  transform: translateY(-2px);
}

.cta-section {
  padding: 120px 0;
  background: var(--deep-yellow);
}

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

.cta-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.cta-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
}

.cta-button-large {
  display: inline-block;
  background: var(--white);
  color: var(--deep-yellow);
  padding: 18px 48px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
}

.cta-button-large:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  color: var(--deep-yellow);
}

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

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

.footer-nav a:hover {
  color: var(--dark-golden);
}

.footer-copyright {
  width: 100%;
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--soft-gray);
  color: #666;
  font-size: 14px;
}

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

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

.cookie-content p {
  flex: 1;
  color: #333;
  font-size: 15px;
  margin: 0;
}

.cookie-accept {
  background: var(--electric-yellow);
  color: #1a1a1a;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.cookie-accept:hover {
  background: var(--deep-yellow);
  transform: translateY(-2px);
}

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

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

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

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

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

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

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

.legal-date {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--soft-gray);
  font-style: italic;
  color: #666;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-top: 48px;
  color: var(--deep-yellow);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: var(--dark-golden);
  transform: translateX(-4px);
}

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

  .nav {
    display: none;
  }

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

  .mobile-menu-toggle {
    display: block;
  }

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

  .hero-title {
    font-size: 48px;
  }

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

  .hero-grid {
    width: 100%;
    height: 100%;
    opacity: 0.2;
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 48px;
  }

  .features {
    padding: 80px 0;
  }

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

  .testimonials {
    padding: 80px 0;
  }

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

  .pricing {
    padding: 80px 0;
  }

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

  .cta-section {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 36px;
  }

  .cta-description {
    font-size: 18px;
  }

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

  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }

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

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

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

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

@media (max-width: 640px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-title {
    font-size: 28px;
  }

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