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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

.header.scrolled {
  box-shadow: 0 2px 20px rgba(6, 42, 99, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
}

.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-color: #1b6cff;
  transition: width 0.3s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: #0a3d91;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 108, 255, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #1b6cff;
  border: 2px solid #1b6cff;
}

.btn-secondary:hover {
  background-color: #1b6cff;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-small {
  padding: 8px 20px;
  font-size: 14px;
}

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

@media (max-width: 968px) {
  .nav,
  .header-content > .btn {
    display: none;
  }

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

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

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

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

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

@media (max-width: 768px) {
  .hero {
    padding: 140px 0 80px;
  }
}

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

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

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

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 36px;
  }
}

.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #062a63;
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  width: 100%;
  height: 400px;
  opacity: 0.6;
}

@media (max-width: 968px) {
  .hero-grid {
    height: 300px;
  }
}

.features {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;
}

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

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e6eaf0, transparent);
}

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

@media (max-width: 768px) {
  .features h2 {
    font-size: 32px;
    margin-bottom: 60px;
  }
}

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

@media (max-width: 968px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.feature-card {
  background-color: #ffffff;
  padding: 48px;
  border: 1px solid #e6eaf0;
  border-radius: 16px;
  transition: all 0.4s ease;
}

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

@media (max-width: 768px) {
  .feature-card {
    padding: 32px;
  }
}

.feature-icon {
  margin-bottom: 28px;
  width: 48px;
  height: 48px;
}

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

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

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

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

.testimonials {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;
}

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

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e6eaf0, transparent);
}

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

@media (max-width: 768px) {
  .testimonials h2 {
    font-size: 32px;
    margin-bottom: 60px;
  }
}

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

@media (max-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.testimonial-card {
  background-color: #ffffff;
  padding: 48px;
  border-left: 3px solid #1b6cff;
  position: relative;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 32px;
  }
}

.testimonial-card p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
  color: #062a63;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 16px;
  font-weight: 700;
  color: #062a63;
}

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

.pricing {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;
}

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

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e6eaf0, transparent);
}

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

@media (max-width: 768px) {
  .pricing h2 {
    font-size: 32px;
    margin-bottom: 60px;
  }
}

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

@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

.pricing-card {
  background-color: #ffffff;
  padding: 48px;
  border: 2px solid #0a3d91;
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
}

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

@media (max-width: 768px) {
  .pricing-card {
    padding: 32px;
  }
}

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

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

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

.pricing-description {
  font-size: 15px;
  color: #062a63;
  opacity: 0.7;
  margin-bottom: 32px;
}

.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-period {
  font-size: 16px;
  color: #062a63;
  opacity: 0.6;
}

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

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

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #ffcccb;
  border-radius: 50%;
  border: 2px solid #1b6cff;
}

.contact {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;
}

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

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e6eaf0, transparent);
}

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

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

@media (max-width: 768px) {
  .contact-content h2 {
    font-size: 32px;
  }
}

.contact-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #062a63;
  opacity: 0.9;
}

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

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

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

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

@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

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

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

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

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

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

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

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

.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 (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
