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

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: 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;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray);
  z-index: 1000;
  padding: 20px 0;
}

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

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

.desktop-nav {
  display: flex;
  gap: 40px;
}

.nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.cta-button {
  background: var(--burgundy);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: var(--red);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

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

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

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

  .cta-button {
    display: none;
  }

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

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

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

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

.mobile-nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
}

.mobile-cta {
  margin-top: 40px;
}

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

.hero-content {
  position: relative;
}

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

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

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

.hero-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  pointer-events: none;
}

.grid-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: glowPulse 3s infinite;
}

.grid-line.horizontal {
  width: 100%;
  height: 2px;
  top: 50%;
}

.grid-line.vertical {
  width: 2px;
  height: 100%;
  left: 50%;
}

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

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

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

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

  .hero-grid {
    width: 300px;
    height: 300px;
  }
}

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

.features h2 {
  text-align: center;
  font-size: 48px;
  color: var(--red);
  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 var(--gray);
  border-radius: 8px;
  background: var(--white);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

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

.feature-card:hover {
  box-shadow: 0 4px 20px rgba(6, 42, 99, 0.1);
  border-color: var(--red);
}

.feature-icon {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.feature-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--navy);
  opacity: 0.8;
}

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

  .features h2 {
    font-size: 32px;
  }
}

.testimonials {
  padding: 120px 0;
  background: var(--light-coral);
}

.testimonials h2 {
  text-align: center;
  font-size: 48px;
  color: var(--red);
  margin-bottom: 80px;
}

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

.testimonial {
  padding: 40px;
  background: var(--white);
  border-radius: 8px;
  border-left: 3px solid var(--red);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

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

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

.testimonial-author strong {
  display: block;
  color: var(--red);
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: var(--navy);
  opacity: 0.7;
  font-size: 14px;
}

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

  .testimonials h2 {
    font-size: 32px;
  }

  .testimonials-grid {
    gap: 40px;
  }
}

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

.pricing h2 {
  text-align: center;
  font-size: 48px;
  color: var(--red);
  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 {
  padding: 48px;
  border: 2px solid var(--navy);
  border-radius: 8px;
  background: var(--white);
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}

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

.pricing-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(255, 0, 0, 0.15);
}

.pricing-card.featured {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.1);
}

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

.pricing-card h3 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 12px;
}

.pricing-description {
  color: var(--navy);
  opacity: 0.7;
  margin-bottom: 24px;
  min-height: 48px;
}

.price {
  margin-bottom: 32px;
}

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

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

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

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

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

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

  .pricing h2 {
    font-size: 32px;
  }

  .pricing-card {
    padding: 32px;
  }
}

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

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

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

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

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--red);
  padding: 24px 0;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
  color: var(--navy);
  font-size: 14px;
  flex: 1;
}

.cookie-accept {
  background: var(--burgundy);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept:hover {
  background: var(--red);
}

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

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

.legal-page h1 {
  font-size: 48px;
  color: var(--red);
  margin-bottom: 60px;
}

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

.legal-section h2 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
}

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

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

.legal-section li {
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.7;
}

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

  .legal-page h1 {
    font-size: 32px;
  }

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