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

:root {
  --white: #ffffff;
  --red: #ff0000;
  --burgundy: #800000;
  --navy: #062a63;
  --blue-deep: #0a3d91;
  --blue-electric: #1b6cff;
  --gray-soft: #e6eaf0;
  --light-coral: #ffcccb;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-soft);
  z-index: 1000;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

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

.logo svg {
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover svg {
  transform: rotate(90deg);
}

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

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

.nav-link {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--blue-electric);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--blue-electric);
}

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

.cta-button {
  background-color: var(--blue-electric);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

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

@media (max-width: 968px) {
  .cta-button {
    display: none;
  }
}

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

@media (max-width: 968px) {
  .menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.mobile-nav-link {
  color: var(--navy);
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.mobile-menu.active .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.active .mobile-nav-link:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active .mobile-nav-link:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-menu.active .mobile-nav-link:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-nav-link:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-cta {
  display: inline-block;
  margin-top: 20px;
  width: fit-content;
}

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

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

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

.hero-grid-lines {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  background-image: linear-gradient(to right, var(--gray-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--gray-soft) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-grid-lines {
    width: 200px;
    height: 200px;
    right: -50px;
  }
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--red);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
    margin-bottom: 24px;
  }
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 48px;
  max-width: 700px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero-description {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

.hero-cta {
  background-color: var(--blue-electric);
  color: var(--white);
  border: none;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.hero-cta:hover {
  background-color: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 108, 255, 0.4);
}

.features {
  padding: 120px 0;
  background-color: var(--white);
}

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

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

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

.feature-card {
  padding: 48px 32px;
  border: 1px solid var(--gray-soft);
  border-radius: 12px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 16px rgba(10, 61, 145, 0.08);
  transform: translateY(-4px);
  border-color: var(--blue-electric);
}

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

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

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

.feature-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 16px;
}

.feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
}

.testimonials {
  padding: 120px 0;
  background-color: rgba(230, 234, 240, 0.3);
}

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

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

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

.testimonial-card {
  padding: 48px;
  background-color: var(--white);
  border-left: 3px solid var(--blue-electric);
  border-radius: 8px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-size: 15px;
  font-weight: 600;
  color: var(--burgundy);
}

.pricing {
  padding: 120px 0;
  background-color: var(--white);
}

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

.pricing-heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--red);
  text-align: center;
  margin-bottom: 80px;
}

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

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

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  padding: 48px 40px;
  border: 2px solid var(--blue-deep);
  border-radius: 12px;
  background-color: var(--white);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--blue-electric);
  box-shadow: 0 8px 32px rgba(27, 108, 255, 0.15);
}

.pricing-featured {
  border-color: var(--blue-electric);
  border-width: 3px;
}

.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--burgundy);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.pricing-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.pricing-description {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 32px;
  opacity: 0.8;
}

.pricing-price {
  margin-bottom: 32px;
}

.price-amount {
  font-size: 56px;
  font-weight: 700;
  color: var(--red);
}

.price-currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-left: 8px;
}

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

.pricing-features li {
  padding: 12px 0;
  font-size: 16px;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-soft);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-cta {
  width: 100%;
  background-color: var(--blue-electric);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.pricing-cta:hover {
  background-color: var(--blue-deep);
  transform: translateY(-2px);
}

.footer {
  padding: 60px 0;
  border-top: 1px solid var(--gray-soft);
  background-color: var(--white);
}

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

.footer-link {
  color: var(--navy);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--blue-electric);
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 2px solid var(--blue-electric);
  padding: 24px 0;
  z-index: 1000;
  display: none;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

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

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

.cookie-text {
  font-size: 15px;
  color: var(--navy);
}

.cookie-button {
  background-color: var(--blue-electric);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}

.cookie-button:hover {
  background-color: var(--blue-deep);
}

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

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

.policy-section {
  margin-top: 80px;
  padding: 100px 0;
}

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

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

.policy-heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .policy-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.policy-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-soft);
}

.policy-block:last-of-type {
  border-bottom: none;
}

.policy-block h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 20px;
}

.policy-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
}

.policy-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid var(--blue-electric);
}

.policy-footer p {
  font-size: 14px;
  color: var(--navy);
  opacity: 0.7;
}
