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

:root {
  --white: #ffffff;
  --deep-yellow: #d6a200;
  --electric-yellow: #f4c400;
  --dark-golden: #a37c00;
  --soft-gray: #e6eaf0;
  --warm-yellow-light: #fff9e8;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
}

html {
  scroll-behavior: smooth;
}

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

.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: 1rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

.nav-desktop {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

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

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

.nav-list a:hover::after,
.nav-list a:focus::after {
  width: 100%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--electric-yellow);
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--electric-yellow);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cta-button.cta-outline {
  background: transparent;
  border: 2px solid var(--deep-yellow);
  color: var(--deep-yellow);
}

.cta-button.cta-outline:hover,
.cta-button.cta-outline:focus {
  background: var(--warm-yellow-light);
}

.cta-button.cta-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger:focus {
  outline: 2px solid var(--electric-yellow);
  outline-offset: 2px;
}

.hamburger .line {
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active .line-1 {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active .line-2 {
  opacity: 0;
}

.hamburger.active .line-3 {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-mobile.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.nav-mobile-list a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.cta-button-mobile {
  padding: 1rem 2rem !important;
  background: var(--electric-yellow) !important;
  color: var(--text-dark) !important;
  border-radius: 4px;
  font-weight: 600 !important;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5rem 80px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(var(--soft-gray) 1px, transparent 1px),
    linear-gradient(90deg, var(--soft-gray) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-shape {
  animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

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

.features h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.features-subtitle {
  text-align: center;
  color: var(--text-medium);
  font-size: 1.125rem;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  text-align: center;
  position: relative;
  border: 1px solid var(--soft-gray);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--electric-yellow);
  border-radius: 0 0 4px 4px;
}

.feature-icon {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.floating {
  animation: float 3s ease-in-out infinite;
}

.floating-delay-1 {
  animation-delay: 0.5s;
}

.floating-delay-2 {
  animation-delay: 1s;
}

.floating-delay-3 {
  animation-delay: 1.5s;
}

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

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--deep-yellow);
}

.feature-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonials {
  padding: 100px 5rem;
  background: var(--white);
}

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

.testimonials h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--soft-gray);
  border-radius: 8px;
  position: relative;
}

.testimonial-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 60px;
  background: var(--electric-yellow);
  border-radius: 0 4px 4px 0;
}

.testimonial-card blockquote p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

.author-name {
  font-weight: 600;
  color: var(--text-dark);
}

.author-role {
  font-size: 0.875rem;
  color: var(--deep-yellow);
}

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

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

.pricing h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.pricing-subtitle {
  text-align: center;
  color: var(--text-medium);
  font-size: 1.125rem;
  margin-bottom: 4rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  padding: 2.5rem;
  border: 2px solid var(--deep-yellow);
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(214, 162, 0, 0.15);
}

.pricing-featured {
  position: relative;
  transform: scale(1.05);
  border-color: var(--electric-yellow);
  box-shadow: 0 8px 32px rgba(244, 196, 0, 0.2);
}

.pricing-featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--deep-yellow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.pricing-description {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pricing-price {
  margin-bottom: 2rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.price-period {
  font-size: 1rem;
  color: var(--text-medium);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--soft-gray);
  color: var(--text-medium);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--electric-yellow);
  border-radius: 50%;
}

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

.contact {
  padding: 100px 5rem;
  background: var(--white);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-subtitle {
  text-align: center;
  color: var(--text-medium);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 2px solid var(--soft-gray);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--electric-yellow);
  box-shadow: 0 0 0 3px rgba(244, 196, 0, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .cta-button {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 1rem;
}

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

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

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

.footer-links a:hover,
.footer-links a:focus {
  color: var(--dark-golden);
  text-decoration: underline;
}

.footer-copy {
  color: var(--text-medium);
  font-size: 0.875rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--deep-yellow);
  padding: 1rem 2rem;
  z-index: 9999;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.cookie-notice.visible {
  transform: translateY(0);
  opacity: 1;
}

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

.cookie-content p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.cookie-accept {
  flex-shrink: 0;
}

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

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

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.legal-updated {
  color: var(--text-medium);
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--soft-gray);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--deep-yellow);
  margin-bottom: 1rem;
}

.legal-section p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.legal-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--electric-yellow);
  border-radius: 50%;
}

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

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

@media (max-width: 1200px) {
  .header-container {
    padding: 1rem 3rem;
  }

  .hero {
    padding: 120px 3rem 80px;
  }

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

  .footer {
    padding: 2rem 3rem;
  }

  .legal-page {
    padding: 140px 3rem 80px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }
}

@media (max-width: 992px) {
  .pricing-featured {
    transform: none;
  }

  .pricing-featured:hover {
    transform: translateY(-4px);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem 1.5rem;
  }

  .nav-desktop,
  .header .cta-button {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-mobile {
    display: block;
  }

  .hero {
    padding: 100px 1.5rem 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    order: -1;
  }

  .hero-shape svg {
    width: 240px;
    height: 240px;
  }

  .features,
  .testimonials,
  .pricing,
  .contact {
    padding: 60px 1.5rem;
  }

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

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

  .testimonials-grid .testimonial-card:last-child {
    max-width: none;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 1.5rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

  .legal-page {
    padding: 120px 1.5rem 60px;
  }
}

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

  .price-amount {
    font-size: 2rem;
  }
}
