/* ============================================================
   LIGHT MODE OVERRIDES — Off White (#fafafa) Theme
   Modern 3D animations, glassmorphism, premium feel
   ============================================================ */

/* ---------- GLOBAL KEYFRAMES ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float3d {

  0%,
  100% {
    transform: translateY(0) rotateX(0deg);
  }

  50% {
    transform: translateY(-12px) rotateX(2deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.15);
  }

  50% {
    box-shadow: 0 12px 48px rgba(37, 211, 102, 0.3);
  }
}

@keyframes cardTilt {

  0%,
  100% {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  }

  25% {
    transform: perspective(1000px) rotateY(2deg) rotateX(-1deg);
  }

  75% {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
  }
}

@keyframes subtleBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}



/* ---------- PRICING SECTION ---------- */
.pricing-section {
  background-color: #fff !important;
  background-image: radial-gradient(125% 125% at 50% 10%, #fff 40%, #b392f0 100%) !important;
  background-position: center !important;
  border-radius: 50px !important;
  padding: 80px 20px !important;
  position: relative;
  overflow: hidden;
}

.pricing-section svg {
  filter: brightness(0.3) !important;
}

.price-header {
  position: relative;
  z-index: 2;
}

/* Billing Toggle — glassy "liquid glass" pill wrapping the whole switch */
.billing-toggle {
  gap: 12px !important;
  margin-top: -34px !important;
  background: rgba(255, 255, 255, 0.35) !important;
  -webkit-backdrop-filter: blur(16px) saturate(160%) !important;
  backdrop-filter: blur(16px) saturate(160%) !important;
  border: 1px solid rgba(100, 116, 139, 0.4) !important;
  border-radius: 50px !important;
  padding: 5px !important;
  box-shadow:
    0 8px 24px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

.billing-toggle .toggle-btn {
  color: #6a6a7a !important;
}

/* Active segment lift is handled by the sliding indicator behind it */
.billing-toggle .toggle-btn.active {
  box-shadow: none !important;
}

/* "50% Off" — reduced height only, kept inline next to Yearly */
.billing-toggle .discount-badge {
  padding: 3px 12px !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
}

.billing-toggle .toggle-btn:hover:not(.active) {
  background: rgba(0, 0, 0, 0.05) !important;
  color: #1a1a2e !important;
}

/* Pricing Title & Text */
.pricing-section .pricing-title,
.pricing-section .price-header-title {
  color: #1a1a2e !important;
}

.pricing-section .pricing-subtitle,
.pricing-section .price-header p {
  color: #4a4a5a !important;
}

/* Plan Cards — Glassmorphism + 3D Tilt */
.pricing-card-1 {
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 24px !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  transform-style: preserve-3d !important;
  perspective: 1000px !important;
  color: #1a1a2e !important;
}

.pricing-card-1:hover {
  transform: translateY(-12px) rotateX(2deg) !important;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.14),
    0 8px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(37, 211, 102, 0.3) !important;
}

/* Silver Card Accent */
.silver-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(220, 230, 255, 0.5) 100%) !important;
}

.silver-card:hover {
  border-color: rgba(100, 149, 237, 0.4) !important;
  box-shadow:
    0 24px 64px rgba(100, 149, 237, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

/* Gold Card Accent */
.gold-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 240, 200, 0.5) 100%) !important;
}

.gold-card:hover {
  border-color: rgba(218, 165, 32, 0.4) !important;
  box-shadow:
    0 24px 64px rgba(218, 165, 32, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

/* Card Text Colors */
.pricing-card-1 .plan-title {
  position: relative !important;
  top: 0 !important;
  color: #1a1a2e !important;
  margin-bottom: 8px !important;
  line-height: 1 !important;
  background: none !important;
  -webkit-text-fill-color: #1a1a2e !important;
}

.pricing-card-1 .price,
.pricing-card-1 .currency {
  color: #1a1a2e !important;
}

.pricing-card-1 .free-span,
.pricing-card-1 .after-pricing-text {
  color: #4a4a5a !important;
}

.pricing-card-1 .original-price,
.pricing-card-1 .original-price-2 {
  color: #999 !important;
}

.pricing-card-1 .free-span-box {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 2px 8px !important;
}

.pricing-card-1 .discount-label {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  color: #fff !important;
  z-index: 100 !important;
}

.pricing-card-1 .discount-label p {
  color: #fff !important;
}

/* Buy Button on Cards */
.pricing-card-1 .upgrade-btn {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%) !important;
  color: #fafafa !important;
  border: none !important;
  border-radius: 14px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.2) !important;
}

.pricing-card-1 .upgrade-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.3) !important;
}

