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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #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 {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.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: #1b6cff;
}

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

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

.cta-button {
  background: #1b6cff;
  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(27, 108, 255, 0.2);
}

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

.cta-button:focus {
  outline: 2px solid #1b6cff;
  outline-offset: 2px;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding-top: 100px;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 40px;
}

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

.mobile-nav .cta-button {
  width: 100%;
  margin-top: 20px;
}

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

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

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

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

.cta-button-large {
  background: #1b6cff;
  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(27, 108, 255, 0.3);
}

.cta-button-large:hover {
  background: #0a3d91;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 108, 255, 0.4);
}

.cta-button-large:focus {
  outline: 2px solid #1b6cff;
  outline-offset: 2px;
}

.hero-grid {
  position: absolute;
  top: 0;
  right: -10%;
  width: 50%;
  height: 100%;
  opacity: 0.1;
  background-image: linear-gradient(to right, #1b6cff 1px, transparent 1px),
    linear-gradient(to bottom, #1b6cff 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

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

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

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

.feature-card {
  background: #ffffff;
  padding: 40px;
  border: 1px solid #e6eaf0;
  border-radius: 12px;
  transition: all 0.3s ease;
  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;
  display: inline-block;
}

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

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

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

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

.testimonials {
  padding: 100px 0;
  background: #fafbfc;
}

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

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

.testimonial-card {
  background: #ffffff;
  padding: 50px 40px;
  border-left: 3px solid #1b6cff;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

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

.testimonial-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, transparent 50%, #ffcccb 50%);
  opacity: 0.3;
}

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

.testimonial-author {
  border-top: 1px solid #e6eaf0;
  padding-top: 20px;
}

.author-name {
  font-weight: 600;
  font-size: 16px;
  color: #062a63;
  margin-bottom: 4px;
}

.author-role {
  font-size: 14px;
  color: #0a3d91;
  font-weight: 400;
}

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

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

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

.pricing-card {
  background: #ffffff;
  border: 2px solid #e6eaf0;
  border-radius: 12px;
  padding: 50px 40px;
  position: relative;
  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;
  box-shadow: 0 8px 32px rgba(27, 108, 255, 0.15);
  transform: translateY(-8px);
}

.pricing-card.featured {
  border-color: #1b6cff;
  border-width: 3px;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #1b6cff;
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

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

.pricing-description {
  font-size: 15px;
  color: #062a63;
  margin-bottom: 30px;
  line-height: 1.5;
  min-height: 45px;
}

.price {
  margin-bottom: 30px;
}

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

.price .currency {
  font-size: 18px;
  color: #0a3d91;
  font-weight: 500;
}

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

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

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

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

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

.pricing-cta:focus {
  outline: 2px solid #1b6cff;
  outline-offset: 2px;
}

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

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

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

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

.footer a:focus {
  outline: 2px solid #1b6cff;
  outline-offset: 2px;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 2px solid #1b6cff;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  z-index: 1001;
  box-shadow: 0 -4px 12px rgba(6, 42, 99, 0.1);
}

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

.cookie-accept {
  background: #1b6cff;
  color: #ffffff;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept:hover {
  background: #0a3d91;
}

.cookie-accept:focus {
  outline: 2px solid #1b6cff;
  outline-offset: 2px;
}

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

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

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

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

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

.legal-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

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

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

  .nav {
    display: none;
  }

  .header .cta-button {
    display: none;
  }

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

  .hero {
    padding: 60px 0;
  }

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

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

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

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

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

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

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

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

  .cookie-accept {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

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

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

@media (min-width: 769px) and (max-width: 1200px) {
  .container {
    padding: 0 60px;
  }

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

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

@media (min-width: 1400px) {
  .container {
    padding: 0 80px;
  }

  .hero {
    padding: 140px 0;
  }
}
