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

:root {
  --primary-red: #ff0000;
  --burgundy: #800000;
  --navy-blue: #062a63;
  --electric-blue: #1b6cff;
  --deep-blue: #0a3d91;
  --white: #ffffff;
  --soft-gray: #e6eaf0;
  --light-coral: #ffcccb;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

.logo:hover {
  transform: translateY(-2px);
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

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

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

.nav-links a:hover {
  color: var(--electric-blue);
}

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn-primary {
  background-color: var(--electric-blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(27, 108, 255, 0.2);
}

.btn-primary:hover {
  background-color: var(--deep-blue);
  box-shadow: 0 4px 12px rgba(27, 108, 255, 0.3);
  transform: translateY(-2px);
}

.hero {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--white) 0%, rgba(230, 234, 240, 0.3) 100%);
}

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

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

.hero p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--navy-blue);
  opacity: 0.9;
}

.btn-hero {
  background-color: var(--electric-blue);
  color: var(--white);
  font-size: 18px;
  padding: 16px 40px;
  box-shadow: 0 4px 16px rgba(27, 108, 255, 0.3);
}

.btn-hero:hover {
  background-color: var(--deep-blue);
  box-shadow: 0 6px 20px rgba(27, 108, 255, 0.4);
  transform: translateY(-3px);
}

.hero-grid {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.15;
  background-image: linear-gradient(var(--electric-blue) 1px, transparent 1px),
    linear-gradient(90deg, var(--electric-blue) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

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

.features h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 80px;
  color: var(--navy-blue);
}

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

.feature-card {
  padding: 48px 32px;
  background-color: var(--white);
  border: 1px solid var(--soft-gray);
  border-radius: 12px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

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

.feature-card:hover {
  border-color: var(--electric-blue);
  box-shadow: 0 8px 24px rgba(27, 108, 255, 0.12);
  transform: translateY(-4px);
}

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

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

.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;
  margin-bottom: 16px;
  color: var(--navy-blue);
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy-blue);
  opacity: 0.8;
}

.testimonials {
  padding: 120px 0;
  background-color: rgba(230, 234, 240, 0.3);
}

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

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

.testimonial-card {
  padding: 48px 40px;
  background-color: var(--white);
  border-left: 3px solid var(--electric-blue);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

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

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: var(--navy-blue);
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-blue);
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 15px;
  color: var(--navy-blue);
  opacity: 0.7;
}

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

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

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

.pricing-card {
  padding: 48px 40px;
  background-color: var(--white);
  border: 2px solid var(--soft-gray);
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

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

.pricing-featured {
  border-color: var(--electric-blue);
}

.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--electric-blue);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.pricing-card:hover {
  border-color: var(--deep-blue);
  box-shadow: 0 12px 32px rgba(27, 108, 255, 0.15);
}

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

.pricing-description {
  font-size: 15px;
  color: var(--navy-blue);
  opacity: 0.7;
  margin-bottom: 32px;
}

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

.amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy-blue);
}

.currency {
  font-size: 18px;
  color: var(--navy-blue);
  opacity: 0.7;
  margin-left: 4px;
}

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

.pricing-features li {
  padding: 12px 0;
  font-size: 16px;
  color: var(--navy-blue);
  position: relative;
  padding-left: 28px;
}

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

.btn-pricing {
  width: 100%;
  background-color: var(--electric-blue);
  color: var(--white);
  text-align: center;
}

.btn-pricing:hover {
  background-color: var(--deep-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 108, 255, 0.3);
}

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

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

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

.cookie-notice {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 2px solid var(--electric-blue);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: bottom 0.5s ease;
}

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

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

.cookie-notice p {
  margin: 0;
  font-size: 15px;
  color: var(--navy-blue);
}

.btn-cookie {
  background-color: var(--electric-blue);
  color: var(--white);
  padding: 10px 32px;
  white-space: nowrap;
}

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

.legal-page {
  padding: 80px 0 120px;
  min-height: calc(100vh - 300px);
}

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

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

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

.legal-section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy-blue);
  margin-bottom: 16px;
}

.legal-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-section li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy-blue);
  margin-bottom: 8px;
}

.legal-update {
  font-size: 14px;
  color: var(--navy-blue);
  opacity: 0.6;
  margin-top: 48px;
  font-style: italic;
}

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

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

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

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

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

  .menu-toggle {
    display: block;
  }

  .nav {
    position: relative;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 400px;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .btn-primary {
    display: none;
  }

  .hero {
    padding: 80px 0 60px;
  }

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

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

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

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

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

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

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

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

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .cookie-notice .container {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
  }

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

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

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

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

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

  .btn-hero {
    font-size: 16px;
    padding: 14px 32px;
  }

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

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

  .amount {
    font-size: 40px;
  }

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