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

:root {
  --white: #ffffff;
  --red: #ff0000;
  --burgundy: #800000;
  --navy: #062a63;
  --gray: #e6eaf0;
  --lightcoral: #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;
  font-size: 16px;
  overflow-x: hidden;
}

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

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px;
}

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

.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;
  align-items: center;
  gap: 40px;
}

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

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

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

.nav a:not(.cta-button):hover::after {
  width: 100%;
}

.cta-button {
  background: var(--burgundy);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid var(--burgundy);
}

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

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

.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
}

.hero-accent {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--burgundy) 100%);
  margin-bottom: 32px;
}

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

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

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

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

.hero-visual {
  position: relative;
  height: 500px;
}

.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.grid-line {
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--gray) 50%, transparent 100%);
  animation: pulse 3s ease-in-out infinite;
}

.grid-line:nth-child(2) {
  animation-delay: 0.5s;
}

.grid-line:nth-child(3) {
  animation-delay: 1s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 20px;
  color: var(--navy);
  opacity: 0.8;
}

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

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gray) 50%, transparent 100%);
}

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

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

.feature-card.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  border-color: var(--burgundy);
  box-shadow: 0 8px 32px rgba(6, 42, 99, 0.08);
  transform: translateY(-4px);
}

.feature-icon {
  margin-bottom: 28px;
  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: var(--navy);
  margin-bottom: 16px;
}

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

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

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

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

.testimonial-card.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--red) 0%, var(--burgundy) 100%);
  border-radius: 4px 0 0 4px;
  transition: height 0.3s ease;
}

.testimonial-card:hover .testimonial-glow {
  height: 100%;
}

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

.testimonial-author strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

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

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: start;
}

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

.pricing-card.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover {
  border-color: var(--burgundy);
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(6, 42, 99, 0.12);
}

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

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

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray);
}

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

.pricing-header p {
  font-size: 15px;
  color: var(--navy);
  opacity: 0.7;
}

.pricing-price {
  text-align: center;
  margin-bottom: 36px;
}

.price-amount {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

.footer-links {
  display: flex;
  gap: 32px;
}

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

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

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

.cookie-notice {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--navy);
  padding: 24px;
  z-index: 1001;
  transition: bottom 0.4s ease;
  box-shadow: 0 -4px 24px rgba(6, 42, 99, 0.1);
}

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

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

.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;
}

.cookie-accept:hover {
  background: var(--red);
  transform: translateY(-2px);
}

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

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

.legal-updated {
  font-size: 14px;
  color: var(--navy);
  opacity: 0.7;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gray);
}

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

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

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

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

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

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

  .container-narrow {
    padding: 0 40px;
  }

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

  .hero {
    padding: 140px 0 80px;
  }

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

  .hero-visual {
    height: 300px;
  }

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

  .section-header h2 {
    font-size: 40px;
  }

  .section-header {
    margin-bottom: 60px;
  }
}

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

  .container-narrow {
    padding: 0 24px;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 32px 24px;
    box-shadow: 0 8px 24px rgba(6, 42, 99, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 120px 0 60px;
  }

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

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

  .hero-visual {
    height: 200px;
  }

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

  .section-header h2 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 18px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .features-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card,
  .testimonial-card {
    padding: 32px 24px;
  }

  .pricing-card {
    padding: 36px 24px;
  }

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

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

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

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

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

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

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

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

  .section-header h2 {
    font-size: 28px;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
