/* /Components/Download.razor.rz.scp.css */
.hero-section[b-jagq8np7vs] {
  position: relative;
  padding: 4rem 0 6rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* Floating gradient orbs */
.hero-orb[b-jagq8np7vs] {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.hero-orb-1[b-jagq8np7vs] {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.15) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation: orbFloat1 15s ease-in-out infinite;
}

.hero-orb-2[b-jagq8np7vs] {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  bottom: -5%;
  right: -5%;
  animation: orbFloat2 18s ease-in-out infinite;
}

.hero-orb-3[b-jagq8np7vs] {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation: orbFloat1 20s ease-in-out infinite reverse;
}

.hero-content[b-jagq8np7vs] {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text[b-jagq8np7vs] {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title[b-jagq8np7vs] {
  font-size: 5.6rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero-subtitle[b-jagq8np7vs] {
  font-size: 1.8rem;
  line-height: 1.7;
  opacity: 0.8;
  max-width: 50ch;
  margin: 0;
  font-weight: 500;
}

.badges[b-jagq8np7vs] {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 1rem;
}

.badges h3[b-jagq8np7vs] {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

.badge[b-jagq8np7vs] {
  height: 6rem;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  border-radius: 1.2rem;
}

.badge:hover[b-jagq8np7vs] {
  transform: translateY(-4px) scale(1.06);
  filter: drop-shadow(0 8px 30px rgba(0, 113, 227, 0.25));
}

.hero-image-wrapper[b-jagq8np7vs] {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image[b-jagq8np7vs] {
  max-width: 100%;
  max-height: 500px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 50px rgba(0, 113, 227, 0.15));
  transition: transform 0.5s var(--transition-smooth);
}

.hero-image:hover[b-jagq8np7vs] {
  transform: scale(1.05) translateY(-10px);
  filter: drop-shadow(0 30px 60px rgba(0, 113, 227, 0.2));
}

/* Mobile */
@media (max-width: 768px) {
  .hero-section[b-jagq8np7vs] {
    min-height: auto;
    padding: 2rem 0 4rem;
  }

  .hero-content[b-jagq8np7vs] {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title[b-jagq8np7vs] {
    font-size: 3.6rem;
  }

  .hero-subtitle[b-jagq8np7vs] {
    font-size: 1.6rem;
    margin: 0 auto;
  }

  .badges[b-jagq8np7vs] {
    align-items: center;
  }

  .hero-image-wrapper[b-jagq8np7vs] {
    order: -1;
  }

  .hero-image[b-jagq8np7vs] {
    max-height: 300px;
  }

  .hero-orb-1[b-jagq8np7vs] {
    width: 250px;
    height: 250px;
  }

  .hero-orb-2[b-jagq8np7vs] {
    width: 200px;
    height: 200px;
  }

  .hero-orb-3[b-jagq8np7vs] {
    display: none;
  }
}
/* /Components/Features.razor.rz.scp.css */
/* Section title */
.section-title[b-dg0wry7kkq] {
  text-align: center;
  margin-bottom: 1rem;
}

/* Card grid */
.card-container[b-dg0wry7kkq] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2.4rem;
  padding: 2rem 0;
}

/* Glass card base */
.card[b-dg0wry7kkq] {
  background: var(--gradient-card);
  border-radius: 2.4rem;
  padding: 3.2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.4s var(--transition-smooth);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.card[b-dg0wry7kkq]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s var(--transition-smooth);
}

.card[b-dg0wry7kkq]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.04) 0%, rgba(99, 102, 241, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--transition-smooth);
  pointer-events: none;
}

.card:hover[b-dg0wry7kkq] {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 113, 227, 0.15);
}

.card:hover[b-dg0wry7kkq]::before {
  opacity: 1;
}

.card:hover[b-dg0wry7kkq]::after {
  opacity: 1;
}

/* Feature cards */
.feature-card[b-dg0wry7kkq] {
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 30rem;
  width: 26rem;
  color: var(--text-dark);
}

.feature-card p[b-dg0wry7kkq] {
  color: var(--text-dark);
  opacity: 0.75;
  font-size: 1.5rem;
}

.heading[b-dg0wry7kkq] {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.heading h4[b-dg0wry7kkq] {
  color: var(--text-dark);
  font-weight: 700;
  margin: 0;
}

.feature-emoji[b-dg0wry7kkq] {
  font-size: 3.2rem;
  transition: transform 0.4s var(--transition-bounce);
}

.card:hover .feature-emoji[b-dg0wry7kkq] {
  transform: scale(1.25) rotate(10deg);
}

/* More info link */
.more-info[b-dg0wry7kkq] {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: var(--blue);
  border-radius: 1.2rem;
  padding: 1rem;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.more-info[b-dg0wry7kkq]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.08) 0%, rgba(99, 102, 241, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--transition-smooth);
  border-radius: inherit;
}

.more-info:hover[b-dg0wry7kkq]::before {
  opacity: 1;
}

.more-info:hover[b-dg0wry7kkq] {
  transform: translateY(-2px);
}

.more-info p[b-dg0wry7kkq] {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
  margin: 0;
  opacity: 1;
}

.more-info img[b-dg0wry7kkq] {
  transition: transform 0.3s var(--transition-bounce);
  position: relative;
  z-index: 1;
  height: 1.6rem;
}

.more-info:hover img[b-dg0wry7kkq] {
  transform: translateY(4px);
}

/* Why Fitaino section */
.why-section[b-dg0wry7kkq] {
  margin-top: 10rem;
  padding: 2rem 0;
}

.why-grid[b-dg0wry7kkq] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.2rem;
  margin-top: 3rem;
}

.why-card[b-dg0wry7kkq] {
  border-radius: 2.4rem;
  padding: 3.2rem 4rem;
  flex: 1 1 42%;
  min-width: 280px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.why-card-no[b-dg0wry7kkq] {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(244, 63, 94, 0.15);
}

.why-card-yes[b-dg0wry7kkq] {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
}

.why-item[b-dg0wry7kkq] {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.4rem 0;
  transition: transform 0.3s var(--transition-smooth);
}

.why-item:hover[b-dg0wry7kkq] {
  transform: translateX(8px);
}

.why-item h4[b-dg0wry7kkq] {
  margin: 0;
  font-size: 2rem;
}

.why-emoji[b-dg0wry7kkq] {
  font-size: 2.8rem;
  flex-shrink: 0;
}

/* Feature detail sections */
.feature-detail-overview[b-dg0wry7kkq] {
  margin-top: 10rem;
  color: var(--text-dark);
  padding: 4rem 0;
}

.feature-details[b-dg0wry7kkq] {
  display: grid;
  align-items: center;
  grid-template-columns: auto 6.4rem 1fr;
  grid-template-areas:
    "image . heading"
    "image . list";
  margin-bottom: 10rem;
  padding: 4rem 0;
  position: relative;
  scroll-margin-top: 10rem;
}

.feature-details-reverse[b-dg0wry7kkq] {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 6.4rem auto;
  grid-template-areas:
    ". heading . image"
    ". list . image";
  margin-bottom: 10rem;
  padding: 4rem 0;
  position: relative;
  scroll-margin-top: 10rem;
}

.feature-detail-list[b-dg0wry7kkq] {
  align-self: baseline;
  height: min-content;
  grid-area: list;
  display: grid;
  grid-column-gap: 1.6rem;
  grid-row-gap: 1.8rem;
  align-items: center;
  grid-template-columns: auto 1fr;
}

.feature-detail-list p[b-dg0wry7kkq] {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text-dark);
  opacity: 0.85;
  transition: all 0.3s var(--transition-smooth);
  margin: 0;
}

.feature-detail-list p:hover[b-dg0wry7kkq] {
  opacity: 1;
  transform: translateX(6px);
  color: var(--blue);
}

.list-emoji[b-dg0wry7kkq] {
  font-size: 2rem;
  transition: transform 0.3s var(--transition-bounce);
}

.list-emoji:hover[b-dg0wry7kkq] {
  transform: scale(1.3);
}

.feature-image[b-dg0wry7kkq] {
  grid-area: image;
  max-width: 380px;
  max-height: 480px;
  width: auto;
  transition: all 0.6s var(--transition-smooth);
  filter: drop-shadow(0 10px 30px rgba(0, 113, 227, 0.12));
}

.feature-details .feature-image:hover[b-dg0wry7kkq] {
  transform: scale(1.05) translateY(-8px) perspective(800px) rotateY(3deg);
  filter: drop-shadow(0 25px 50px rgba(0, 113, 227, 0.18));
}

.feature-details-reverse .feature-image:hover[b-dg0wry7kkq] {
  transform: scale(1.05) translateY(-8px) perspective(800px) rotateY(-3deg);
  filter: drop-shadow(0 25px 50px rgba(0, 113, 227, 0.18));
}

.feature-heading[b-dg0wry7kkq] {
  align-self: end;
  grid-area: heading;
  display: flex;
  column-gap: 1.6rem;
  align-items: center;
}

.feature-heading h3[b-dg0wry7kkq] {
  margin: 1.6rem 0;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.detail-emoji[b-dg0wry7kkq] {
  font-size: 3.6rem;
  transition: transform 0.4s var(--transition-bounce);
}

.detail-emoji:hover[b-dg0wry7kkq] {
  transform: scale(1.2) rotate(10deg);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .card-container[b-dg0wry7kkq] {
    gap: 1.6rem;
  }

  .feature-card[b-dg0wry7kkq] {
    width: 100%;
    max-width: 340px;
    height: auto;
    min-height: 24rem;
  }

  .why-card[b-dg0wry7kkq] {
    flex: 1 1 100%;
  }

  .feature-details[b-dg0wry7kkq],
  .feature-details-reverse[b-dg0wry7kkq] {
    margin-top: 6rem;
    margin-bottom: 6rem;
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "image"
      "list";
    gap: 2rem;
    text-align: center;
  }

  .feature-detail-overview[b-dg0wry7kkq] {
    margin-top: 4rem;
  }

  .feature-heading[b-dg0wry7kkq] {
    justify-content: center;
  }

  .feature-image[b-dg0wry7kkq] {
    max-width: 80%;
  }

  .why-section[b-dg0wry7kkq] {
    margin-top: 6rem;
  }
}
/* /Layout/MainLayout.razor.rz.scp.css */
main[b-wempds42d3] {
  display: grid;
  grid-template-columns: 1fr min(1200px, 90%) 1fr;
  grid-template-areas: ". article .";
}

@media (max-width: 768px) {
  main[b-wempds42d3] {
    grid-template-columns: 1fr min(95%, 100%) 1fr;
  }
}

article[b-wempds42d3] {
  grid-area: article;
}

content[b-wempds42d3] {
  display: block;
  min-height: 80vh;
  padding-top: 2rem;
}
/* /Layout/NavFooter.razor.rz.scp.css */
footer[b-nh3f79c0wd] {
  position: relative;
  width: 100%;
  margin-top: 6rem;
}

/* Footer background */
.footer-bg[b-nh3f79c0wd] {
  position: relative;
  background: var(--gradient-footer);
}

.footer-wrapper[b-nh3f79c0wd] {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Brand column */
.brand[b-nh3f79c0wd] {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: transform 0.3s var(--transition-smooth);
}

.brand:hover[b-nh3f79c0wd] {
  transform: scale(1.03);
}

[b-nh3f79c0wd] .brand a {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: var(--text-light) !important;
  text-decoration: none;
}

.icon > img[b-nh3f79c0wd] {
  height: 36px;
  width: 36px;
  transition: transform 0.3s var(--transition-smooth);
}

.icon:hover > img[b-nh3f79c0wd] {
  transform: scale(1.1) rotate(5deg);
}

.copyright[b-nh3f79c0wd] {
  font-size: 1.2rem;
  color: rgba(245, 245, 247, 0.5);
  margin: 1.2rem 0 0.4rem;
}

.made-with[b-nh3f79c0wd] {
  font-size: 1.3rem;
  color: rgba(245, 245, 247, 0.6);
  margin: 0;
}

/* Footer columns */
.footer-col h4[b-nh3f79c0wd] {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0 0 1.6rem;
  letter-spacing: 0.02em;
}

[b-nh3f79c0wd] .footer-col a {
  color: rgba(245, 245, 247, 0.7);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

[b-nh3f79c0wd] .footer-col a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-primary);
  transition: width 0.3s var(--transition-smooth);
}

[b-nh3f79c0wd] .footer-col a:hover {
  color: var(--blue-300);
  transform: translateX(4px);
}

[b-nh3f79c0wd] .footer-col a:hover::after {
  width: 100%;
}

/* Footer bottom bar */
.footer-bottom[b-nh3f79c0wd] {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
}

.footer-bottom-inner[b-nh3f79c0wd] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span[b-nh3f79c0wd] {
  font-size: 1.3rem;
  color: rgba(245, 245, 247, 0.4);
}

.back-to-top[b-nh3f79c0wd] {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(245, 245, 247, 0.7);
  padding: 0.8rem 1.6rem;
  border-radius: 5rem;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  box-shadow: none;
}

.back-to-top:hover[b-nh3f79c0wd] {
  background: rgba(0, 113, 227, 0.2);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 113, 227, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-wrapper[b-nh3f79c0wd] {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-wrapper[b-nh3f79c0wd] {
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    padding: 3rem 2rem;
  }

  .footer-bottom-inner[b-nh3f79c0wd] {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-wrapper[b-nh3f79c0wd] {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand[b-nh3f79c0wd] {
    justify-content: center;
  }

  .footer-col h4[b-nh3f79c0wd] {
    margin-top: 1rem;
  }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-content[b-t4tvjd3mvq] {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr min(1200px, 90%) 1fr;
  grid-template-areas: ". navbar-inner .";
  margin: 0;
  padding: 1.6rem 0;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(0, 113, 227, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s var(--transition-smooth);
  animation: slideDown-b-t4tvjd3mvq 0.6s var(--transition-smooth);
}

.navbar-content[b-t4tvjd3mvq]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 113, 227, 0.2) 50%, transparent 100%);
}

/* Scrolled state — applied by JS */
:global(.navbar-content.scrolled)[b-t4tvjd3mvq] {
  padding: 0.8rem 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 30px rgba(0, 113, 227, 0.08);
}

.navbar-inner[b-t4tvjd3mvq] {
  grid-area: navbar-inner;
  display: flex;
  gap: 1.6rem;
  justify-content: space-between;
  align-items: center;
}

/* Brand */
.nav-brand[b-t4tvjd3mvq] {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: transform 0.3s var(--transition-smooth);
}

.nav-brand:hover[b-t4tvjd3mvq] {
  transform: scale(1.05);
}

.nav-brand > img[b-t4tvjd3mvq] {
  height: 36px;
  filter: brightness(0) saturate(100%) invert(38%) sepia(95%) saturate(2578%) hue-rotate(197deg) brightness(99%) contrast(101%);
  transition: filter 0.3s var(--transition-smooth);
}


@keyframes slideDown-b-t4tvjd3mvq {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Nav links container */
.nav-links[b-t4tvjd3mvq] {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* Individual nav link */
.nav-link[b-t4tvjd3mvq] {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 1rem;
  transition: all 0.3s var(--transition-smooth);
  cursor: pointer;
  background: none;
  border: none;
}

.nav-link[b-t4tvjd3mvq]::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s var(--transition-smooth);
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-link:hover[b-t4tvjd3mvq] {
  color: var(--blue);
  background: rgba(0, 113, 227, 0.06);
}

.nav-link:hover[b-t4tvjd3mvq]::after {
  width: 60%;
}

/* CTA button */
.nav-cta[b-t4tvjd3mvq] {
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 5rem;
  background: var(--gradient-primary);
  background-size: 200% 200%;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(0, 113, 227, 0.3);
  white-space: nowrap;
}

.nav-cta:hover[b-t4tvjd3mvq] {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--glow-blue-strong);
  background-position: 100% 100%;
}

/* Hamburger */
.hamburger[b-t4tvjd3mvq] {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.8rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  box-shadow: none;
}

.hamburger span[b-t4tvjd3mvq] {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s var(--transition-smooth);
}

.hamburger.active span:nth-child(1)[b-t4tvjd3mvq] {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2)[b-t4tvjd3mvq] {
  opacity: 0;
}

.hamburger.active span:nth-child(3)[b-t4tvjd3mvq] {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Dropdown */
.dropdown[b-t4tvjd3mvq] {
  position: relative;
  height: fit-content;
}

.dropdown-content[b-t4tvjd3mvq] {
  top: 50px;
  right: 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  background: rgba(255, 255, 255, 0.95);
  min-width: 160px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 0, 0, 0.08);
  z-index: 1001;
  transition: all 0.3s var(--transition-smooth);
  border: 1px solid rgba(0, 113, 227, 0.1);
  border-radius: 1.6rem;
  transform: translateY(-10px);
  padding: 0.8rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}

.dropdown:hover .dropdown-content[b-t4tvjd3mvq] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.grid-item[b-t4tvjd3mvq] {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.6rem;
  border-radius: 1.2rem;
  transition: all 0.2s var(--transition-smooth);
  cursor: pointer;
}

.grid-item:hover[b-t4tvjd3mvq] {
  background: rgba(0, 113, 227, 0.08);
  transform: scale(1.02);
}

.grid-item > img[b-t4tvjd3mvq] {
  height: 24px;
  width: 24px;
}

[b-t4tvjd3mvq] .grid-item > a {
  font-size: 1.4rem;
  color: var(--text-dark);
  font-weight: 500;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
  .navbar-content[b-t4tvjd3mvq] {
    grid-template-columns: 1fr;
    grid-template-areas: "navbar-inner";
    padding: 1.2rem 2rem;
  }

  .hamburger[b-t4tvjd3mvq] {
    display: flex;
  }

  .nav-links[b-t4tvjd3mvq] {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    padding: 8rem 2.4rem 2.4rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.4s var(--transition-smooth);
    gap: 0.8rem;
    z-index: 999;
  }

  .nav-links.open[b-t4tvjd3mvq] {
    right: 0;
  }

  .nav-link[b-t4tvjd3mvq] {
    font-size: 1.8rem;
    padding: 1.4rem 2rem;
    text-align: left;
  }

  .nav-cta[b-t4tvjd3mvq] {
    font-size: 1.6rem;
    text-align: center;
    padding: 1.4rem 2rem;
    border-radius: 1.4rem;
  }

  .dropdown[b-t4tvjd3mvq] {
    align-self: center;
    margin-top: 1rem;
  }

  .dropdown-content[b-t4tvjd3mvq] {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 0;
  }
}

.grid-item > p[b-t4tvjd3mvq] {
  justify-self: left;
  margin: 0px;
  font-size: 12px;
  color: var(--text-dark);
  opacity: 0.5;
  white-space: nowrap;
}
/* /Pages/Agb.razor.rz.scp.css */
/* /Pages/Datenschutz.razor.rz.scp.css */
/* /Pages/Home.razor.rz.scp.css */
/* How It Works Section */
.how-it-works[b-wgya6tcl5h] {
  text-align: center;
  padding: 8rem 0;
  position: relative;
}

.how-it-works h2[b-wgya6tcl5h] {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

.how-subtitle[b-wgya6tcl5h] {
  font-size: 1.8rem;
  opacity: 0.7;
  margin-bottom: 4rem;
}

.steps-grid[b-wgya6tcl5h] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-card[b-wgya6tcl5h] {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid rgba(0, 113, 227, 0.1);
  border-radius: 2.4rem;
  padding: 3.2rem 2.4rem;
  text-align: center;
  transition: all 0.4s var(--transition-smooth);
  overflow: hidden;
}

.step-card[b-wgya6tcl5h]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s var(--transition-smooth);
}

.step-card:hover[b-wgya6tcl5h] {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 113, 227, 0.2);
}

.step-card:hover[b-wgya6tcl5h]::before {
  opacity: 1;
}

.step-number[b-wgya6tcl5h] {
  position: absolute;
  top: 1.2rem;
  left: 1.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(0, 113, 227, 0.1);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-emoji[b-wgya6tcl5h] {
  font-size: 4rem;
  display: block;
  margin-bottom: 1.6rem;
  transition: transform 0.4s var(--transition-bounce);
}

.step-card:hover .step-emoji[b-wgya6tcl5h] {
  transform: scale(1.2) rotate(5deg);
}

.step-card h4[b-wgya6tcl5h] {
  margin: 0 0 0.8rem;
  font-weight: 700;
}

.step-card p[b-wgya6tcl5h] {
  font-size: 1.4rem;
  margin: 0;
  opacity: 0.75;
}

/* Features Section */
.features-section[b-wgya6tcl5h] {
  position: relative;
  padding: 4rem 0 6rem;
}

/* CTA Section */
.cta-section[b-wgya6tcl5h] {
  padding: 4rem 0 2rem;
}

.cta-card[b-wgya6tcl5h] {
  text-align: center;
  padding: 6rem 4rem;
  border-radius: 3rem;
  background: linear-gradient(135deg, rgba(0, 87, 183, 0.06) 0%, rgba(99, 102, 241, 0.06) 50%, rgba(6, 182, 212, 0.04) 100%);
  border: 1px solid rgba(0, 113, 227, 0.12);
  position: relative;
  overflow: hidden;
}

.cta-card[b-wgya6tcl5h]::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.05) 0%, transparent 60%);
  animation: gradientShift 10s ease-in-out infinite;
  background-size: 200% 200%;
}

.cta-card h2[b-wgya6tcl5h] {
  font-size: 3.6rem;
  margin-bottom: 1.6rem;
  position: relative;
}

.cta-card p[b-wgya6tcl5h] {
  font-size: 1.8rem;
  opacity: 0.8;
  max-width: 50ch;
  margin: 0 auto 3rem;
  position: relative;
}

.cta-btn[b-wgya6tcl5h] {
  font-size: 1.8rem;
  padding: 1.6rem 4rem;
  border-radius: 5rem;
  background: var(--gradient-primary);
  background-size: 200% 200%;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: 0 8px 30px rgba(0, 113, 227, 0.3);
  position: relative;
}

.cta-btn:hover[b-wgya6tcl5h] {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--glow-blue-strong);
  background-position: 100% 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .steps-grid[b-wgya6tcl5h] {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .how-it-works[b-wgya6tcl5h] {
    padding: 5rem 0;
  }

  .how-it-works h2[b-wgya6tcl5h] {
    font-size: 3rem;
  }

  .cta-card[b-wgya6tcl5h] {
    padding: 4rem 2rem;
  }

  .cta-card h2[b-wgya6tcl5h] {
    font-size: 2.6rem;
  }

  .cta-btn[b-wgya6tcl5h] {
    font-size: 1.6rem;
    padding: 1.4rem 3rem;
  }
}
/* /Pages/Privacy.razor.rz.scp.css */
/* /Pages/Support.razor.rz.scp.css */
/* Styles are in app.css under .support-page / .support-card */
