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

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

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

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: 24px 120px;
}

.logo svg {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

.logo svg:hover {
  transform: scale(1.05);
}

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

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

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

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

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

.cta-button {
  background: var(--electric-blue);
  color: var(--white);
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

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

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

.mobile-menu-toggle svg {
  width: 28px;
  height: 28px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 100px 40px;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  border: 1px solid var(--gray);
  border-radius: 50%;
  opacity: 0.3;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, var(--gray) 1px, transparent 1px),
    linear-gradient(to bottom, var(--gray) 1px, transparent 1px);
  background-size: 100px 100px;
  opacity: 0.15;
  pointer-events: none;
}

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

.hero h1 {
  font-size: 72px;
  font-weight: 800;
  color: var(--red);
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -2px;
}

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

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

.glowing-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--electric-blue), transparent);
  margin: 120px 0;
  box-shadow: 0 0 8px rgba(27, 108, 255, 0.4);
}

.section {
  padding: 120px 0;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--navy);
  opacity: 0.8;
  margin-bottom: 80px;
  max-width: 600px;
}

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

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

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--electric-blue), var(--deep-blue));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

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

.feature-icon {
  margin-bottom: 32px;
  animation: float 3s ease-in-out infinite;
}

.feature-icon svg {
  width: 56px;
  height: 56px;
}

@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;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 700;
}

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

.testimonials {
  background: linear-gradient(135deg, var(--coral) 0%, var(--gray) 100%);
  padding: 120px 0;
}

.testimonials-grid {
  display: grid;
  gap: 64px;
}

.testimonial {
  background: var(--white);
  padding: 48px;
  border-radius: 12px;
  border-left: 4px solid var(--electric-blue);
  position: relative;
  box-shadow: 0 4px 16px rgba(10, 61, 145, 0.06);
}

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

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

.testimonial-company {
  color: var(--navy);
  opacity: 0.7;
  font-size: 14px;
  margin-top: 4px;
}

.pricing {
  padding: 120px 0;
}

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

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

.pricing-card:hover {
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px rgba(27, 108, 255, 0.1);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--burgundy);
  background: linear-gradient(135deg, var(--white) 0%, var(--coral) 100%);
}

.pricing-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--electric-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.pricing-name {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.pricing-description {
  color: var(--navy);
  opacity: 0.8;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.pricing-price span {
  font-size: 20px;
  color: var(--navy);
  opacity: 0.7;
  font-weight: 500;
}

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

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

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

.pricing-card .cta-button {
  width: 100%;
  text-align: center;
  margin-top: 32px;
}

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

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

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

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

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray);
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  box-shadow: 0 -4px 16px rgba(10, 61, 145, 0.08);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-notice.show {
  transform: translateY(0);
}

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

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

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

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

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

.privacy-content,
.terms-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 150px 40px 80px;
}

.privacy-content h1,
.terms-content h1 {
  font-size: 48px;
  color: var(--red);
  margin-bottom: 32px;
  font-weight: 800;
}

.privacy-content h2,
.terms-content h2 {
  font-size: 32px;
  color: var(--burgundy);
  margin-top: 48px;
  margin-bottom: 24px;
  font-weight: 700;
}

.privacy-content p,
.terms-content p {
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 16px;
}

.privacy-content ul,
.terms-content ul {
  margin: 24px 0;
  padding-left: 32px;
}

.privacy-content li,
.terms-content li {
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

  .header-content {
    padding: 20px 60px;
  }

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

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

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

  .header-content {
    padding: 20px 40px;
  }

  nav {
    display: none;
  }

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

  .hero {
    padding: 80px 0 60px;
    min-height: auto;
  }

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

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

  .section {
    padding: 60px 0;
  }

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

  .section-subtitle {
    font-size: 18px;
    margin-bottom: 48px;
  }

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

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

  .glowing-line {
    margin: 60px 0;
  }

  .testimonials {
    padding: 60px 0;
  }

  .pricing {
    padding: 60px 0;
  }

  footer {
    padding: 60px 0;
  }

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

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

  .privacy-content,
  .terms-content {
    padding: 120px 40px 60px;
  }

  .privacy-content h1,
  .terms-content h1 {
    font-size: 36px;
  }

  .privacy-content h2,
  .terms-content h2 {
    font-size: 24px;
  }
}
