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

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

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

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

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

.logo:focus {
  outline: 2px solid #1b6cff;
  outline-offset: 4px;
  border-radius: 4px;
}

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

.nav-link {
  color: #062a63;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1b6cff, #ff0000);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #1b6cff;
}

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

.nav-link:focus {
  outline: 2px solid #1b6cff;
  outline-offset: 4px;
  border-radius: 2px;
}

.cta-button {
  background-color: #1b6cff;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

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

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

.menu-icon {
  transition: transform 0.3s ease;
}

.menu-icon .line {
  transition: all 0.3s ease;
}

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

.menu-icon.active .line-2 {
  opacity: 0;
}

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

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

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

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: #ff0000;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.hero-cta {
  background-color: #1b6cff;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-cta:hover {
  background-color: #0a3d91;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(27, 108, 255, 0.4);
}

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

.hero-visual {
  position: relative;
  height: 500px;
}

.grid-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      0deg,
      transparent 24%,
      rgba(27, 108, 255, 0.05) 25%,
      rgba(27, 108, 255, 0.05) 26%,
      transparent 27%,
      transparent 74%,
      rgba(27, 108, 255, 0.05) 75%,
      rgba(27, 108, 255, 0.05) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      rgba(27, 108, 255, 0.05) 25%,
      rgba(27, 108, 255, 0.05) 26%,
      transparent 27%,
      transparent 74%,
      rgba(27, 108, 255, 0.05) 75%,
      rgba(27, 108, 255, 0.05) 76%,
      transparent 77%,
      transparent
    );
  background-size: 80px 80px;
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

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

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #ff0000;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: -0.02em;
}

.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-color: #ffffff;
}

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

.feature-icon {
  margin-bottom: 24px;
}

.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(-8px);
  }
}

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

.feature-description {
  font-size: 16px;
  color: #062a63;
  line-height: 1.6;
  opacity: 0.8;
}

.testimonials {
  padding: 100px 0;
  background-color: #ffffff;
}

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

.testimonial-card {
  padding: 48px;
  background-color: #ffffff;
  border-left: 3px solid #1b6cff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(6, 42, 99, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(27, 108, 255, 0.15);
  transform: translateY(-4px);
}

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

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

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

.author-role {
  font-size: 14px;
  color: #800000;
  font-weight: 500;
}

.pricing {
  padding: 100px 0;
  background-color: #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-color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: #1b6cff;
  box-shadow: 0 12px 32px rgba(27, 108, 255, 0.15);
  transform: translateY(-6px);
}

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

.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff0000;
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-title {
  font-size: 28px;
  font-weight: 700;
  color: #062a63;
  margin-bottom: 16px;
}

.pricing-description {
  font-size: 15px;
  color: #062a63;
  margin-bottom: 32px;
  line-height: 1.6;
  opacity: 0.8;
  min-height: 48px;
}

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

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: #ff0000;
  display: block;
  line-height: 1;
}

.price-currency {
  font-size: 18px;
  color: #062a63;
  font-weight: 500;
  opacity: 0.7;
}

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

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

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

.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #1b6cff;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

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

.contact {
  padding: 100px 0;
  background-color: #ffffff;
}

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

.contact-description {
  font-size: 18px;
  color: #062a63;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-email {
  font-size: 24px;
  color: #1b6cff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-email:hover {
  color: #0a3d91;
  transform: translateY(-2px);
}

.contact-email:focus {
  outline: 2px solid #1b6cff;
  outline-offset: 4px;
  border-radius: 4px;
}

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

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

.footer-text {
  color: #062a63;
  font-size: 14px;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 32px;
}

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

.footer-link:hover {
  color: #1b6cff;
}

.footer-link:focus {
  outline: 2px solid #1b6cff;
  outline-offset: 4px;
  border-radius: 2px;
}

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

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

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

.cookie-text {
  color: #062a63;
  font-size: 15px;
}

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

.cookie-accept:hover {
  background-color: #0a3d91;
  transform: translateY(-2px);
}

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

.legal-content {
  padding: 80px 0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-title {
  font-size: 48px;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 60px;
  text-align: center;
}

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

.legal-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: #062a63;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e6eaf0;
}

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

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

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

.legal-section strong {
  color: #800000;
  font-weight: 600;
}

.legal-date {
  text-align: center;
  font-size: 14px;
  color: #062a63;
  opacity: 0.7;
  margin-top: 60px;
  font-style: italic;
}

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

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

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

  .hero-title {
    font-size: 48px;
  }

  .section-title {
    font-size: 36px;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    right: 0;
  }

  .nav-link {
    font-size: 20px;
  }

  .hero {
    padding: 80px 0;
  }

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

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

  .hero-visual {
    height: 300px;
  }

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

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

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

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

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

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

  .hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 32px;
  }

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

  .section-title {
    font-size: 28px;
    margin-bottom: 48px;
  }

  .features {
    padding: 60px 0;
  }

  .feature-card {
    padding: 32px;
  }

  .testimonials {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 32px;
  }

  .pricing {
    padding: 60px 0;
  }

  .pricing-card {
    padding: 32px;
  }

  .contact {
    padding: 60px 0;
  }

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

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

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

  .legal-section p,
  .legal-section ul li {
    font-size: 15px;
  }
}
