* {
  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;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  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:hover {
  color: #800000;
}

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

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

.cta-button {
  background-color: #800000;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: 2px solid transparent;
  font-family: "Inter", sans-serif;
}

.cta-button:hover {
  background-color: #ff0000;
  outline: 2px solid #800000;
  outline-offset: 2px;
  transform: translateY(-2px);
}

.cta-button:focus {
  outline: 2px solid #062a63;
  outline-offset: 2px;
}

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

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

.mobile-menu-toggle.active .menu-line-1 {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active .menu-line-3 {
  transform: rotate(-45deg) translate(6px, -6px);
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

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

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

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

@media (max-width: 768px) {
  .nav {
    display: none;
  }

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

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

main {
  padding-top: 80px;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #ffcccb 100%);
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.hero-grid-lines {
  position: absolute;
  top: -40px;
  left: -60px;
  width: 200px;
  height: 200px;
  background-image: linear-gradient(to right, #e6eaf0 1px, transparent 1px),
    linear-gradient(to bottom, #e6eaf0 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  z-index: 0;
}

.hero h1 {
  font-size: 64px;
  font-weight: 700;
  color: #ff0000;
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 20px;
  color: #062a63;
  margin-bottom: 40px;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

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

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

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

  .hero-grid-lines {
    width: 120px;
    height: 120px;
    background-size: 30px 30px;
  }
}

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

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

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

.feature-card {
  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: #800000;
  box-shadow: 0 8px 24px rgba(128, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  margin-bottom: 24px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  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: 600;
  color: #062a63;
  margin-bottom: 16px;
}

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

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

  .features h2 {
    font-size: 36px;
    margin-bottom: 60px;
  }

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

.testimonials {
  padding: 120px 0;
  background-color: #ffcccb;
}

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

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

.testimonial-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  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;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff0000 0%, #800000 100%);
  border-radius: 0 0 12px 12px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(128, 0, 0, 0.15);
}

.testimonial-text {
  font-size: 18px;
  color: #062a63;
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid #e6eaf0;
}

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

.testimonial-author span {
  font-size: 14px;
  color: #800000;
}

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

  .testimonials h2 {
    font-size: 36px;
    margin-bottom: 60px;
  }

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

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

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

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

.pricing-card {
  border: 2px solid #062a63;
  border-radius: 12px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
  background-color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
}

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

.pricing-card:hover {
  border-color: #800000;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(128, 0, 0, 0.15);
}

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

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

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

.pricing-description {
  font-size: 15px;
  color: #062a63;
  margin-bottom: 24px;
  min-height: 48px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e6eaf0;
}

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

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

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

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

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

.pricing-card .cta-button {
  width: 100%;
}

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

  .pricing h2 {
    font-size: 36px;
    margin-bottom: 60px;
  }

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

.contact {
  padding: 120px 0;
  background-color: #ffcccb;
  text-align: center;
}

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

.contact-description {
  font-size: 20px;
  color: #062a63;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

  .contact h2 {
    font-size: 36px;
  }

  .contact-description {
    font-size: 18px;
  }
}

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

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

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

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

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}

.cookie-notice {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-top: 2px solid #062a63;
  padding: 20px 0;
  z-index: 1000;
  transition: bottom 0.3s ease;
  box-shadow: 0 -4px 12px rgba(6, 42, 99, 0.1);
}

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

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

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

.cookie-accept {
  background-color: #800000;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
}

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

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

  .cookie-accept {
    width: 100%;
  }
}

.legal-section {
  padding: 120px 0 80px;
  min-height: calc(100vh - 160px);
}

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

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

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

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

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

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

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

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

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