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

body {
  font-family: "Inter", "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
  color: #062a63;
  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: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #e6eaf0;
}

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

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

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

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

.nav a {
  color: #062a63;
  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: #ff0000;
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #ff0000;
}

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

.cta-button {
  background: #800000;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(128, 0, 0, 0.2);
}

.cta-button:hover {
  background: #ff0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

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

.hero {
  padding: 200px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.2;
  color: #ff0000;
  margin-bottom: 30px;
  font-weight: 700;
}

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

.cta-button-large {
  background: #800000;
  color: #ffffff;
  border: none;
  padding: 18px 48px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(128, 0, 0, 0.25);
}

.cta-button-large:hover {
  background: #ff0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(255, 0, 0, 0.4);
}

.hero-lines {
  position: relative;
  height: 400px;
}

.grid-line {
  position: absolute;
  background: linear-gradient(180deg, transparent, #1b6cff, transparent);
  width: 2px;
  height: 100%;
  opacity: 0.3;
  animation: pulse 3s ease-in-out infinite;
}

.grid-line-1 {
  left: 20%;
  animation-delay: 0s;
}

.grid-line-2 {
  left: 50%;
  animation-delay: 1s;
}

.grid-line-3 {
  left: 80%;
  animation-delay: 2s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 0.5;
    transform: scaleY(1);
  }
}

.features {
  padding: 120px 0;
  background: #ffffff;
}

.features h2 {
  font-size: 48px;
  color: #ff0000;
  text-align: center;
  margin-bottom: 80px;
  font-weight: 700;
}

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

.feature-card {
  padding: 48px;
  border: 1px solid #e6eaf0;
  border-radius: 12px;
  transition: all 0.4s ease;
  background: #ffffff;
  opacity: 0;
  transform: translateY(30px);
}

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

.feature-card:hover {
  border-color: #1b6cff;
  box-shadow: 0 8px 32px rgba(27, 108, 255, 0.1);
  transform: translateY(-8px);
}

.feature-icon {
  margin-bottom: 32px;
  display: inline-block;
}

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

.feature-card:nth-child(2) .floating {
  animation-delay: 0.5s;
}

.feature-card:nth-child(3) .floating {
  animation-delay: 1s;
}

.feature-card:nth-child(4) .floating {
  animation-delay: 1.5s;
}

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

.feature-card h3 {
  font-size: 28px;
  color: #062a63;
  margin-bottom: 20px;
  font-weight: 600;
}

.feature-card p {
  font-size: 17px;
  color: #062a63;
  line-height: 1.7;
  opacity: 0.8;
}

.testimonials {
  padding: 120px 0;
  background: #ffffff;
  border-top: 1px solid #e6eaf0;
}

.testimonials h2 {
  font-size: 48px;
  color: #ff0000;
  text-align: center;
  margin-bottom: 80px;
  font-weight: 700;
}

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

.testimonial-card {
  padding: 48px;
  background: #ffffff;
  border: 1px solid #e6eaf0;
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

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

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #1b6cff;
  border-radius: 4px 0 0 4px;
  transition: height 0.4s ease;
}

.testimonial-card:hover::before {
  height: 100%;
}

.testimonial-card:hover {
  border-color: #1b6cff;
  box-shadow: 0 8px 32px rgba(27, 108, 255, 0.1);
}

.testimonial-text {
  font-size: 17px;
  color: #062a63;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.9;
}

.testimonial-author strong {
  display: block;
  font-size: 18px;
  color: #062a63;
  margin-bottom: 8px;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 15px;
  color: #062a63;
  opacity: 0.6;
}

.pricing {
  padding: 120px 0;
  background: #ffffff;
  border-top: 1px solid #e6eaf0;
}

.pricing h2 {
  font-size: 48px;
  color: #ff0000;
  text-align: center;
  margin-bottom: 80px;
  font-weight: 700;
}

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

.pricing-card {
  padding: 48px;
  border: 2px solid #e6eaf0;
  border-radius: 12px;
  transition: all 0.4s ease;
  background: #ffffff;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

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

.pricing-card.featured {
  border-color: #1b6cff;
  transform: scale(1.05);
}

.pricing-card.featured.fade-in {
  transform: scale(1.05) translateY(0);
}

.pricing-card:hover {
  border-color: #0a3d91;
  box-shadow: 0 8px 32px rgba(10, 61, 145, 0.15);
}

.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #800000;
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 32px;
  color: #062a63;
  margin-bottom: 24px;
  font-weight: 700;
}

.price {
  margin-bottom: 40px;
}

.price .amount {
  font-size: 56px;
  color: #ff0000;
  font-weight: 700;
}

.price .currency {
  font-size: 18px;
  color: #062a63;
  opacity: 0.7;
  margin-left: 8px;
}

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

.features-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e6eaf0;
  color: #062a63;
  font-size: 16px;
}

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

.pricing-button {
  width: 100%;
  background: #800000;
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-button:hover {
  background: #ff0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.contact {
  padding: 120px 0;
  background: #ffcccb;
  border-top: 1px solid #e6eaf0;
}

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

.contact-content h2 {
  font-size: 48px;
  color: #ff0000;
  margin-bottom: 24px;
  font-weight: 700;
}

.contact-content p {
  font-size: 20px;
  color: #062a63;
  margin-bottom: 40px;
}

.footer {
  padding: 40px 0;
  background: #ffffff;
  border-top: 1px solid #e6eaf0;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer-content a {
  color: #062a63;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: #ff0000;
}

.cookie-notice {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 2px solid #1b6cff;
  z-index: 1000;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  transition: bottom 0.4s ease;
}

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

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

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

.cookie-accept {
  background: #800000;
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept:hover {
  background: #ff0000;
}

.legal-page {
  padding: 160px 0 80px;
  min-height: 100vh;
}

.legal-page h1 {
  font-size: 56px;
  color: #ff0000;
  margin-bottom: 60px;
  font-weight: 700;
}

.legal-content h2 {
  font-size: 28px;
  color: #062a63;
  margin-top: 48px;
  margin-bottom: 20px;
  font-weight: 600;
}

.legal-content p {
  font-size: 17px;
  color: #062a63;
  line-height: 1.8;
  margin-bottom: 24px;
  opacity: 0.9;
}

.back-link {
  display: inline-block;
  margin-top: 60px;
  color: #800000;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #ff0000;
}

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

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

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

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

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

  .pricing-card.featured {
    transform: scale(1);
  }
}

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

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

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    border-bottom: 1px solid #e6eaf0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .cta-button {
    display: none;
  }

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

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

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

  .hero-lines {
    height: 200px;
  }

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

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

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cookie-accept {
    width: 100%;
  }

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

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

  .legal-content h2 {
    font-size: 24px;
    margin-top: 32px;
  }
}
