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

:root {
  --color-white: #ffffff;
  --color-red: #ff0000;
  --color-burgundy: #800000;
  --color-navy: #062a63;
  --color-gray: #e6eaf0;
  --color-coral: #ffcccb;
}

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  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 var(--color-gray);
  z-index: 1000;
  padding: 20px 0;
}

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

.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-link {
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

.cta-button {
  background-color: var(--color-red);
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid var(--color-red);
}

.cta-button:hover {
  background-color: var(--color-burgundy);
  border-color: var(--color-burgundy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

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

.hamburger {
  transition: transform 0.3s ease;
}

.hamburger.active {
  transform: rotate(90deg);
}

.hamburger .line {
  transition: all 0.3s ease;
}

.hamburger.active .line-1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line-2 {
  opacity: 0;
}

.hamburger.active .line-3 {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  padding: 60px 40px;
}

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

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

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

.mobile-nav-link:hover {
  color: var(--color-red);
}

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

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

.hero-text {
  max-width: 700px;
}

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

.hero-description {
  font-size: 20px;
  color: var(--color-navy);
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.9;
}

.cta-button-large {
  background-color: var(--color-red);
  color: var(--color-white);
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--color-red);
}

.cta-button-large:hover {
  background-color: var(--color-burgundy);
  border-color: var(--color-burgundy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
}

.hero-grid {
  position: relative;
  height: 400px;
}

.grid-line {
  position: absolute;
  background: linear-gradient(180deg, transparent, var(--color-red), transparent);
  width: 2px;
  height: 100%;
  animation: gridPulse 3s ease-in-out infinite;
}

.grid-line-1 {
  left: 0;
}

.grid-line-2 {
  left: 50%;
  animation-delay: 1s;
}

.grid-line-3 {
  right: 0;
  animation-delay: 2s;
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1);
  }
}

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

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-red);
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: -0.5px;
}

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

.feature-card {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--color-gray);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

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

.feature-card:hover {
  border-color: var(--color-red);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

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

.floating-delay-1 {
  animation-delay: 0.5s;
}

.floating-delay-2 {
  animation-delay: 1s;
}

.floating-delay-3 {
  animation-delay: 1.5s;
}

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

.feature-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-burgundy);
  margin-bottom: 16px;
}

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

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

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-gray);
}

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

.testimonial-card {
  padding: 40px;
  background-color: var(--color-white);
  border-radius: 12px;
  border: 1px solid var(--color-gray);
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

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

.testimonial-card:hover {
  border-color: var(--color-red);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.1);
}

.testimonial-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--color-red);
  border-radius: 2px;
}

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

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

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

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

.pricing-card {
  background-color: var(--color-white);
  border: 2px solid var(--color-navy);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

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

.pricing-card:hover {
  border-color: var(--color-red);
  box-shadow: 0 12px 32px rgba(255, 0, 0, 0.15);
  transform: translateY(-6px);
}

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

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

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

.pricing-description {
  font-size: 14px;
  color: var(--color-navy);
  margin-bottom: 24px;
  opacity: 0.8;
  line-height: 1.5;
}

.pricing-price {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-gray);
}

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

.price-currency {
  font-size: 18px;
  color: var(--color-navy);
  font-weight: 500;
}

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

.pricing-features li {
  padding: 12px 0;
  color: var(--color-navy);
  font-size: 15px;
  position: relative;
  padding-left: 24px;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-red);
  font-weight: 700;
}

.pricing-button {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--color-red);
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid var(--color-red);
}

.pricing-button:hover {
  background-color: var(--color-burgundy);
  border-color: var(--color-burgundy);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.2);
}

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

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

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

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

.cookie-notice {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-top: 2px solid var(--color-red);
  padding: 20px 0;
  z-index: 1001;
  transition: bottom 0.3s ease;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

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

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

.cookie-button {
  background-color: var(--color-red);
  color: var(--color-white);
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-button:hover {
  background-color: var(--color-burgundy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

.legal-page {
  padding: 120px 0 80px;
  margin-top: 80px;
}

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

.legal-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 60px;
  text-align: center;
}

.legal-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-gray);
}

.legal-section:last-of-type {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-burgundy);
  margin-bottom: 20px;
}

.legal-section p {
  font-size: 16px;
  color: var(--color-navy);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-section ul {
  list-style: none;
  margin-left: 20px;
}

.legal-section li {
  font-size: 16px;
  color: var(--color-navy);
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.legal-section li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-red);
  font-weight: 700;
  font-size: 20px;
}

.legal-section strong {
  color: var(--color-burgundy);
  font-weight: 600;
}

.legal-back {
  margin-top: 60px;
  text-align: center;
}

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

  .hero {
    padding: 100px 0;
  }

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

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

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

  .hero-grid {
    height: 200px;
  }

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

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

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

  .nav {
    display: none;
  }

  .cta-button {
    display: none;
  }

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

  .hero {
    padding: 60px 0;
  }

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

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

  .section-title {
    font-size: 32px;
    margin-bottom: 60px;
  }

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

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

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

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

  .cookie-button {
    width: 100%;
  }

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

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

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

  .legal-page {
    padding: 100px 0 60px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

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

  .feature-card,
  .testimonial-card,
  .pricing-card {
    padding: 30px;
  }

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