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

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

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

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

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

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

nav a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  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-button {
  background: var(--electric-yellow);
  color: #1a1a1a;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(244, 196, 0, 0.2);
}

.cta-button:hover {
  background: var(--deep-yellow);
  box-shadow: 0 4px 16px rgba(244, 196, 0, 0.3);
  transform: translateY(-2px);
}

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-white);
  z-index: 999;
  padding: 100px 40px;
  flex-direction: column;
  gap: 32px;
  animation: fadeIn 0.3s ease;
}

.mobile-menu.active {
  display: flex;
}

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

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

.close-menu {
  position: absolute;
  top: 24px;
  right: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.close-menu svg {
  width: 32px;
  height: 32px;
}

.hero {
  padding: 120px 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 196, 0, 0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

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

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

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

.hero .cta-button {
  font-size: 18px;
  padding: 16px 48px;
}

.grid-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.3;
  pointer-events: none;
}

.grid-lines line {
  stroke: var(--soft-gray);
  stroke-width: 1;
}

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

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

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

.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 {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  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;
}

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

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

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

.testimonial {
  padding: 40px;
  border-left: 3px solid var(--electric-yellow);
  background: var(--warm-yellow);
  position: relative;
}

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

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

.testimonial-company {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

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

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

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

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

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

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

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

.pricing-price {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

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

.pricing-features {
  list-style: none;
  margin: 32px 0;
  padding: 32px 0;
  border-top: 1px solid var(--soft-gray);
  border-bottom: 1px solid var(--soft-gray);
}

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

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

.pricing-card .cta-button {
  width: 100%;
  margin-top: 24px;
}

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: 48px;
  margin-bottom: 32px;
}

.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-copyright {
  font-size: 13px;
  color: #666;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  padding: 20px;
  border-top: 2px solid var(--electric-yellow);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  z-index: 1000;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
}

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

.cookie-notice p {
  font-size: 14px;
  color: #4a4a4a;
}

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

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

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

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

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

.legal-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 48px;
  display: block;
}

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

.legal-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-golden);
  margin-top: 32px;
  margin-bottom: 16px;
}

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

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

.legal-content li {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

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

  nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 60px 0;
  }

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

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

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

  .features,
  .testimonials,
  .pricing,
  .legal-page {
    padding: 60px 0;
  }

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

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

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

  .cookie-notice button {
    width: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
