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

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

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

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

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

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

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

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

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

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

.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;
  border: none;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.01em;
}

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

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

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

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 60px 40px;
}

.mobile-nav a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
}

.mobile-nav .cta-btn {
  margin-top: 20px;
  width: 100%;
}

.mobile-menu-btn.active .line1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .line2 {
  opacity: 0;
}

.mobile-menu-btn.active .line3 {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger line {
  transition: all 0.3s ease;
}

.hero {
  margin-top: 80px;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 120px;
  position: relative;
}

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

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

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

.hero-cta {
  background: var(--electric-yellow);
  color: #1a1a1a;
  border: none;
  padding: 18px 48px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.01em;
}

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

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

.grid-line {
  position: absolute;
  background: var(--soft-gray);
}

.h-line {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}

.v-line {
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
}

.glow-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--electric-yellow);
  box-shadow: 0 0 20px rgba(244, 196, 0, 0.6);
}

.dot1 {
  top: 20%;
  right: 30%;
  animation: float 3s ease-in-out infinite;
}

.dot2 {
  bottom: 30%;
  right: 15%;
  animation: float 4s ease-in-out infinite 1s;
}

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

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

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

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

.feature-card {
  background: var(--white);
  padding: 48px 40px;
  border: 1px solid var(--soft-gray);
  transition: all 0.4s ease;
  position: relative;
}

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

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

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0px);
  }
  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.01em;
}

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

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

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

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

.testimonial {
  padding: 40px 0;
  border-top: 2px solid var(--soft-gray);
  position: relative;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--electric-yellow);
}

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

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

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

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

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

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

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

.pricing-card {
  background: var(--white);
  padding: 48px 40px;
  border: 2px solid var(--deep-yellow);
  transition: all 0.4s ease;
  position: relative;
}

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

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 162, 0, 0.2);
}

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

.pricing-desc {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 32px;
  min-height: 48px;
}

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

.pricing-price .amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--deep-yellow);
  letter-spacing: -0.02em;
}

.pricing-price .currency {
  font-size: 20px;
  font-weight: 600;
  color: #4a4a4a;
  margin-left: 8px;
}

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

.pricing-features li {
  font-size: 15px;
  color: #2a2a2a;
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
}

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

.pricing-cta {
  width: 100%;
  background: var(--electric-yellow);
  color: #1a1a1a;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.pricing-cta:hover {
  background: var(--deep-yellow);
}

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

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

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

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

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

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 120px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.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-copy {
  font-size: 14px;
  color: #6a6a6a;
}

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

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

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

.cookie-btn {
  background: var(--electric-yellow);
  color: #1a1a1a;
  border: none;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}

.cookie-btn:hover {
  background: var(--deep-yellow);
}

.legal-page {
  margin-top: 80px;
  padding: 120px 0;
  background: var(--white);
}

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

.legal-intro {
  font-size: 16px;
  color: #6a6a6a;
  margin-bottom: 64px;
}

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

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

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

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

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

.legal-content a {
  color: var(--electric-yellow);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1024px) {
  .container,
  .header-container,
  .hero-container,
  .footer-container,
  .cookie-content {
    padding-left: 60px;
    padding-right: 60px;
  }

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

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

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

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

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

  .mobile-menu {
    display: block;
  }

  .container,
  .header-container,
  .hero-container,
  .footer-container,
  .cookie-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .header-container {
    height: 70px;
  }

  .hero {
    margin-top: 70px;
    padding: 80px 0;
  }

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

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

  .hero-grid {
    width: 300px;
    height: 300px;
    opacity: 0.5;
  }

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

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

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

  .legal-page {
    margin-top: 70px;
    padding: 80px 0;
  }

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

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

  .cookie-btn {
    width: 100%;
  }

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

  .footer-separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .container,
  .header-container,
  .hero-container,
  .footer-container,
  .cookie-content {
    padding-left: 24px;
    padding-right: 24px;
  }

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

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

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

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

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