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

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

body {
  font-family: "Inter", "Roboto", "IBM Plex Sans", sans-serif;
  background-color: var(--white);
  color: var(--navy-blue);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

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

header {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--soft-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(6, 42, 99, 0.05);
}

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

.logo-svg {
  width: 50px;
  height: 50px;
}

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

nav a {
  font-weight: 500;
  color: var(--navy-blue);
  transition: color 0.3s ease;
  position: relative;
}

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

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

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

.cta-button {
  background: var(--primary-red);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.cta-button:hover {
  background: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 0, 0, 0.3);
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  animation: fadeIn 0.3s ease;
}

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

.mobile-menu a {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-blue);
}

.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  font-size: 32px;
  color: var(--navy-blue);
}

.hero {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(135deg, var(--white) 0%, rgba(230, 234, 240, 0.3) 100%);
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  pointer-events: none;
}

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

.hero h1 {
  font-size: 64px;
  font-weight: 700;
  color: var(--primary-red);
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.hero p {
  font-size: 20px;
  color: var(--navy-blue);
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0.9;
}

.hero .cta-button {
  font-size: 18px;
  padding: 18px 50px;
}

.glowing-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--soft-gray), transparent);
  margin: 80px 0;
}

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

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

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--soft-gray);
  padding: 40px 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 10px rgba(6, 42, 99, 0.05);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  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-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

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

.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, rgba(230, 234, 240, 0.2) 100%);
}

.testimonials-grid {
  display: grid;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  padding: 40px;
  background: var(--white);
  border-left: 3px solid var(--primary-red);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(6, 42, 99, 0.08);
  position: relative;
}

.testimonial::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-red);
  box-shadow: 0 0 10px var(--primary-red);
}

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

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

.pricing {
  padding: 100px 0;
  background: var(--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: var(--white);
  border: 2px solid var(--navy-blue);
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

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

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

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

.pricing-price {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 30px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
}

.pricing-card li {
  padding: 10px 0;
  color: var(--navy-blue);
  border-bottom: 1px solid var(--soft-gray);
}

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

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 14px;
}

.footer-links a {
  color: var(--navy-blue);
  transition: color 0.3s ease;
}

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

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 2px solid var(--navy-blue);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(6, 42, 99, 0.1);
}

.cookie-notice.hidden {
  display: none;
}

.cookie-notice p {
  color: var(--navy-blue);
  font-size: 14px;
}

.cookie-notice button {
  background: var(--primary-red);
  color: var(--white);
  padding: 10px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cookie-notice button:hover {
  background: var(--burgundy);
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.content-page {
  padding: 100px 0;
  max-width: 900px;
  margin: 0 auto;
}

.content-page h1 {
  font-size: 48px;
  color: var(--primary-red);
  margin-bottom: 40px;
}

.content-page h2 {
  font-size: 32px;
  color: var(--navy-blue);
  margin-top: 40px;
  margin-bottom: 20px;
}

.content-page p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--navy-blue);
}

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

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

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

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

  nav {
    display: none;
  }

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

  .hero {
    padding: 80px 0;
  }

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

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

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

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

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

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

  .cookie-notice {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}
