* {
  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-warm-yellow: #fff9e8;
}

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

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

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

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

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

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

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

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

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

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

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

.cta-button {
  background-color: 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: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

.hero-cta {
  background-color: var(--electric-yellow);
  color: #1a1a1a;
  border: none;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

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

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

.hero-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.15;
}

.grid-line {
  position: absolute;
  background: linear-gradient(to bottom, transparent, var(--electric-yellow), transparent);
  width: 1px;
  height: 100%;
}

.grid-line-1 {
  left: 20%;
  animation: glowPulse 3s ease-in-out infinite;
}

.grid-line-2 {
  left: 50%;
  animation: glowPulse 3s ease-in-out infinite 1s;
}

.grid-line-3 {
  left: 80%;
  animation: glowPulse 3s ease-in-out infinite 2s;
}

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

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

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

.feature-card {
  padding: 40px;
  background-color: var(--bg-white);
  border: 1px solid var(--soft-gray);
  transition: all 0.3s 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 4px 20px rgba(214, 162, 0, 0.15);
}

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

.floating {
  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: 16px;
  color: #4a4a4a;
  line-height: 1.6;
}

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

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

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}

.testimonial {
  opacity: 0;
  transform: translateY(20px);
}

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

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

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

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

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

.testimonial-divider {
  width: 1px;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(to bottom, transparent, var(--electric-yellow), transparent);
}

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

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

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

.pricing-card {
  background-color: var(--bg-white);
  border: 2px solid var(--deep-yellow);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s 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 8px 32px rgba(214, 162, 0, 0.2);
}

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

.pricing-header {
  margin-bottom: 32px;
}

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

.pricing-header p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.5;
}

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

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

.period {
  font-size: 18px;
  color: #6a6a6a;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 32px;
}

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

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

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

.legal-page {
  margin-top: 80px;
  padding: 80px 0;
  min-height: calc(100vh - 240px);
}

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

.updated {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 60px;
}

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

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

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

.legal-section ul {
  list-style: none;
  padding-left: 0;
}

.legal-section li {
  font-size: 16px;
  line-height: 1.7;
  color: #2a2a2a;
  padding: 8px 0 8px 24px;
  position: relative;
}

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

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

  .hero {
    padding: 80px 0;
  }

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

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

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

  .testimonial-divider {
    display: none;
  }
}

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

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    border-bottom: 2px solid var(--electric-yellow);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

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

  .nav a {
    font-size: 18px;
  }

  .cta-button {
    display: none;
  }

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

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

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

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

  .hero-grid {
    display: none;
  }

  .features {
    padding: 60px 0;
  }

  .features-grid {
    gap: 24px;
  }

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

  .testimonials {
    padding: 60px 0;
  }

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

  .pricing {
    padding: 60px 0;
  }

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

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

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
    padding: 32px 0;
  }

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

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

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero-cta {
    width: 100%;
    padding: 16px 32px;
  }

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