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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #062a63;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.logo svg {
  display: block;
  cursor: pointer;
}

.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:hover {
  color: #ff0000;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff0000;
  transition: width 0.3s ease;
}

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

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

.btn-primary {
  background: #800000;
  color: #ffffff;
}

.btn-primary:hover {
  background: #a00000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 0, 0, 0.2);
}

.btn-hero {
  background: #1b6cff;
  color: #ffffff;
  padding: 16px 48px;
  font-size: 16px;
}

.btn-hero:hover {
  background: #0052d9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 108, 255, 0.3);
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 999;
  display: none;
  padding-top: 100px;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  align-items: center;
}

.mobile-nav a {
  color: #062a63;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
}

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

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

.hero-text h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: #ff0000;
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #062a63;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-grid {
  position: relative;
  height: 400px;
  background: linear-gradient(90deg, #e6eaf0 1px, transparent 1px), linear-gradient(#e6eaf0 1px, transparent 1px);
  background-size: 40px 40px;
  border-radius: 12px;
}

.hero-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(27, 108, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

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

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

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

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

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

.feature-icon {
  margin-bottom: 24px;
  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: 700;
  color: #ff0000;
  margin-bottom: 16px;
}

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

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

.testimonial-item {
  padding: 60px 0;
  opacity: 0;
  transform: translateY(20px);
}

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

.testimonial-text {
  font-size: 20px;
  line-height: 1.7;
  color: #062a63;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 600;
  color: #800000;
  position: relative;
  padding-left: 40px;
}

.testimonial-author::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: #1b6cff;
}

.testimonial-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e6eaf0 20%, #e6eaf0 80%, transparent);
  margin: 0 auto;
}

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

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

.pricing-card {
  padding: 48px;
  border: 2px solid #0a3d91;
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

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

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

.pricing-featured {
  border-color: #1b6cff;
  box-shadow: 0 8px 24px rgba(27, 108, 255, 0.2);
}

.pricing-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 12px;
}

.pricing-description {
  font-size: 14px;
  color: #062a63;
  margin-bottom: 32px;
  min-height: 40px;
}

.pricing-price {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e6eaf0;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: #062a63;
}

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

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

.pricing-features li {
  padding: 12px 0;
  color: #062a63;
  position: relative;
  padding-left: 28px;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1b6cff;
  font-weight: 700;
}

.btn-pricing {
  width: 100%;
  background: #1b6cff;
  color: #ffffff;
  text-align: center;
}

.btn-pricing:hover {
  background: #0052d9;
  transform: translateY(-2px);
}

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

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

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

.footer a:hover {
  color: #1b6cff;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 2px solid #1b6cff;
  padding: 20px 0;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

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

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

.btn-cookie {
  background: #1b6cff;
  color: #ffffff;
  padding: 10px 32px;
  white-space: nowrap;
}

.btn-cookie:hover {
  background: #0052d9;
}

.legal-content {
  margin-top: 80px;
  padding: 120px 0;
  background: #ffffff;
}

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

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

.legal-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #062a63;
  margin-bottom: 16px;
}

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

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

.legal-section li {
  font-size: 16px;
  line-height: 1.7;
  color: #062a63;
  margin-bottom: 8px;
}

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

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

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

  .hero-grid {
    height: 300px;
  }

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

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

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

  .nav {
    display: none;
  }

  .btn-primary {
    display: none;
  }

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

  .hero {
    padding: 60px 0;
  }

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

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

  .features {
    padding: 60px 0;
  }

  .feature-card {
    padding: 32px;
  }

  .testimonials {
    padding: 60px 0;
  }

  .testimonial-item {
    padding: 40px 0;
  }

  .testimonial-text {
    font-size: 18px;
  }

  .pricing {
    padding: 60px 0;
  }

  .pricing-card {
    padding: 32px;
  }

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

  .btn-cookie {
    width: 100%;
  }

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

  .legal-content h1 {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
