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

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

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

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

header {
  background: var(--bg-white);
  padding: 24px 0;
  border-bottom: 1px solid var(--soft-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.logo svg {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

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

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:hover {
  color: var(--deep-yellow);
}

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

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

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

.cta-btn:hover {
  background: var(--deep-yellow);
  border-color: var(--deep-yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(244, 196, 0, 0.2);
}

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

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

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

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, var(--light-yellow) 100%);
  z-index: -1;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  max-width: 700px;
}

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

.hero p {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  background: var(--electric-yellow);
  color: #1a1a1a;
  padding: 18px 48px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  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 12px 24px rgba(244, 196, 0, 0.3);
}

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

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--soft-gray), transparent);
}

.section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: var(--deep-yellow);
  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(--bg-white);
  padding: 48px 32px;
  border: 1px solid var(--soft-gray);
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

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

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

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

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

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

.feature-icon svg {
  width: 56px;
  height: 56px;
}

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

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

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

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

.testimonial {
  padding: 40px;
  border-left: 3px solid var(--electric-yellow);
  background: var(--light-yellow);
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideIn 0.6s ease forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial:nth-child(1) {
  animation-delay: 0.2s;
}

.testimonial:nth-child(2) {
  animation-delay: 0.4s;
}

.testimonial:nth-child(3) {
  animation-delay: 0.6s;
}

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

.testimonial-author {
  font-weight: 600;
  color: var(--deep-yellow);
  font-size: 15px;
}

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

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

.pricing-card {
  background: var(--bg-white);
  padding: 48px 40px;
  border: 2px solid var(--deep-yellow);
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.95);
  animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
  border-width: 3px;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}

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

.pricing-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.pricing-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.pricing-card p {
  color: #4a4a4a;
  margin-bottom: 24px;
  font-size: 15px;
}

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

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

.pricing-cta {
  display: block;
  background: var(--electric-yellow);
  color: #1a1a1a;
  padding: 14px 0;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  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);
}

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

.footer-content {
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
}

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

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

.footer-copyright {
  color: #4a4a4a;
  font-size: 14px;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 2px solid var(--electric-yellow);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  z-index: 2000;
  transform: translateY(100%);
  animation: slideUp 0.5s ease forwards 1s;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

.cookie-notice.hidden {
  display: none;
}

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

.cookie-accept {
  background: var(--electric-yellow);
  color: #1a1a1a;
  padding: 10px 28px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept:hover {
  background: var(--deep-yellow);
  transform: scale(1.05);
}

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

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

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

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

.legal-content p {
  color: #2a2a2a;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 20px;
  color: #2a2a2a;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

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

  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 40px;
  }

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

  nav a {
    font-size: 24px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero::before {
    width: 100%;
    clip-path: none;
  }

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

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

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

  .features {
    padding: 60px 0;
  }

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

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

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

  .cookie-notice {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}