/* Videos Div in Cards */
.pricing-card-1 .Videos-div {
  background: rgba(250, 250, 250, 0.4) !important;
  border-radius: 16px !important;
}

/* Feature List Items */
.pricing-card-1 .feature-text {
  color: #333 !important;
}

.pricing-card-1 .feature-icon {
  color: #25D366 !important;
}

/* Slick Dots for Plan Carousel */
.pricing-section .slick-dots li button {
  background: rgba(26, 26, 46, 0.3) !important;
}

.pricing-section .slick-dots li.slick-active button {
  background: #1a1a2e !important;
}

/* ---------- CTA SECTION (Focus on yourself) ---------- */
.cta-section {
  background: linear-gradient(135deg, #fafafa 0%, #eaeaea 100%) !important;
  margin-top: 0 !important;
}

.cta-section:before {
  background: transparent !important;
}

.cta-heading {
  color: #1a1a2e !important;
}

.cta-heading .highlight {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.cta-subheading {
  color: #4a4a5a !important;
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
  background: linear-gradient(180deg, #fafafa 0%, #eaeaea 50%, #fafafa 100%) !important;
  color: #1a1a2e !important;
  border-radius: 40px !important;
}

.faq-title {
  color: #1a1a2e !important;
}

.faq-description,
.faq-description p {
  color: #4a4a5a !important;
}

.faq-item {
  background: rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 20px !important;
  margin-bottom: 12px !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
}

.faq-item:hover {
  transform: translateX(6px) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(37, 211, 102, 0.3) !important;
}

.faq-question {
  color: #1a1a2e !important;
  background: transparent !important;
  border: none !important;
}

.faq-question span {
  color: #1a1a2e !important;
}

.faq-icon {
  color: #25D366 !important;
}

.faq-answer,
.faq-answer p {
  color: #4a4a5a !important;
}

/* ---------- MYSA CTA SECTION (bottom CTA) ----------
 * This section is intentionally DARK (device-compatibility showcase).
 * Its background, wave borders and text colors live in
 * css/sections/cta-final.css — do not re-light them here. */
.cta-button-hero {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3) !important;
  transition: all 0.4s ease !important;
  animation: pulseGlow 3s ease-in-out infinite !important;
  text-decoration: none !important;
}

.cta-button-hero:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4) !important;
}

/* ---------- FOOTER ----------
   Footer styling now lives in css/sections/footer-shared.css — the single
   source used by the homepage and every standalone page. */



/* ---------- GLOBAL BACKGROUND & BODY ---------- */
.landing-container,
.page-content,
.content-area,
.app-layout {
  background: #fafafa !important;
}

/* Remove all remaining background-dots */
.background-dots {
  display: none !important;
}

/* Smooth scrolling — only while the page has focus (i.e. after an anchor
   click), so the browser's back/forward scroll RESTORATION is instant instead
   of animating "top → then scroll to where I was". Matches css/base/reset.css. */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}

/* ---------- ANIMATED INFINITY STRIPS (Hero Background) ---------- */
.infinity-strips-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Sits exactly behind the hero content */
  pointer-events: none;
  overflow: hidden;
}

.infinity-strip {
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  /* Double width for seamless looping */
  height: 80%;
  /* Covers the middle vertical space */
  transform: translateY(-50%);
  min-width: 200vw;
}

.strip-path {
  fill: none;
  stroke: rgba(180, 140, 100, 0.5);
  /* Stronger light brown */
  stroke-width: 8px;
  stroke-linecap: round;
  stroke-dasharray: 600 300;
  animation: moveInfinityStrips 25s linear infinite, glowStrips 8s ease-in-out infinite alternate;
}

/* Add slight variations to the different paths for a complex parallax effect */
.strip-delay-1 {
  animation: moveInfinityStrips 30s linear infinite reverse, glowStrips 10s ease-in-out infinite alternate;
  stroke: rgba(160, 120, 80, 0.4);
  stroke-width: 12px;
}

.strip-delay-2 {
  animation: moveInfinityStrips 20s linear infinite, glowStrips 6s ease-in-out infinite alternate;
  stroke: rgba(140, 100, 60, 0.3);
  stroke-width: 6px;
}

.strip-delay-3 {
  animation: moveInfinityStrips 35s linear infinite reverse, glowStrips 12s ease-in-out infinite alternate;
  stroke: rgba(200, 160, 120, 0.4);
  stroke-width: 16px;
}

@keyframes moveInfinityStrips {
  0% {
    stroke-dashoffset: 0;
    transform: translateX(0);
  }

  100% {
    stroke-dashoffset: -1800;
    /* Moves the dash pattern too */
    transform: translateX(-50%);
    /* Shifts the entire SVG by exactly one viewport width */
  }
}

