* {
  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;
  --black: #1a1a1a;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--soft-gray);
}

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

.logo svg {
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover svg {
  transform: rotate(90deg);
}

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

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

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

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

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

.btn-primary {
  background: var(--electric-yellow);
  color: var(--black);
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  border: 1px solid var(--electric-yellow);
}

.btn-primary:hover {
  background: var(--deep-yellow);
  border-color: var(--deep-yellow);
  box-shadow: 0 4px 12px rgba(212, 162, 0, 0.3);
}

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

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

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

.menu-toggle.active .line-2 {
  opacity: 0;
}

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

@media (max-width: 768px) {
  .nav-desktop,
  .header .btn-primary {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-mobile.active {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.nav-mobile-content a {
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

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

.btn-primary-mobile {
  background: var(--electric-yellow);
  color: var(--black);
  padding: 16px 40px;
  margin-top: 20px;
  display: inline-block;
}

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

.hero-content {
  max-width: 900px;
  position: relative;
}

.hero-grid-lines {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background-image: linear-gradient(to right, var(--soft-gray) 1px, transparent 1px),
    linear-gradient(to bottom, var(--soft-gray) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  transform: rotate(15deg);
}

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

.hero p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 40px;
  font-weight: 400;
}

.btn-hero {
  display: inline-block;
  background: var(--electric-yellow);
  color: var(--black);
  padding: 18px 48px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid var(--electric-yellow);
  box-shadow: 0 4px 20px rgba(244, 196, 0, 0.3);
}

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

@media (max-width: 768px) {
  .hero {
    padding: 140px 0 80px;
  }

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

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

  .hero-grid-lines {
    width: 400px;
    height: 400px;
    right: -150px;
  }
}

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

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--electric-yellow), transparent);
}

.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: 48px 36px;
  border: 1px solid var(--soft-gray);
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

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

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--electric-yellow);
  transition: height 0.3s ease;
}

.feature-card:hover::before {
  height: 100%;
}

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

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

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

.feature-card:nth-child(2) .feature-icon {
  animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
  animation-delay: 1s;
}

.feature-card:nth-child(4) .feature-icon {
  animation-delay: 1.5s;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--deep-yellow);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  font-weight: 400;
}

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

  .features h2 {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .features-grid {
    gap: 30px;
  }
}

.testimonials {
  padding: 120px 0;
  background: var(--white);
}

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

.testimonial-card {
  padding: 40px;
  border-left: 2px solid var(--electric-yellow);
  background: var(--light-yellow);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

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

.testimonial-card:hover {
  border-left-width: 4px;
  box-shadow: 0 4px 16px rgba(244, 196, 0, 0.1);
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 24px;
  font-weight: 400;
}

.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(--black);
  opacity: 0.7;
}

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

  .testimonials h2 {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .testimonials-grid {
    gap: 32px;
  }
}

.pricing {
  padding: 120px 0;
  background: var(--light-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 40px;
  border: 1px solid var(--deep-yellow);
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

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

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

.pricing-featured {
  border-width: 2px;
  border-color: var(--electric-yellow);
}

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

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

.pricing-description {
  font-size: 15px;
  color: var(--black);
  margin-bottom: 32px;
  min-height: 48px;
}

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

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--deep-yellow);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.price-period {
  font-size: 16px;
  color: var(--black);
  opacity: 0.7;
}

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

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

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 16px;
  height: 2px;
  background: var(--electric-yellow);
}

.btn-pricing,
.btn-pricing-featured {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid var(--deep-yellow);
  background: var(--white);
  color: var(--deep-yellow);
}

.btn-pricing:hover {
  background: var(--deep-yellow);
  color: var(--white);
}

.btn-pricing-featured {
  background: var(--electric-yellow);
  color: var(--black);
  border-color: var(--electric-yellow);
}

.btn-pricing-featured:hover {
  background: var(--deep-yellow);
  border-color: var(--deep-yellow);
  box-shadow: 0 4px 16px rgba(212, 162, 0, 0.3);
}

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

  .pricing h2 {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .pricing-grid {
    gap: 48px;
  }
}

.contact {
  padding: 120px 0;
  background: var(--white);
}

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

.contact h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--deep-yellow);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.contact p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 40px;
}

.btn-contact {
  display: inline-block;
  background: var(--electric-yellow);
  color: var(--black);
  padding: 18px 48px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid var(--electric-yellow);
}

.btn-contact:hover {
  background: var(--deep-yellow);
  border-color: var(--deep-yellow);
  box-shadow: 0 6px 24px rgba(212, 162, 0, 0.3);
}

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

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

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

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

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

.footer p {
  color: var(--deep-yellow);
  font-size: 14px;
  font-weight: 500;
}

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

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

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

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

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

.cookie-notice {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--electric-yellow);
  padding: 24px 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-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.cookie-content p {
  font-size: 14px;
  color: var(--black);
  margin: 0;
}

.btn-cookie {
  background: var(--electric-yellow);
  color: var(--black);
  padding: 12px 32px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-cookie:hover {
  background: var(--deep-yellow);
  box-shadow: 0 4px 12px rgba(212, 162, 0, 0.3);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

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

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

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

.legal-updated {
  font-size: 14px;
  color: var(--black);
  opacity: 0.7;
  margin-bottom: 60px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--soft-gray);
}

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

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

.legal-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--deep-yellow);
  margin-bottom: 16px;
  margin-top: 24px;
}

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

.legal-content ul {
  list-style: none;
  margin-bottom: 16px;
}

.legal-content ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  color: var(--black);
}

.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 16px;
  height: 2px;
  background: var(--electric-yellow);
}

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

.legal-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--soft-gray);
  text-align: center;
}

.btn-back {
  display: inline-block;
  background: var(--electric-yellow);
  color: var(--black);
  padding: 16px 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid var(--electric-yellow);
}

.btn-back:hover {
  background: var(--deep-yellow);
  border-color: var(--deep-yellow);
  box-shadow: 0 4px 16px rgba(212, 162, 0, 0.3);
}

@media (max-width: 768px) {
  .legal-page {
    padding: 120px 0 60px;
  }

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

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