/* Utilities */
.text-muted-fg {
  color: var(--muted-foreground);
}

.bg-card {
  background: var(--card);
}

.bg-muted {
  background: var(--muted);
}

.bg-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.bg-gradient-hero {
  background: var(--gradient-hero);
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

.bg-gradient-soft {
  background: var(--gradient-soft);
}

.text-secondary-c {
  color: var(--secondary);
}

.text-primary-fg {
  color: var(--primary-foreground);
}

.text-primary-fg-70 {
  color: rgba(245, 249, 255, .75);
}

.text-primary-fg-60 {
  color: rgba(245, 249, 255, .6);
}

.border-soft {
  border: 1px solid var(--border);
}

.shadow-elegant {
  box-shadow: var(--shadow-elegant);
}

.shadow-card {
  box-shadow: var(--shadow-card);
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-xl {
  border-radius: .85rem;
}

.rounded-lg {
  border-radius: .6rem;
}

/* Buttons */
.btn-hero {
  background: var(--gradient-accent);
  color: #fff;
  border: 0;
  box-shadow: var(--shadow-elegant);
  transition: .3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: #fff;
}

.btn-navy {
  background: var(--gradient-primary);
  color: #fff;
  border: 0;
  box-shadow: var(--shadow-card);
  transition: .3s;
}

.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elegant);
  color: #fff;
}

.btn-outline-light {
  border: 1px solid rgba(245, 249, 255, .3);
  background: transparent;
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(245, 249, 255, .1);
  color: #fff;
}

.btn-outline-soft {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--foreground);
}

.btn-xl {
  padding: .95rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: .6rem;
}

/* Navbar */
.navbar-genfin {
  background: rgba(251, 252, 253, .85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar-genfin a.nav-link {
  color: var(--muted-foreground);
  font-size: .9rem;
  font-weight: 500;
}

.navbar-genfin a.nav-link:hover {
  color: var(--foreground);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: .6rem;
  background: var(--gradient-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero .blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  opacity: .35;
}

.hero .blob-1 {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--secondary);
}

.hero .blob-2 {
  bottom: -50px;
  left: 25%;
  width: 400px;
  height: 400px;
  background: var(--primary-glow);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem 1rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 500;
  background: rgba(245, 249, 255, .1);
  border: 1px solid rgba(245, 249, 255, .2);
  color: #fff;
  backdrop-filter: blur(8px);
}

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.video-card {
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 1rem;
  padding: .5rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-elegant);
  position: relative;
  overflow: hidden;
}

.video-thumb {
  position: relative;
  border-radius: .7rem;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #16306b, #0a1733);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 33, 72, .85), rgba(15, 33, 72, .2), transparent);
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  background: var(--secondary);
  color: #fff;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-elegant);
  position: relative;
}

.play-btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 9999px;
  background: var(--secondary);
  opacity: .4;
  animation: ping 2s infinite cubic-bezier(0, 0, .2, 1);
}

@keyframes ping {

  75%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Section heading */
.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--secondary);
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.1;
}

@media(min-width:768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* Cards */
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: .3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: .75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-box-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.icon-box-primary {
  background: var(--gradient-primary);
  color: #fff;
}

/* How it works */
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.step-num {
  font-family: 'Plus Jakarta Sans';
  font-size: 2rem;
  font-weight: 800;
  color: rgba(90, 103, 121, .35);
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: var(--gradient-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

@media(min-width:576px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(min-width:992px) {
  .features-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.features-grid>div {
  background: var(--card);
  padding: 2rem;
  transition: .2s;
}

.features-grid>div:hover {
  background: rgba(225, 250, 245, .4);
}

/* Pricing */
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: .3s;
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}

.price-card.popular {
  border: 1px solid var(--secondary);
  box-shadow: var(--shadow-elegant);
}

@media(min-width:992px) {
  .price-card.popular {
    transform: translateY(-1rem) scale(1.02);
  }
}

.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: #fff;
  padding: .25rem .85rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}

.price {
  font-family: 'Plus Jakarta Sans';
  font-size: 3rem;
  font-weight: 800;
}

.check {
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background: var(--accent);
  color: var(--accent-foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
}

.lock-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: .35rem 1rem;
  border-radius: 9999px;
  font-size: .85rem;
  font-weight: 500;
}

/* Testimonials */
.quote-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--secondary);
}

.compliance-badge {
  border: 1px solid var(--border);
  background: var(--card);
  padding: .5rem 1rem;
  border-radius: .4rem;
  font-family: 'Plus Jakarta Sans';
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--muted-foreground);
}

/* Footer */
footer {
  background: var(--primary);
  color: var(--primary-foreground);
}

footer a {
  color: rgba(245, 249, 255, .65);
  text-decoration: none;
  font-size: .9rem;
}

footer a:hover {
  color: #fff;
}

footer h4 {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(245, 249, 255, .9);
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: .5rem;
  border: 1px solid rgba(245, 249, 255, .2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(245, 249, 255, .1);
  color: #fff;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fade-up {
  animation: fadeUp .8s ease-out both;
}

.fade-up.delay {
  animation-delay: .15s;
}