@keyframes glowStrips {
  0% {
    opacity: 0.5;
    filter: drop-shadow(0 0 10px rgba(210, 180, 140, 0.2));
  }

  100% {
    opacity: 1;
    filter: drop-shadow(0 0 25px rgba(210, 180, 140, 0.6));
  }
}

/* ---------- FLOATING TRUST LOGOS (Light Mode) ---------- */
.trust-logo {
  opacity: 0;
  filter: blur(0.2px) !important;
}

@keyframes trustFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  /* 0.6 so they are nicely visible but not fully opaque */
}

/* ========== NEW PRICING LAYOUT ========== */
.pricing-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
  padding: 20px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card-wrapper {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .pricing-cards-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: stretch;
  }

  .card-center {
    z-index: 10;
    transform: scale(1) translateY(0px);
    position: relative;
  }

  .card-left {
    z-index: 0;
    transform: translateX(10px) scale(0.94) perspective(1000px) rotateY(5deg);
    position: relative;
    transform-origin: right center;
  }

  .card-right {
    z-index: 0;
    transform: translateX(-10px) scale(0.94) perspective(1000px) rotateY(-5deg);
    position: relative;
    transform-origin: left center;
  }

  .pricing-card-wrapper:hover {
    transform: translateY(-20px) scale(1.02) !important;
    z-index: 20 !important;
  }
}

.pricing-card-1 {
  height: auto !important;
  min-height: 400px;
  border-radius: 20px !important;
  width: 100% !important;
  max-width: 380px !important;
  display: flex !important;
  aspect-ratio: auto !important;
  padding-bottom: 40px !important;
}

.pricing-card-1 .card-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  margin-bottom: 15px !important;
  width: 100% !important;
}

.pricing-card-1 .plan-details {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  flex: 1 !important;
}

.pricing-card-1 .Videos-div {
  margin-top: 15px !important;
  margin-bottom: 20px !important;
}

.pricing-card-1 .plan-title,
.pricing-card-1 .price,
.pricing-card-1 .currency,
.pricing-card-1 .free-span,
.pricing-card-1 .free-span-box,
.pricing-card-1 .original-price-2,
.pricing-card-1 .after-pricing-text,
.pricing-card-1 .original-price,
.pricing-card-1 .plan-features li span {
  color: #1a1a2e !important;
}

.pricing-hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #4a4a5a;
  text-align: left;
}

.check-icon {
  width: 16px !important;
  height: 16px !important;
  color: #16a34a !important;
  flex-shrink: 0;
  margin-top: 3px;
  stroke-width: 2 !important;
}

.popular-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: linear-gradient(135deg, #36a841, #007ac1);
  color: #fff;
  padding: 6px 16px;
  border-bottom-left-radius: 16px;
  border-top-right-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  z-index: 15;
}

.popular-badge svg {
  width: 14px;
  height: 14px;
}

/* ---------- FLOATING NAVBAR ---------- */
.mysa-floating-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: none;
  box-sizing: border-box;
  height: 60px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 30px;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mysa-floating-nav.nav-hidden {
  transform: translate(-50%, -150%);
  opacity: 0;
  pointer-events: none;
}

.mysa-floating-nav .nav-left .nav-logo {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 30px;
  background: linear-gradient(90deg, #10b981, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.mysa-floating-nav .nav-middle {
  display: flex;
  gap: 30px;
  align-items: center;
}

.mysa-floating-nav .nav-link {
  color: #111827;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
}

.mysa-floating-nav .nav-link:hover {
  opacity: 0.8;
}

.mysa-floating-nav .nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mysa-floating-nav .nav-login-btn {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 24px;
  border-radius: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mysa-floating-nav .nav-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .mysa-floating-nav {
    width: 95%;
    padding: 0 10px 0 20px;
  }

  .mysa-floating-nav .nav-middle {
    display: none;
  }

  .mysa-floating-nav .nav-logo {
    font-size: 18px;
  }

  .mysa-floating-nav .nav-right {
    gap: 15px;
  }

  .mysa-floating-nav .nav-login-btn {
    padding: 8px 18px;
    font-size: 14px;
  }

  .mysa-floating-nav .nav-link {
    font-size: 14px;
  }
}

/* ---------- SOLUTIONS DROPDOWN ---------- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>.nav-link {
  cursor: pointer;
}

.nav-dropdown>.nav-link svg {
  transition: transform 0.25s ease;
  vertical-align: middle;
}

.nav-dropdown:hover>.nav-link svg {
  transform: rotate(180deg);
}

/* Invisible bridge to prevent hover gap */
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 260px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 6px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  color: #1e293b;
  text-decoration: none;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown-item:hover {
  background: #f3f4f6;
}