@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap");
.color-main {
  color: #2D5F4F;
}

.color-secondary {
  color: #FFD700;
}

.text-muted {
  color: rgba(45, 95, 79, 0.7) !important;
}

.badge.bg-cancelled, .badge.bg-expired {
  background-color: #FF5C5C;
}
.badge.bg-active {
  background-color: #1E88E5;
}
.badge.bg-pending {
  background-color: #FFC107;
  color: hsl(0, 0%, 5%);
}
.badge.bg-completed {
  background-color: #4ADE80;
}

html {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background-color: #F2EDE2 !important;
  color: #234a3e !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  margin: 0;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100%;
  position: relative;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overscroll-behavior: none;
}

*::-webkit-scrollbar {
  display: none;
}

* {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  margin-top: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: inherit;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: #2D5F4F;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  color: #234a3e;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.25rem;
  }
}

.section-description {
  color: rgba(35, 74, 62, 0.7);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section {
  padding: 4rem 0;
  position: relative;
  overflow: visible;
}
.section--dark {
  background-color: #F2EDE2;
}
.section--card {
  background-color: hsla(160.8, 35%, 16%, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.section--gradient {
  background: radial-gradient(circle at top center, rgba(45, 95, 79, 0.08), transparent 70%);
}
@media (max-width: 992px) {
  .section {
    padding: 3rem 1rem;
  }
}

.text-muted {
  color: rgba(45, 95, 79, 0.7) !important;
}

.text-muted-light {
  color: hsl(0, 0%, 80%) !important;
}

.text-primary {
  color: #2D5F4F !important;
}

.text-white {
  color: hsl(0, 0%, 95%) !important;
}

.disabled {
  pointer-events: none !important;
  opacity: 0.5;
}

.particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.particles-container .particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, currentColor 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px rgba(255, 255, 255, 0.5);
}

@keyframes propHeroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes propHeroFloatCenter {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -15px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes float-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0% {
    opacity: 0.6;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(0.98);
  }
}
@keyframes pulseRing {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes pulseMesh {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
  }
}
@keyframes modalSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes shinePass {
  0% {
    left: -100%;
  }
  20% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}
@keyframes slideArrow {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}
@keyframes borderPulse {
  0%, 100% {
    border-color: rgba(45, 95, 79, 0.3);
  }
  50% {
    border-color: rgba(45, 95, 79, 0.6);
  }
}
@keyframes badgePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 92, 92, 0.4);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(255, 92, 92, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 92, 92, 0);
    transform: scale(1);
  }
}
@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes floatIconSimple {
  0%, 100% {
    transform: rotate(-5deg) translateY(0);
  }
  50% {
    transform: rotate(-5deg) translateY(-8px);
  }
}
@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}
@keyframes particlePop {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0);
  }
  50% {
    opacity: 1;
    transform: translate(0, -10px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(0, -20px) scale(0);
  }
}
@keyframes fillProgress {
  to {
    stroke-dashoffset: var(--progress-offset, 0);
  }
}
@keyframes particleFloatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
    transform: translateY(80vh) scale(1);
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20vh) scale(0);
    opacity: 0;
  }
}
@keyframes slideDownFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomInFade {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes confetti-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -20px, 0) rotate(0deg);
  }
  15% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--confetti-horizontal, 40px), 160px, 0) rotate(var(--confetti-rotation, 120deg));
  }
}
@keyframes shimmerSlide {
  100% {
    transform: translateX(100%);
  }
}
@keyframes ticketFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes pulseGlowTranslate {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@keyframes scan-move {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@keyframes scaleInElastic {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes strokeDraw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes pointsBounce {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes giftBounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.05);
  }
}
@keyframes giftEntrance {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes giftExplode {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes bonusEntrance {
  0% {
    transform: scale(0.5) translateY(50px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
@keyframes raysRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(10%, 10%) scale(1.1);
  }
}
@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9) rotateX(20deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
  }
}
@keyframes flowToCard {
  0% {
    opacity: 0;
    transform: translate3d(var(--start-x), var(--start-y), 0) scale(0.5);
  }
  15% {
    opacity: 1;
    transform: translate3d(var(--mid-x), var(--mid-y), 50px) scale(1.5);
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--end-x), var(--end-y), 0) scale(0.3);
  }
}
@keyframes progressGrow {
  from {
    width: 0%;
  }
  to {
    width: 75%;
  }
}
@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}
@keyframes pulseGold {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}
@keyframes modalPop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes iconBounce {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes checkmarkDraw {
  from {
    stroke-dashoffset: 100;
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(1) {
  left: -1%;
  top: -10%;
  opacity: 0;
  background: #f2d74e;
  animation: confetti-fall-1 4s linear infinite;
  animation-delay: 0.7s;
}

@keyframes confetti-fall-1 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(8px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-10px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-4px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(16px) rotate(1045deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(2) {
  left: 6%;
  top: -10%;
  opacity: 0;
  background: #7B3BFF;
  animation: confetti-fall-2 4s linear infinite;
  animation-delay: 3.3s;
}

@keyframes confetti-fall-2 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-2px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(8px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(7px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(24px) rotate(837deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(3) {
  left: 4%;
  top: -10%;
  opacity: 0;
  background: #FFF;
  animation: confetti-fall-3 4s linear infinite;
  animation-delay: 3.7s;
}

@keyframes confetti-fall-3 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(0px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-12px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(3px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(18px) rotate(779deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(4) {
  left: 11%;
  top: -10%;
  opacity: 0;
  background: #95d5b2;
  animation: confetti-fall-4 4s linear infinite;
  animation-delay: 2.2s;
}

@keyframes confetti-fall-4 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(7px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(18px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-8px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-9px) rotate(677deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(5) {
  left: 13%;
  top: -10%;
  opacity: 0;
  background: #f2d74e;
  animation: confetti-fall-5 4s linear infinite;
  animation-delay: 2.1s;
}

@keyframes confetti-fall-5 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-8px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(6px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(5px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(4px) rotate(1030deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(6) {
  left: 15%;
  top: -10%;
  opacity: 0;
  background: #7B3BFF;
  animation: confetti-fall-6 4s linear infinite;
  animation-delay: 3.9s;
}

@keyframes confetti-fall-6 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(7px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(12px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(8px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-21px) rotate(738deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(7) {
  left: 12%;
  top: -10%;
  opacity: 0;
  background: #FFF;
  animation: confetti-fall-7 4s linear infinite;
  animation-delay: 1s;
}

@keyframes confetti-fall-7 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-2px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(10px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-6px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(15px) rotate(434deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(8) {
  left: 15%;
  top: -10%;
  opacity: 0;
  background: #95d5b2;
  animation: confetti-fall-8 4s linear infinite;
  animation-delay: 4s;
}

@keyframes confetti-fall-8 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(0px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(4px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(1px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-5px) rotate(650deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(9) {
  left: 23%;
  top: -10%;
  opacity: 0;
  background: #f2d74e;
  animation: confetti-fall-9 4s linear infinite;
  animation-delay: 1.5s;
}

@keyframes confetti-fall-9 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-6px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-16px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(5px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(15px) rotate(497deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(10) {
  left: 17%;
  top: -10%;
  opacity: 0;
  background: #7B3BFF;
  animation: confetti-fall-10 4s linear infinite;
  animation-delay: 4.4s;
}

@keyframes confetti-fall-10 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(2px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-5px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(3px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(1px) rotate(1045deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(11) {
  left: 19%;
  top: -10%;
  opacity: 0;
  background: #FFF;
  animation: confetti-fall-11 4s linear infinite;
  animation-delay: 1.4s;
}

@keyframes confetti-fall-11 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(2px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(18px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-6px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-8px) rotate(449deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(12) {
  left: 25%;
  top: -10%;
  opacity: 0;
  background: #95d5b2;
  animation: confetti-fall-12 4s linear infinite;
  animation-delay: 4.2s;
}

@keyframes confetti-fall-12 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-4px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-5px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(4px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(0px) rotate(990deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(13) {
  left: 23%;
  top: -10%;
  opacity: 0;
  background: #f2d74e;
  animation: confetti-fall-13 4s linear infinite;
  animation-delay: 3.7s;
}

@keyframes confetti-fall-13 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(6px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(20px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(0px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(20px) rotate(565deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(14) {
  left: 32%;
  top: -10%;
  opacity: 0;
  background: #7B3BFF;
  animation: confetti-fall-14 4s linear infinite;
  animation-delay: 1.6s;
}

@keyframes confetti-fall-14 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(7px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(13px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(6px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(15px) rotate(977deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(15) {
  left: 32%;
  top: -10%;
  opacity: 0;
  background: #FFF;
  animation: confetti-fall-15 4s linear infinite;
  animation-delay: 2.9s;
}

@keyframes confetti-fall-15 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(7px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-3px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(1px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(10px) rotate(1043deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(16) {
  left: 36%;
  top: -10%;
  opacity: 0;
  background: #95d5b2;
  animation: confetti-fall-16 4s linear infinite;
  animation-delay: 3.7s;
}

@keyframes confetti-fall-16 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(8px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-10px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-1px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-24px) rotate(1032deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(17) {
  left: 36%;
  top: -10%;
  opacity: 0;
  background: #f2d74e;
  animation: confetti-fall-17 4s linear infinite;
  animation-delay: 4.9s;
}

@keyframes confetti-fall-17 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(6px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(15px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-6px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(1px) rotate(371deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(18) {
  left: 36%;
  top: -10%;
  opacity: 0;
  background: #7B3BFF;
  animation: confetti-fall-18 4s linear infinite;
  animation-delay: 0.3s;
}

@keyframes confetti-fall-18 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(9px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-9px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-3px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-5px) rotate(411deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(19) {
  left: 34%;
  top: -10%;
  opacity: 0;
  background: #FFF;
  animation: confetti-fall-19 4s linear infinite;
  animation-delay: 4.1s;
}

@keyframes confetti-fall-19 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-8px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(11px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-8px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(19px) rotate(1053deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(20) {
  left: 44%;
  top: -10%;
  opacity: 0;
  background: #95d5b2;
  animation: confetti-fall-20 4s linear infinite;
  animation-delay: 3s;
}

@keyframes confetti-fall-20 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-1px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(8px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(3px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(18px) rotate(589deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(21) {
  left: 40%;
  top: -10%;
  opacity: 0;
  background: #f2d74e;
  animation: confetti-fall-21 4s linear infinite;
  animation-delay: 2s;
}

@keyframes confetti-fall-21 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-7px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-13px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-5px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(2px) rotate(772deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(22) {
  left: 41%;
  top: -10%;
  opacity: 0;
  background: #7B3BFF;
  animation: confetti-fall-22 4s linear infinite;
  animation-delay: 4.5s;
}

@keyframes confetti-fall-22 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-5px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(12px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(8px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(29px) rotate(632deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(23) {
  left: 48%;
  top: -10%;
  opacity: 0;
  background: #FFF;
  animation: confetti-fall-23 4s linear infinite;
  animation-delay: 4.8s;
}

@keyframes confetti-fall-23 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-7px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-3px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-3px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(4px) rotate(676deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(24) {
  left: 51%;
  top: -10%;
  opacity: 0;
  background: #95d5b2;
  animation: confetti-fall-24 4s linear infinite;
  animation-delay: 0.2s;
}

@keyframes confetti-fall-24 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-2px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-9px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-3px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(8px) rotate(557deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(25) {
  left: 54%;
  top: -10%;
  opacity: 0;
  background: #f2d74e;
  animation: confetti-fall-25 4s linear infinite;
  animation-delay: 4.9s;
}

@keyframes confetti-fall-25 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-9px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(1px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(10px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(29px) rotate(911deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(26) {
  left: 57%;
  top: -10%;
  opacity: 0;
  background: #7B3BFF;
  animation: confetti-fall-26 4s linear infinite;
  animation-delay: 0.1s;
}

@keyframes confetti-fall-26 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(1px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(20px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(2px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-21px) rotate(1045deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(27) {
  left: 52%;
  top: -10%;
  opacity: 0;
  background: #FFF;
  animation: confetti-fall-27 4s linear infinite;
  animation-delay: 0.1s;
}

@keyframes confetti-fall-27 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(0px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(4px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(7px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-17px) rotate(966deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(28) {
  left: 59%;
  top: -10%;
  opacity: 0;
  background: #95d5b2;
  animation: confetti-fall-28 4s linear infinite;
  animation-delay: 4.3s;
}

@keyframes confetti-fall-28 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(0px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-3px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-9px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-21px) rotate(376deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(29) {
  left: 59%;
  top: -10%;
  opacity: 0;
  background: #f2d74e;
  animation: confetti-fall-29 4s linear infinite;
  animation-delay: 0.8s;
}

@keyframes confetti-fall-29 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-8px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(9px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-5px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(24px) rotate(713deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(30) {
  left: 64%;
  top: -10%;
  opacity: 0;
  background: #7B3BFF;
  animation: confetti-fall-30 4s linear infinite;
  animation-delay: 3.6s;
}

@keyframes confetti-fall-30 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(9px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(0px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-9px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(23px) rotate(425deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(31) {
  left: 67%;
  top: -10%;
  opacity: 0;
  background: #FFF;
  animation: confetti-fall-31 4s linear infinite;
  animation-delay: 2.5s;
}

@keyframes confetti-fall-31 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(0px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(11px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-7px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(9px) rotate(687deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(32) {
  left: 61%;
  top: -10%;
  opacity: 0;
  background: #95d5b2;
  animation: confetti-fall-32 4s linear infinite;
  animation-delay: 3.3s;
}

@keyframes confetti-fall-32 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(8px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(6px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-1px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(7px) rotate(725deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(33) {
  left: 62%;
  top: -10%;
  opacity: 0;
  background: #f2d74e;
  animation: confetti-fall-33 4s linear infinite;
  animation-delay: 1.6s;
}

@keyframes confetti-fall-33 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(10px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-2px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(0px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(6px) rotate(470deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(34) {
  left: 67%;
  top: -10%;
  opacity: 0;
  background: #7B3BFF;
  animation: confetti-fall-34 4s linear infinite;
  animation-delay: 0.6s;
}

@keyframes confetti-fall-34 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-7px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(13px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-3px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-27px) rotate(1053deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(35) {
  left: 66%;
  top: -10%;
  opacity: 0;
  background: #FFF;
  animation: confetti-fall-35 4s linear infinite;
  animation-delay: 3.9s;
}

@keyframes confetti-fall-35 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-6px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-14px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-9px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(15px) rotate(926deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(36) {
  left: 69%;
  top: -10%;
  opacity: 0;
  background: #95d5b2;
  animation: confetti-fall-36 4s linear infinite;
  animation-delay: 2.8s;
}

@keyframes confetti-fall-36 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(4px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(16px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-1px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-16px) rotate(431deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(37) {
  left: 71%;
  top: -10%;
  opacity: 0;
  background: #f2d74e;
  animation: confetti-fall-37 4s linear infinite;
  animation-delay: 0.2s;
}

@keyframes confetti-fall-37 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-2px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-19px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(6px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-26px) rotate(427deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(38) {
  left: 75%;
  top: -10%;
  opacity: 0;
  background: #7B3BFF;
  animation: confetti-fall-38 4s linear infinite;
  animation-delay: 2.2s;
}

@keyframes confetti-fall-38 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-8px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-7px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(9px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-21px) rotate(422deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(39) {
  left: 79%;
  top: -10%;
  opacity: 0;
  background: #FFF;
  animation: confetti-fall-39 4s linear infinite;
  animation-delay: 1.3s;
}

@keyframes confetti-fall-39 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(7px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(19px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-5px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-21px) rotate(676deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(40) {
  left: 83%;
  top: -10%;
  opacity: 0;
  background: #95d5b2;
  animation: confetti-fall-40 4s linear infinite;
  animation-delay: 3.5s;
}

@keyframes confetti-fall-40 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(8px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-6px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(6px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-5px) rotate(611deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(41) {
  left: 81%;
  top: -10%;
  opacity: 0;
  background: #f2d74e;
  animation: confetti-fall-41 4s linear infinite;
  animation-delay: 3.5s;
}

@keyframes confetti-fall-41 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-4px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(10px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(2px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-20px) rotate(966deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(42) {
  left: 86%;
  top: -10%;
  opacity: 0;
  background: #7B3BFF;
  animation: confetti-fall-42 4s linear infinite;
  animation-delay: 2.7s;
}

@keyframes confetti-fall-42 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(10px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-17px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(3px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-2px) rotate(1004deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(43) {
  left: 82%;
  top: -10%;
  opacity: 0;
  background: #FFF;
  animation: confetti-fall-43 4s linear infinite;
  animation-delay: 0.9s;
}

@keyframes confetti-fall-43 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(3px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-4px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-5px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(13px) rotate(883deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(44) {
  left: 84%;
  top: -10%;
  opacity: 0;
  background: #95d5b2;
  animation: confetti-fall-44 4s linear infinite;
  animation-delay: 1.8s;
}

@keyframes confetti-fall-44 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(4px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(16px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(6px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-11px) rotate(854deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(45) {
  left: 93%;
  top: -10%;
  opacity: 0;
  background: #f2d74e;
  animation: confetti-fall-45 4s linear infinite;
  animation-delay: 1.6s;
}

@keyframes confetti-fall-45 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-4px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-19px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(2px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(16px) rotate(579deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(46) {
  left: 97%;
  top: -10%;
  opacity: 0;
  background: #7B3BFF;
  animation: confetti-fall-46 4s linear infinite;
  animation-delay: 1.5s;
}

@keyframes confetti-fall-46 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-1px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(10px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-9px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-7px) rotate(909deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(47) {
  left: 92%;
  top: -10%;
  opacity: 0;
  background: #FFF;
  animation: confetti-fall-47 4s linear infinite;
  animation-delay: 1s;
}

@keyframes confetti-fall-47 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-3px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-12px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(6px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(24px) rotate(463deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(48) {
  left: 97%;
  top: -10%;
  opacity: 0;
  background: #95d5b2;
  animation: confetti-fall-48 4s linear infinite;
  animation-delay: 2.3s;
}

@keyframes confetti-fall-48 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(10px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-17px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(6px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(13px) rotate(505deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(49) {
  left: 102%;
  top: -10%;
  opacity: 0;
  background: #f2d74e;
  animation: confetti-fall-49 4s linear infinite;
  animation-delay: 0.4s;
}

@keyframes confetti-fall-49 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(7px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(15px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(-2px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(-22px) rotate(842deg);
    opacity: 0;
  }
}
.hero-section .hero-success-overlay .confetti:nth-child(50) {
  left: -3%;
  top: -10%;
  opacity: 0;
  background: #7B3BFF;
  animation: confetti-fall-50 4s linear infinite;
  animation-delay: 0.4s;
}

@keyframes confetti-fall-50 {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(20vh) translateX(-6px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-2px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(80vh) translateX(9px) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) translateX(20px) rotate(992deg);
    opacity: 0;
  }
}
@keyframes pulseRipple {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes fill-bar {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes countUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes chartGrow {
  to {
    transform: scaleY(1);
  }
}
@keyframes shakeSubtle {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
@keyframes pulseSimple {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@keyframes floatRotate {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
@keyframes scanMove {
  0%, 100% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    top: 100%;
  }
  90% {
    opacity: 1;
  }
}
@keyframes floatCoin {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px) rotate(10deg);
  }
}
@keyframes shakeBox {
  0%, 100% {
    transform: rotate(0);
  }
  25%, 75% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}
@keyframes sparklePop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes floatDiagonal {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.mobile-search-container {
  display: none;
  position: fixed;
  top: 82px;
  left: 0;
  width: 100%;
  z-index: 998;
  background: hsla(160.8, 35%, 10%, 0.75);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.3s ease forwards;
}
@media (min-width: 993px) {
  .mobile-search-container {
    display: none !important;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(3rem);
  -webkit-backdrop-filter: blur(3rem);
  transition: all 0.3s ease;
  animation: fadeInDown 0.6s ease both;
}
@media (max-width: 992px) {
  .navbar {
    padding: 1rem;
  }
}
.navbar .mobile-search {
  display: none;
}
@media (max-width: 992px) {
  .navbar .mobile-search {
    display: block;
  }
}
.navbar .navbar-logo {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1rem;
}
@media (max-width: 992px) {
  .navbar .navbar-logo {
    display: block;
  }
}
.navbar .navbar-logo img {
  height: 50px;
}
.navbar .navbar-logo .navbar-location {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  cursor: pointer;
}
.navbar .navbar-logo .navbar-location i {
  color: #2D5F4F;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.5rem;
  border-radius: 50%;
}
.navbar .navbar-search {
  flex: 1;
}
@media (max-width: 992px) {
  .navbar .navbar-search {
    display: none;
  }
}
.navbar .navbar-search .input-container {
  position: relative;
  width: 100%;
  max-width: 320px;
}
.navbar .navbar-search .input-container .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #F2EDE2 !important;
  color: #234a3e !important;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.navbar .navbar-search .input-container .input-wrapper:focus-within {
  box-shadow: 0 0 1rem #2D5F4F;
}
.navbar .navbar-search .input-container .input-icon {
  position: absolute;
  left: 20px;
  z-index: 2;
  font-size: 18px;
  transition: color 0.3s ease;
}
.navbar .navbar-search .input-container .styled-input {
  width: 100%;
  padding: 0.5rem 0.5rem 0.5rem 3rem;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
  border-radius: 25px;
}
.navbar .navbar-search .input-container .styled-input::placeholder {
  color: rgba(45, 95, 79, 0.7);
  transition: color 0.3s ease;
}
.navbar .navbar-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.navbar .navbar-actions button {
  color: #2D5F4F !important;
  padding: 0.5rem 1.25rem;
  position: relative;
}
@media (max-width: 992px) {
  .navbar .navbar-actions button {
    padding: 0.25rem 0.5rem;
  }
}
@media (max-width: 992px) {
  .navbar .navbar-actions #registerButton {
    display: none;
  }
}
.navbar .navbar-actions .notification-badge {
  position: absolute;
  top: 0;
  right: 0.25rem;
  background: #2D5F4F;
  color: #ffffff;
  font-size: 12px;
  height: 18px;
  width: 18px;
  border-radius: 50%;
}
.navbar .navbar-actions .dropdown .dropdown-toggle {
  color: #234a3e;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 6px 10px;
  transition: all 0.3s ease;
}
.navbar .navbar-actions .dropdown .dropdown-toggle:hover, .navbar .navbar-actions .dropdown .dropdown-toggle:focus {
  background: rgba(255, 255, 255, 0.5);
  border-color: #2D5F4F;
}
.navbar .navbar-actions .dropdown .dropdown-toggle::after {
  margin-left: 0.5em;
  vertical-align: 0.1em;
}
.navbar .navbar-actions .dropdown .dropdown-menu {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  min-width: 160px;
  margin-top: 0.5rem;
}
.navbar .navbar-actions .dropdown .dropdown-menu .dropdown-item {
  color: #234a3e;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}
.navbar .navbar-actions .dropdown .dropdown-menu .dropdown-item:hover, .navbar .navbar-actions .dropdown .dropdown-menu .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.5);
  color: #2D5F4F;
}
.navbar .navbar-actions .dropdown .dropdown-menu .dropdown-item .flag-icon {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Custom toggle button styling */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile menu styling */
@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
  }
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    margin: 0;
    text-align: center;
  }
}
.logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.footer {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
  background: hsla(160.8, 35%, 10%, 0.75);
  color: white;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 95, 79, 0.5), transparent);
}
.footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .footer .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
}
.footer .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 576px) {
  .footer .footer-brand {
    align-items: center;
  }
}
.footer .footer-brand .logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}
.footer .footer-brand .mission {
  color: hsl(0, 0%, 80%);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}
.footer .footer-brand .social-links {
  display: flex;
  gap: 1rem;
}
.footer .footer-brand .social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(45, 95, 79, 0.1);
  color: rgba(45, 95, 79, 0.7);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.footer .footer-brand .social-links a:hover {
  background: rgba(45, 95, 79, 0.1);
  color: #2D5F4F;
  border-color: rgba(45, 95, 79, 0.2);
  transform: translateY(-2px);
}
.footer .footer-nav h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.footer .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-nav ul li {
  margin-bottom: 0.75rem;
}
.footer .footer-nav ul li a {
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.footer .footer-nav ul li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.footer .footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .footer .footer-bottom {
    flex-direction: column-reverse;
    text-align: center;
  }
}
.footer .footer-bottom .copyright {
  color: hsl(0, 0%, 80%);
  font-size: 0.875rem;
}
.footer .footer-bottom .language-selector {
  position: relative;
}
.footer .footer-bottom .language-selector .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(242, 237, 226, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  color: #234a3e;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.footer .footer-bottom .language-selector .dropdown-toggle:hover, .footer .footer-bottom .language-selector .dropdown-toggle[aria-expanded=true] {
  background: rgba(242, 237, 226, 0.8);
  border-color: #2D5F4F;
}
.footer .footer-bottom .language-selector .dropdown-toggle::after {
  margin-left: 0.5rem;
}
.footer .footer-bottom .language-selector .dropdown-menu {
  background: hsla(160.8, 35%, 16%, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 180px;
}
.footer .footer-bottom .language-selector .dropdown-menu li {
  margin-bottom: 2px;
}
.footer .footer-bottom .language-selector .dropdown-menu li:last-child {
  margin-bottom: 0;
}
.footer .footer-bottom .language-selector .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  color: hsl(0, 0%, 80%);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.footer .footer-bottom .language-selector .dropdown-menu .dropdown-item:hover, .footer .footer-bottom .language-selector .dropdown-menu .dropdown-item:focus {
  background: rgba(45, 95, 79, 0.1);
}
.footer .footer-bottom .language-selector .dropdown-menu .dropdown-item .flag-icon {
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.account-offcanvas__close {
  display: flex;
  justify-content: flex-end;
}

.account-offcanvas__close-btn {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #234a3e !important;
  border: none;
  border-radius: 999px;
  height: 40px;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.account-offcanvas__close-btn:hover, .account-offcanvas__close-btn:focus-visible {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  outline: none;
}

.account-offcanvas {
  background-color: #F2EDE2 !important;
  color: #234a3e !important;
  padding: 1.5rem 1.75rem 2rem;
  width: min(360px, 100%);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}
.account-offcanvas .account-offcanvas__profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.45);
  background-color: rgba(45, 95, 79, 0.75) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.account-offcanvas .account-offcanvas__avatar {
  height: 56px;
  width: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2D5F4F, #234a3e);
  color: #F7F6F2;
  font-size: 1.4rem;
}
.account-offcanvas .account-offcanvas__identity {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.account-offcanvas .account-offcanvas__email {
  font-weight: 600;
  font-size: 1rem;
  word-break: break-word;
}
.account-offcanvas .account-offcanvas__member-since {
  font-size: 0.85rem;
}
.account-offcanvas .account-offcanvas__body {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.account-offcanvas .account-offcanvas__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.account-offcanvas .account-offcanvas__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  background-color: rgba(45, 95, 79, 0.75) !important;
  color: #ffffff !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.account-offcanvas .account-offcanvas__link:hover, .account-offcanvas .account-offcanvas__link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(45, 95, 79, 0.7);
  outline: none;
}
.account-offcanvas .account-offcanvas__icon {
  height: 46px;
  width: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 95, 79, 0.2);
  color: #F7F6F2;
  font-size: 1.2rem;
}
.account-offcanvas .account-offcanvas__link-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.account-offcanvas .account-offcanvas__label {
  font-size: 1rem;
  font-weight: 600;
}
.account-offcanvas .account-offcanvas__description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.account-offcanvas .account-offcanvas__arrow {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  transition: transform 0.25s ease;
}
.account-offcanvas .account-offcanvas__link:hover .account-offcanvas__arrow,
.account-offcanvas .account-offcanvas__link:focus-visible .account-offcanvas__arrow {
  transform: translateX(4px);
}
.account-offcanvas .account-offcanvas__link--logout {
  background-color: #ff5c5c !important;
  color: rgba(45, 95, 79, 0.7) !important;
  border-color: rgba(255, 92, 92, 0.25);
  color: #ffffff !important;
}
.account-offcanvas .account-offcanvas__link--logout:hover, .account-offcanvas .account-offcanvas__link--logout:focus-visible {
  border-color: rgba(255, 92, 92, 0.6);
  box-shadow: 0 20px 40px rgba(255, 92, 92, 0.25);
}
.account-offcanvas .account-offcanvas__link--logout .account-offcanvas__icon {
  color: #ffffff !important;
}
.account-offcanvas .account-offcanvas__footer {
  font-size: 0.9rem;
}
.account-offcanvas .account-offcanvas__footer a {
  color: #2D5F4F;
  font-weight: 600;
  text-decoration: underline;
}
.account-offcanvas .account-offcanvas__footer a:hover, .account-offcanvas .account-offcanvas__footer a:focus-visible {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .account-offcanvas {
    padding: 1.25rem 1.25rem 1.75rem;
  }
  .account-offcanvas .account-offcanvas__profile,
  .account-offcanvas .account-offcanvas__link {
    padding: 1rem;
  }
}

.offcanvas-top {
  background: #F2EDE2 !important;
  padding: 1.5rem 1.75rem 2rem;
  background-color: #F2EDE2 !important;
  color: #234a3e !important;
  width: 400px !important;
  right: 0 !important;
  left: unset !important;
  height: 100vh !important;
}
.offcanvas-top .offcanvas-body {
  padding: 0;
}
@media (max-width: 768px) {
  .offcanvas-top {
    width: 100% !important;
  }
}
.offcanvas-top .offcanvas-notifications {
  background-color: #F2EDE2 !important;
  color: #234a3e !important;
}
.offcanvas-top .offcanvas-notifications .notification-box {
  max-height: 100%;
  overflow-y: auto;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-header {
  background-color: #F2EDE2 !important;
  color: #234a3e !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-header .clear-all {
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-header .clear-all:hover {
  text-decoration: underline;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
@keyframes pulseNotificationDot {
  0% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(255, 215, 0, 0);
  }
  100% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  /* --- SEEN (READ) STATE: Base styling --- */
  background: rgba(255, 255, 255, 0.6);
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(45, 95, 79, 0.05);
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: fadeInUp 0.5s ease both;
  overflow: hidden;
  opacity: 0.75;
  filter: grayscale(15%);
  /* --- NOT SEEN (UNREAD) STATE: Overrides --- */
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(45, 95, 79, 0.05);
  border-color: rgba(45, 95, 79, 0.1);
}
@media (max-width: 992px) {
  .offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item {
    width: 100%;
  }
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  transition: background 0.3s ease;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item.unread {
  opacity: 1;
  filter: grayscale(0%);
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.2);
  /* Unread text high-contrast */
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item.unread::before {
  background: #FFD700;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item.unread:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item.unread .notification-meta .business-name {
  color: #ccac00;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item.unread .notification-meta .business-name i {
  color: #FFD700;
  opacity: 1;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item.unread .content .message-body .message {
  color: hsl(0, 0%, 5%);
  font-weight: 600;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item.unread .content .icon-wrapper {
  background: rgba(255, 215, 0, 0.12);
  color: #ccac00;
  /* Pulsing Dot Indicator on Icon */
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item.unread .content .icon-wrapper::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #FFD700;
  box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
  animation: pulseNotificationDot 2s infinite cubic-bezier(0.66, 0, 0, 1);
  border: 2px solid #ffffff;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item .notification-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item .notification-meta .business-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(45, 95, 79, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item .notification-meta .business-name i {
  color: inherit;
  opacity: 0.6;
  font-size: 0.85rem;
  transition: opacity 0.3s ease;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item .notification-meta .time {
  font-size: 0.75rem;
  color: rgba(45, 95, 79, 0.6);
  margin-right: 0.25rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item .content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item .content .icon-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(45, 95, 79, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(45, 95, 79, 0.4);
  transition: all 0.3s ease;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item .content .icon-wrapper i {
  font-size: 1.1rem;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item .content .message-body {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 42px;
}
.offcanvas-top .offcanvas-notifications .notification-box .notification-list .notification-item .content .message-body .message {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(45, 95, 79, 0.9);
  font-weight: 400;
  transition: color 0.3s ease;
}

.notifications-container {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1050;
  align-items: flex-end;
  pointer-events: none;
}
@media (max-width: 768px) {
  .notifications-container {
    left: 0;
    right: 0;
    top: 1rem;
    padding: 0 1rem;
  }
}

.notification {
  --notification-duration: 8000ms;
  --notification-accent-rgb: 96, 122, 255;
  --notification-accent: rgb(var(--notification-accent-rgb));
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  transform: translate3d(120%, 0, 0);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
  pointer-events: auto;
  min-width: 260px;
  max-width: min(340px, 82vw);
}
@media (max-width: 768px) {
  .notification {
    width: 100%;
    min-width: unset;
    transform: translate3d(0, -30px, 0);
  }
}
.notification.show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.notification.leaving {
  opacity: 0;
  transform: translate3d(20%, 0, 0);
}
.notification.notification-success {
  --notification-accent-rgb: 42, 228, 181;
  border: 1px solid rgba(var(--notification-accent-rgb), 0.25);
  box-shadow: 0 18px 36px rgba(var(--notification-accent-rgb), 0.35);
}
.notification.notification-error {
  --notification-accent-rgb: 255, 123, 123;
  border: 1px solid rgba(var(--notification-accent-rgb), 0.25);
  box-shadow: 0 18px 36px rgba(var(--notification-accent-rgb), 0.35);
}
.notification.notification-warning {
  --notification-accent-rgb: 255, 209, 102;
  border: 1px solid rgba(var(--notification-accent-rgb), 0.25);
  box-shadow: 0 18px 36px rgba(var(--notification-accent-rgb), 0.35);
}
.notification .notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(var(--notification-accent-rgb), 0.12);
  box-shadow: inset 0 0 0 1px rgba(var(--notification-accent-rgb), 0.25);
  color: var(--notification-accent);
  align-self: center;
}
.notification .notification-icon i {
  font-size: 1.05rem;
}
.notification .notification-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-self: center;
  justify-content: center;
}
.notification .notification-message {
  font-size: 0.92rem;
  line-height: 1.4;
  margin: 0;
  color: hsl(0, 0%, 80%);
}
.notification .notification-close {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease, transform 0.2s ease;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
}
.notification .notification-close:hover, .notification .notification-close:focus {
  color: rgba(255, 255, 255, 0.95);
  transform: scale(1.1);
}

.notification-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1049;
}

.confetti-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.confetto {
  position: absolute;
  top: 5%;
  width: 8px;
  height: 14px;
  border-radius: 2px;
  opacity: 0;
  transform: translate3d(0, 0, 0) rotate(0deg);
  animation: confetti-fall 1.15s ease-out forwards;
}

.profile-speed-dial-container {
  position: fixed;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  left: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  z-index: 999;
}
@media (max-width: 768px) {
  .profile-speed-dial-container {
    bottom: calc(24px + env(safe-area-inset-bottom));
    left: 12px;
  }
}
.profile-speed-dial-container .main-fab {
  width: 64px;
  height: 64px;
  border-radius: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  padding: 0;
}
.profile-speed-dial-container .main-fab.pill-fab {
  width: auto;
  height: 56px;
  border-radius: 100vh;
  padding: 0 24px 0 20px;
  gap: 12px;
}
.profile-speed-dial-container .main-fab.pill-fab .fab-content {
  position: relative;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-speed-dial-container .main-fab.pill-fab .fab-content .rank-icon {
  font-size: 1.2rem;
}
.profile-speed-dial-container .main-fab.pill-fab .fab-content .fab-label {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}
.profile-speed-dial-container .main-fab:hover {
  transform: scale(1.05);
  background: #2D5F4F;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.profile-speed-dial-container .main-fab:active {
  transform: scale(0.95);
}
.profile-speed-dial-container .main-fab .fab-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 1;
  transform: rotate(0deg);
}
.profile-speed-dial-container .main-fab .fab-content .progress-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  left: 0;
}
.profile-speed-dial-container .main-fab .fab-content .progress-ring .ring-bg {
  fill: none;
  stroke-width: 2.5;
  stroke: rgba(255, 255, 255, 0.1);
}
.profile-speed-dial-container .main-fab .fab-content .progress-ring .ring-fill {
  fill: none;
  transition: stroke-dasharray 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  stroke: #FFD700;
  stroke-width: 3.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4));
}
.profile-speed-dial-container .main-fab .fab-content .rank-icon {
  position: relative;
  z-index: 2;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.profile-speed-dial-container .main-fab .fab-content .rank-icon span {
  display: block;
  line-height: 1;
}
.profile-speed-dial-container .main-fab .fab-content .blocked-state {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
}
.profile-speed-dial-container .main-fab .close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-size: 1.1rem;
  color: #FFD700;
  opacity: 0;
  transition: all 0.3s ease;
}
.profile-speed-dial-container .speed-dial-menu {
  display: none;
  flex-direction: column-reverse;
  gap: 8px;
  pointer-events: none;
  padding: 12px;
  background: hsla(160.8, 35%, 16%, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  transform: translateY(10px) scale(0.95);
  transform-origin: bottom left;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.profile-speed-dial-container .speed-dial-menu .menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  width: 100%;
  border-radius: 0.75rem;
  transition: background 0.2s ease;
}
.profile-speed-dial-container .speed-dial-menu .menu-item:hover, .profile-speed-dial-container .speed-dial-menu .menu-item:focus {
  background: rgba(255, 255, 255, 0.08);
}
.profile-speed-dial-container .speed-dial-menu .menu-item .icon-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.profile-speed-dial-container .speed-dial-menu .menu-item .label {
  background: transparent;
  padding: 0;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.9;
}
.profile-speed-dial-container.active {
  z-index: 1060;
}
.profile-speed-dial-container.active .main-fab {
  background: #FFD700;
  box-shadow: 0 4px 25px rgba(255, 215, 0, 0.4);
}
.profile-speed-dial-container.active .main-fab .fab-content {
  opacity: 0;
  transform: rotate(90deg);
}
.profile-speed-dial-container.active .main-fab .close-icon {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
  color: #000;
}
.profile-speed-dial-container.active .speed-dial-menu {
  pointer-events: auto;
  display: flex;
  transform: translateY(0) scale(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  gap: 0.5rem;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary {
  box-shadow: 0 4px 12px rgba(var(--brand-main-rgb, 45, 95, 79), 0.3);
  background-color: var(--brand-main, #2D5F4F);
  color: var(--brand-text-color, #ffffff);
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary:focus-within {
  background-color: color-mix(in srgb, var(--brand-main, #2D5F4F) 90%, black) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--brand-main-rgb, 45, 95, 79), 0.4);
  color: var(--brand-text-color, #ffffff);
}
.btn-primary.disabled, .btn-primary:disabled {
  background-color: var(--brand-main, #2D5F4F) !important;
  color: var(--brand-text-color, #ffffff) !important;
  opacity: 0.5;
  cursor: not-allowed !important;
}
.btn-secondary {
  background-color: #FFD700 !important;
  color: #234a3e !important;
}
.btn-secondary:hover {
  background-color: #e6c200 !important;
  color: #234a3e !important;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(45, 95, 79, 0.5);
  color: hsl(0, 0%, 80%);
}
.btn-outline:hover {
  border-color: #234a3e;
  background: #F8F5EE;
  color: #234a3e;
  transform: translateY(-2px);
}
.btn-outline-dark-txt {
  background: transparent;
  border: 1px solid rgba(45, 95, 79, 0.5);
  color: #234a3e;
}
.btn-outline-dark-txt:hover {
  border-color: #234a3e;
  background: #F8F5EE;
  color: #234a3e;
  transform: translateY(-2px);
}
.btn-action {
  flex: 1 1 auto;
  background-color: rgba(255, 255, 255, 0.05); /* Was @include theme-bg */
  border-radius: 2rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
  text-decoration: none;
  border: 1px solid var(--brand-main, #2D5F4F);
  color: var(--text-color, #234a3e); /* Inherit or use default */
}
.btn-action.icon-only {
  flex: 0 0 auto;
  min-width: unset;
  width: 46px;
  justify-content: center;
}
.btn-action:hover, .btn-action:focus {
  background-color: var(--brand-main, #2D5F4F);
  color: var(--brand-text-color, #ffffff);
}
.btn-action:hover .fas, .btn-action:focus .fas {
  color: var(--brand-text-color, #ffffff);
}
.btn-action .fas {
  color: rgba(45, 95, 79, 0.7);
}
.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: hsl(0, 0%, 95%);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-5px);
}
.btn-glow {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(45, 95, 79, 0.3);
  transition: all 0.3s ease;
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(45, 95, 79, 0.5);
}
.btn-transparent {
  background: transparent;
  color: hsl(0, 0%, 95%);
}
.btn-transparent:hover {
  background: transparent;
  transform: translateY(-3px);
}
.btn.coming-soon {
  cursor: not-allowed;
}
.btn-danger {
  background: #FF5C5C;
  color: white;
}
.btn-danger:hover {
  background: #ff4343;
  transform: translateY(-3px);
}
.btn-google {
  background-color: #DB4437;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn-google:hover {
  background-color: #d33426;
  color: #ffffff;
}
.btn-google i {
  margin-right: 0.5rem;
}
.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
.btn-pill {
  border-radius: 50px;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  border-radius: 12px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background-color 0.15s ease;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background-color: #F8F5EE !important;
  color: #234a3e !important;
}
.form-control::placeholder {
  color: rgba(45, 95, 79, 0.7);
  opacity: 0.7;
}
.form-control:focus, .form-control:-webkit-autofill {
  background-color: rgba(255, 255, 255, 0.3) !important;
  color: #234a3e !important;
  border-color: #2D5F4F;
  outline: 0;
}
.form-control:disabled, .form-control[readonly] {
  background-color: rgba(255, 255, 255, 0.3) !important;
  color: #234a3e !important;
  opacity: 0.6;
  cursor: not-allowed;
}
.form-control.not-valid {
  border-color: #FF5C5C;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linecap='round' d='M5.8 3.6h.4L6 6.5zM6 8.2af.6.6 0 110-1.2.6.6 0 010 1.2z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control.not-valid:focus {
  border-color: #FF5C5C;
  box-shadow: 0 0 0 4px rgba(255, 92, 92, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

.form-check {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.form-check .form-check-input {
  float: none;
  margin-left: 0;
  margin-right: 1rem;
  flex-shrink: 0;
  margin-top: 0;
}
.form-check .form-check-label {
  margin-bottom: 0;
  flex-grow: 1;
  cursor: pointer;
  font-size: 0.95rem;
  color: #234a3e;
  font-weight: 500;
}

.form-check-input {
  width: 1.25em;
  height: 1.25em;
  margin-top: 0;
  vertical-align: top;
  background-color: rgba(255, 255, 255, 0.03);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #2D5F4F;
  appearance: none;
  print-color-adjust: exact;
  transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;
}
.form-check-input[type=checkbox] {
  border-radius: 4px;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:checked {
  background-color: #2D5F4F;
  border-color: #2D5F4F;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input:focus {
  border-color: #2D5F4F;
  outline: 0;
  box-shadow: 0 0 0 4px rgba(45, 95, 79, 0.15);
}
.form-check-input.not-valid {
  border-color: #FF5C5C;
}

.form-check-label {
  color: #234a3e;
  cursor: pointer;
}

.form-switch {
  padding-left: 0;
}
.form-switch .form-check-input {
  width: 2.5em;
  margin-left: 0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%239ca3af'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%239ca3af'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group .input-group-text {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(45, 95, 79, 0.7);
  text-align: center;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
}
.input-group .input-group-text i {
  font-size: 1.1rem;
}
.input-group:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group:not(.has-validation) > .input-group-text:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
}
.input-group:not(.has-validation) > .input-group-text:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
}
.input-group:not(.has-validation) > .form-control:not(:first-child),
.input-group:not(.has-validation) > .custom-select:not(:first-child),
.input-group:not(.has-validation) > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #FF5C5C;
}

.is-invalid ~ .invalid-feedback {
  display: block;
}

.error-message {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 92, 92, 0.2);
  background-color: rgba(255, 92, 92, 0.1) !important;
  color: rgba(45, 95, 79, 0.7) !important;
  color: #FF5C5C;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
.error-message::before {
  content: "!";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: #ff5c5c !important;
  color: rgba(45, 95, 79, 0.7) !important;
  border-radius: 50%;
  font-weight: bold;
  font-size: 12px;
  flex-shrink: 0;
}

.auth-form {
  width: 100%;
  max-width: 400px;
  padding: 2.5rem;
  border-radius: 24px;
  animation: fadeInUp 0.9s ease;
  margin: 0 auto;
}
.auth-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  display: flex;
}
.auth-form .btn-google {
  width: 100%;
  justify-content: center;
  margin-top: 0.75rem;
}
.auth-form .form-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}
.auth-form .form-footer a {
  color: #2D5F4F;
  font-weight: 600;
}
.auth-form .form-footer a:hover {
  color: #234a3e;
  text-decoration: underline;
}
.auth-form .terms-group {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5rem;
}
.auth-form .terms-group .form-check {
  height: 1.25rem;
  width: 1.25rem;
}
.modal-backdrop {
  background-color: rgba(45, 95, 79, 0.5) !important;
  backdrop-filter: blur(4px);
}

.modern-modal {
  background-color: #F2EDE2 !important;
  color: #234a3e !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  overflow: hidden;
  animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: center bottom;
}
.modern-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.modern-modal .modal-header .modal-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: #234a3e;
  letter-spacing: -0.02em;
  margin: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-right: 2rem;
}
.modern-modal .modal-header .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent !important;
  border: none;
  opacity: 1;
  transition: all 0.2s ease;
  box-shadow: none;
  filter: none !important;
  color: #2D5F4F;
}
.modern-modal .modal-header .btn-close::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.25rem;
  color: #234a3e;
  transition: color 0.2s ease;
}
.modern-modal .modal-header .btn-close:hover {
  background-color: rgba(45, 95, 79, 0.1);
  transform: rotate(90deg);
}
.modern-modal .modal-header .btn-close:focus {
  box-shadow: 0 0 0 3px rgba(45, 95, 79, 0.2);
  outline: none;
}
.modern-modal .modal-body {
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}
.modern-modal .modal-body::-webkit-scrollbar {
  width: 6px;
}
.modern-modal .modal-body::-webkit-scrollbar-track {
  background: transparent;
}
.modern-modal .modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.modern-modal .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
.modern-modal .modal-footer .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.modal-backdrop.show {
  opacity: 0.7;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background-color: #F2EDE2;
}

.linked-bonus-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.linked-bonus-icon-wrapper .linked-bonus-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, #2D5F4F, #1d3c32);
  color: #FFD700;
  box-shadow: 0 10px 30px rgba(45, 95, 79, 0.4);
  transform: rotate(-5deg);
  animation: floatIconSimple 3s ease-in-out infinite;
}
.linked-bonus-icon-wrapper .linked-bonus-icon i {
  filter: drop-shadow(0 2px 10px rgba(255, 215, 0, 0.5));
}
.linked-bonus-icon-wrapper .icon-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(45, 95, 79, 0.4), transparent 70%);
  animation: pulseGlow 2s infinite;
}
.linked-bonus-icon-wrapper .icon-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #FFD700;
  border-radius: 50%;
  opacity: 0;
}
.linked-bonus-icon-wrapper .icon-particles span:nth-child(1) {
  top: 0;
  left: 20%;
  animation: particlePop 2s infinite 0.2s;
}
.linked-bonus-icon-wrapper .icon-particles span:nth-child(2) {
  top: 20%;
  right: 10%;
  animation: particlePop 2s infinite 0.6s;
}
.linked-bonus-icon-wrapper .icon-particles span:nth-child(3) {
  bottom: 10%;
  left: 10%;
  animation: particlePop 2s infinite 1s;
}

.menu-section-container {
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.menu-section-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 95, 79, 0.5), transparent);
}

.menu-categories {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  margin: 0 -1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-categories::-webkit-scrollbar {
  display: none;
}
.menu-categories::before, .menu-categories::after {
  content: "";
  display: block;
  width: 0.5rem;
  flex-shrink: 0;
}
.menu-categories .category-btn {
  border: 1px solid rgba(45, 95, 79, 0.5);
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: #234a3e !important;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
}
.menu-categories .category-btn:hover {
  border-color: #2D5F4F;
  background-color: #2D5F4F !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}
.menu-categories .category-btn.active {
  border-color: #2D5F4F;
  background-color: #2D5F4F !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.menu-section {
  display: none;
  animation: slideUpFade 0.4s ease-out;
}
.menu-section.active {
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 0.5rem 0;
}
@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

.menu-item-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
@media (min-width: 768px) {
  .menu-item-card {
    border-radius: 20px;
  }
}
@media (min-width: 768px) {
  .menu-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  .menu-item-card:hover .mic-image img {
    transform: scale(1.04);
  }
}
.menu-item-card .mic-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #F8F5EE;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .menu-item-card .mic-image {
    aspect-ratio: 4/3;
  }
}
.menu-item-card .mic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.menu-item-card .mic-image .mic-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(166, 124, 82, 0.75);
  color: #ffffff;
  font-family: "DM Sans", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 8px;
  line-height: 1;
  z-index: 2;
}
.menu-item-card .mic-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .menu-item-card .mic-body {
    padding: 20px 22px 22px;
    gap: 6px;
  }
}
.menu-item-card .mic-body .mic-name {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 18px;
  font-weight: 600;
  color: hsl(0, 0%, 5%);
  margin: 0;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .menu-item-card .mic-body .mic-name {
    font-size: 22px;
  }
}
.menu-item-card .mic-body .mic-desc {
  font-family: "DM Sans", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #a1a1aa;
  line-height: 1.55;
  margin: 2px 0 0;
  display: none;
}
@media (min-width: 768px) {
  .menu-item-card .mic-body .mic-desc {
    display: block;
  }
}
.menu-item-card .mic-body .mic-loyalty {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #2D5F4F;
  font-family: "DM Sans", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  margin-top: 2px;
}
@media (min-width: 768px) {
  .menu-item-card .mic-body .mic-loyalty {
    font-size: 14px;
  }
}
.menu-item-card .mic-body .mic-loyalty svg {
  flex-shrink: 0;
}
.menu-item-card .mic-body .mic-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}
@media (min-width: 768px) {
  .menu-item-card .mic-body .mic-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    gap: 0;
  }
}
.menu-item-card .mic-body .mic-footer .mic-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.menu-item-card .mic-body .mic-footer .mic-price-wrap .mic-price {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 16px;
  font-weight: 600;
  color: hsl(0, 0%, 5%);
}
@media (min-width: 768px) {
  .menu-item-card .mic-body .mic-footer .mic-price-wrap .mic-price {
    font-size: 22px;
  }
}
.menu-item-card .mic-body .mic-footer .mic-price-wrap .mic-price-old {
  font-family: "DM Sans", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 11px;
  color: #a1a1aa;
  text-decoration: line-through;
}
@media (min-width: 768px) {
  .menu-item-card .mic-body .mic-footer .mic-price-wrap .mic-price-old {
    font-size: 13px;
  }
}
.menu-item-card .mic-body .mic-footer .mic-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}
@media (min-width: 768px) {
  .menu-item-card .mic-body .mic-footer .mic-actions {
    width: auto;
    gap: 8px;
  }
}
.menu-item-card .mic-body .mic-footer .mic-actions .mic-btn-info {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(13, 13, 13, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .menu-item-card .mic-body .mic-footer .mic-actions .mic-btn-info {
    width: 38px;
    height: 38px;
  }
}
.menu-item-card .mic-body .mic-footer .mic-actions .mic-btn-info:hover, .menu-item-card .mic-body .mic-footer .mic-actions .mic-btn-info:focus-visible {
  border-color: rgba(13, 13, 13, 0.3);
  color: hsl(0, 0%, 5%);
  background: #F8F5EE;
}
.menu-item-card .mic-body .mic-footer .mic-actions .mic-btn-add {
  height: 34px;
  padding: 0 14px;
  border-radius: 40px;
  background: #234a3e;
  color: #ffffff;
  border: none;
  font-family: "DM Sans", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex: 1;
}
@media (min-width: 768px) {
  .menu-item-card .mic-body .mic-footer .mic-actions .mic-btn-add {
    height: 38px;
    padding: 0 18px;
    font-size: 13px;
    gap: 6px;
    flex: none;
  }
}
.menu-item-card .mic-body .mic-footer .mic-actions .mic-btn-add svg {
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .menu-item-card .mic-body .mic-footer .mic-actions .mic-btn-add:hover, .menu-item-card .mic-body .mic-footer .mic-actions .mic-btn-add:focus-visible {
    transform: translateY(-5px);
  }
}

.mic-overlay {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: #2D5F4F;
  color: #ffffff;
  z-index: 10;
  padding: 20px 16px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 768px) {
  .mic-overlay {
    border-radius: 20px;
    padding: 28px 24px 0;
  }
}
.mic-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mic-overlay .mic-overlay-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease;
  padding: 0;
}
.mic-overlay .mic-overlay-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.mic-overlay .mic-overlay-scroll {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}
.mic-overlay .mic-overlay-scroll .mic-overlay-name {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 26px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.2;
  padding-right: 36px;
}
.mic-overlay .mic-overlay-scroll .mic-overlay-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.mic-overlay .mic-overlay-scroll .mic-overlay-price-row .mic-overlay-price {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
}
.mic-overlay .mic-overlay-scroll .mic-overlay-price-row .mic-overlay-price-sep {
  font-family: "DM Sans", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}
.mic-overlay .mic-overlay-scroll .mic-overlay-price-row .mic-overlay-points {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "DM Sans", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #FFD700;
}
.mic-overlay .mic-overlay-scroll .mic-overlay-price-row .mic-overlay-points i {
  font-size: 11px;
}
.mic-overlay .mic-overlay-scroll .mic-overlay-desc {
  font-family: "DM Sans", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0 0 16px;
}
.mic-overlay .mic-overlay-scroll .mic-info-group {
  margin-bottom: 12px;
}
.mic-overlay .mic-overlay-scroll .mic-info-group .mic-info-label {
  font-family: "DM Sans", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
}
.mic-overlay .mic-overlay-scroll .mic-info-group .mic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}
.mic-overlay .mic-overlay-scroll .mic-info-group .mic-chips .mic-chip {
  font-family: "DM Sans", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.mic-overlay .mic-overlay-scroll .mic-info-group .mic-chips .mic-chip--allergen {
  color: rgba(255, 255, 255, 0.9);
}
.mic-overlay .mic-overlay-cta {
  width: 100%;
  height: 44px;
  border-radius: 40px;
  background: #234a3e;
  color: #ffffff;
  border: none;
  font-family: "DM Sans", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .mic-overlay .mic-overlay-cta {
    margin-bottom: 24px;
  }
}
.mic-overlay .mic-overlay-cta:hover {
  filter: brightness(1.08);
}
@media (min-width: 768px) {
  .mic-overlay .mic-overlay-cta:hover {
    transform: translateY(-5px);
  }
}

.product-modal-content {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
@media (min-width: 992px) {
  .product-modal-content {
    flex-direction: row;
    gap: 3.5rem;
    align-items: flex-start;
  }
}
.product-modal-content .product-image-col {
  flex: 1;
  margin-bottom: 1rem;
  width: 100%;
}
@media (min-width: 992px) {
  .product-modal-content .product-image-col {
    width: 300px;
    display: flex;
    margin: 0 auto 2.5rem;
  }
}
.product-modal-content .product-image-col .main-image-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.6), 0 2px 6px hsla(0, 0%, 0%, 0.4);
  position: relative;
  padding-top: 100%;
  background: #F8F5EE;
}
.product-modal-content .product-image-col .main-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-modal-content .product-details-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.product-modal-content .product-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(45, 95, 79, 0.1);
  padding-bottom: 1rem;
}
.product-modal-content .product-header .product-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: #234a3e;
}
@media (min-width: 768px) {
  .product-modal-content .product-header .product-name {
    font-size: 2rem;
  }
}
.product-modal-content .product-header .product-price-large {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2D5F4F;
}
@media (min-width: 768px) {
  .product-modal-content .product-header .product-price-large {
    font-size: 1.5rem;
  }
}
.product-modal-content .product-header .points-price-container {
  margin-top: 1rem;
  background-color: #F8F5EE !important;
  color: #234a3e !important;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.product-modal-content .product-header .points-price-container .points-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(45, 95, 79, 0.7);
  font-weight: 600;
}
.product-modal-content .product-header .points-price-container .points-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ccac00;
}
.product-modal-content .product-header .points-price-container .points-value .icon-wrapper {
  width: 24px;
  height: 24px;
  background: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D5F4F;
  font-size: 0.7rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-actions-area {
  background: transparent;
  border: 1px solid rgba(45, 95, 79, 0.1);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-description-text {
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #234a3e;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: auto;
}
@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.info-grid .info-item {
  background-color: #F8F5EE !important;
  color: #234a3e !important;
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(45, 95, 79, 0.1);
}
.info-grid .info-item .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(45, 95, 79, 0.7);
  margin-bottom: 0.25rem;
}
.info-grid .info-item .value {
  font-size: 0.9rem;
  font-weight: 500;
  color: #234a3e;
}

.search-bar-container {
  position: relative;
  max-width: 600px;
  width: 100%;
}
.search-bar-container .search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  overflow: hidden;
  background-color: hsla(160.8, 35%, 10%, 0.75) !important;
  color: #ffffff !important;
}
.search-bar-container .search-input-wrapper:focus-within {
  border-color: #2D5F4F;
  box-shadow: 0 0 0 3px rgba(45, 95, 79, 0.1);
  background-color: hsla(160.8, 35%, 10%, 0.75) !important;
  color: #ffffff !important;
}
.search-bar-container .search-input-wrapper.has-results {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}
.search-bar-container .search-input-wrapper .search-icon {
  padding: 0 16px;
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.search-bar-container .search-input-wrapper .search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 8px 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}
.search-bar-container .search-input-wrapper .search-input::placeholder {
  color: #a1a1aa;
  font-weight: 400;
}
.search-bar-container .search-input-wrapper .search-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 12px;
}
.search-bar-container .search-input-wrapper .search-actions .clear-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 80vh;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.1) !important;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}
.search-bar-container .search-input-wrapper .search-actions .clear-btn.visible {
  opacity: 1;
  transform: scale(1);
}
.search-bar-container .search-input-wrapper .search-actions .clear-btn:hover {
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: #234a3e !important;
}
.search-bar-container .search-input-wrapper .search-actions .filter-btn {
  width: 32px;
  height: 32px;
  background: linear-gradient(to top, #2D5F4F, #4ea489);
  border: none;
  border-radius: 8px;
  color: #234a3e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.search-bar-container .search-input-wrapper .search-actions .filter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(45, 95, 79, 0.3);
}
.search-bar-container .search-input-wrapper .search-actions .filter-btn.active {
  box-shadow: 0 0 0 3px rgba(45, 95, 79, 0.3);
}
.search-bar-container .search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: hsla(160.8, 35%, 10%, 0.75) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-top: none;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  max-height: 400px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}
.search-bar-container .search-dropdown.visible {
  display: block;
  animation: slideDown 0.3s ease forwards;
  border-color: #2D5F4F;
}
.search-bar-container .search-dropdown .dropdown-header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.search-bar-container .search-dropdown .dropdown-header .results-count {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.search-bar-container .search-dropdown .dropdown-content {
  padding: 8px 0;
}
.search-bar-container .search-dropdown .dropdown-content .search-result {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin: 4px 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  background-color: rgba(45, 95, 79, 0.7) !important;
  color: #ffffff !important;
}
.search-bar-container .search-dropdown .dropdown-content .search-result:hover {
  background-color: #2D5F4F !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}
.search-bar-container .search-dropdown .dropdown-content .search-result:hover .result-action {
  opacity: 1;
  transform: translateX(0);
}
.search-bar-container .search-dropdown .dropdown-content .search-result.highlighted {
  background: rgba(45, 95, 79, 0.15);
  border-color: rgba(45, 95, 79, 0.3);
}
.search-bar-container .search-dropdown .dropdown-content .search-result .result-image-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.5) !important;
  color: #234a3e !important;
  margin-right: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.search-bar-container .search-dropdown .dropdown-content .search-result .result-image-wrapper .result-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.search-bar-container .search-dropdown .dropdown-content .search-result .result-content {
  flex: 1;
  min-width: 0;
}
.search-bar-container .search-dropdown .dropdown-content .search-result .result-content .result-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.search-bar-container .search-dropdown .dropdown-content .search-result .result-content .result-header .business-name {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-bar-container .search-dropdown .dropdown-content .search-result .result-content .result-header .rank-badge {
  background: #FFD700 !important;
  color: #000000 !important;
  font-weight: 800;
  font-size: 14px;
  border: none;
  padding: 0.25rem;
}
.search-bar-container .search-dropdown .dropdown-content .search-result .result-content .result-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-bar-container .search-dropdown .dropdown-content .search-result .result-content .result-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}
.search-bar-container .search-dropdown .dropdown-content .search-result .result-content .result-meta .meta-item i {
  font-size: 10px;
  opacity: 0.7;
}
.search-bar-container .search-dropdown .dropdown-content .search-result .result-content .result-meta .meta-item.rating i {
  color: #FFD700;
  opacity: 1;
}
.search-bar-container .search-dropdown .dropdown-content .search-result .result-action {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
  font-size: 12px;
}
.search-bar-container .search-dropdown .dropdown-content .no-results {
  padding: 32px 20px;
  text-align: center;
}
.search-bar-container .search-dropdown .dropdown-content .no-results .no-results-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.search-bar-container .search-dropdown .dropdown-content .no-results .no-results-text {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.search-bar-container .search-dropdown .dropdown-content .no-results .no-results-subtitle {
  font-size: 14px;
  color: #52525b;
}
.search-bar-container .filter-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: rgba(0, 0, 0, 0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  padding: 16px;
  min-width: 240px;
  z-index: 101;
  display: none;
  overflow: scroll;
  height: 350px;
}
.search-bar-container .filter-panel.visible {
  display: block;
  animation: fadeInUp 0.3s ease forwards;
}
.search-bar-container .filter-panel .filter-group {
  margin-bottom: 16px;
}
.search-bar-container .filter-panel .filter-group:last-child {
  margin-bottom: 0;
}
.search-bar-container .filter-panel .filter-group .filter-label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.search-bar-container .filter-panel .filter-group .filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search-bar-container .filter-panel .filter-group .filter-options .filter-option {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.08) !important;
  color: #ffffff !important;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}
.search-bar-container .filter-panel .filter-group .filter-options .filter-option:hover {
  background-color: rgba(0, 0, 0, 0.15) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.2);
}
.search-bar-container .filter-panel .filter-group .filter-options .filter-option.active {
  border-color: #2D5F4F;
  background-color: rgba(45, 95, 79, 0.5) !important;
  color: #ffffff !important;
}
.search-bar-container .filter-panel .filter-group .filter-options .filter-option .option-icon {
  margin-right: 8px;
  font-size: 12px;
}

.cookie-consent-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}
.cookie-consent-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .cookie-consent-backdrop {
    align-items: center;
  }
}

.cookie-consent {
  background-color: hsla(160.8, 35%, 16%, 0.85) !important;
  color: #ffffff !important;
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 600px;
  max-height: 100%;
  overflow: scroll;
}
.cookie-consent__header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.cookie-consent__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  background-color: rgba(45, 95, 79, 0.1) !important;
  color: #ffffff !important;
}
.cookie-consent__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.cookie-consent__description {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
.cookie-consent__options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.cookie-consent__option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background-color: rgba(0, 0, 0, 0.1) !important;
  color: #ffffff !important;
}
.cookie-consent__option:hover {
  border-color: rgba(255, 255, 255, 0.5);
}
.cookie-consent__option h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.cookie-consent__option p {
  font-size: 0.85rem;
  margin: 0;
}
.cookie-consent__link {
  color: #2D5F4F;
  text-decoration: underline;
}
.cookie-consent__link:hover {
  color: #234a3e;
}
.cookie-consent__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-consent__actions .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Form Switch Override for Dark Mode */
.form-switch .form-check-input {
  background-color: #374151;
  border-color: #4b5563;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%239ca3af'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-color: #2D5F4F;
  border-color: #2D5F4F;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e");
}

.feature-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 1.75rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: hsla(160.8, 35%, 16%, 0.85) !important;
  color: #ffffff !important;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-card:hover .feature-card__image {
  transform: scale(1.05);
}
.feature-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}
.feature-card__badge--completed, .feature-card__badge--active {
  background-color: rgba(74, 222, 128, 0.6) !important;
  color: #234a3e !important;
  box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}
.feature-card__badge--cancelled {
  background-color: rgba(255, 92, 92, 0.6) !important;
  color: rgba(45, 95, 79, 0.7) !important;
}
.feature-card__badge--default {
  background-color: rgba(232, 227, 216, 0.6) !important;
  color: #234a3e !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.feature-card__badge--rank {
  background-color: rgba(255, 215, 0, 0.6) !important;
  color: #234a3e !important;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}
.feature-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}
.feature-card__header--loyalty {
  margin-bottom: 2rem;
}
.feature-card__image {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: contain;
  background: #234a3e;
  padding: 4px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.feature-card__business-info .name {
  font-weight: 800;
  line-height: 1.2;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.feature-card__business-info .name--large {
  font-size: 1.25rem;
}
.feature-card__business-info .category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.feature-card__title {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
}
.feature-card__content {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-card__content--loyalty {
  margin-bottom: 0;
}
.feature-card__item {
  background-color: rgba(0, 0, 0, 0.1) !important;
  color: #ffffff !important;
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.feature-card__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.5s;
}
.feature-card__item:hover {
  transform: translateY(-2px);
  border-color: #FFD700;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.21);
}
.feature-card__item:hover::before {
  left: 100%;
}
.feature-card__item:hover .feature-card__item-icon {
  transform: scale(1.1) rotate(5deg);
}
.feature-card__item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
  color: #FFD700;
  background: rgba(255, 255, 255, 0.05);
}
.feature-card__item-content {
  flex: 1;
}
.feature-card__item-content .label {
  font-size: 12px;
  text-transform: uppercase;
  color: hsl(0, 0%, 80%);
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 4px;
}
.feature-card__item-content .value {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
}
.feature-card__item-content .value .highlight {
  color: #FFD700;
  font-weight: 800;
}
@media (max-width: 992px) {
  .feature-card__item-content .value {
    display: block;
  }
}
.feature-card__section-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(45, 95, 79, 0.7);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.feature-card__section-title i {
  color: #FFD700;
}
.feature-card__progress {
  margin-bottom: 1.5rem;
  background-color: rgba(0, 0, 0, 0.2) !important;
  color: #ffffff !important;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.feature-card__progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.feature-card__progress-bar {
  height: 10px;
  background-color: rgba(0, 0, 0, 0.2) !important;
  color: #ffffff !important;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.feature-card__progress-bar-fill {
  height: 100%;
  background: #FFD700;
  border-radius: 100px;
  position: relative;
}
.feature-card__progress-bar-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: shimmer 2s infinite;
}
.feature-card__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.feature-card__stats-grid .stat {
  text-align: center;
}
.feature-card__stats-grid .stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
}
.feature-card__stats-grid .stat-label {
  font-size: 0.7rem;
  color: rgba(45, 95, 79, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.feature-card__footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}
.feature-card__footer .expiry {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.feature-card__footer .expiry i {
  color: #FF5C5C;
}
.feature-card__footer .actions {
  width: 100%;
  display: flex;
  gap: 1rem;
}
.feature-card__footer .actions .btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem 1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s;
}
@media (max-width: 768px) {
  .feature-card__footer .actions {
    display: block;
  }
  .feature-card__footer .actions .btn {
    margin-bottom: 0.5rem;
    width: 100%;
  }
}

.testimonial-card {
  background: hsla(160.8, 35%, 16%, 0.85);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.customer-benefits__card {
  background-color: hsla(160.8, 35%, 16%, 0.85) !important;
  color: #ffffff !important;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}
.customer-benefits__card:hover {
  transform: translateY(-5px);
}

.looyal-place-card {
  display: block;
  position: relative;
  background-color: hsla(160.8, 35%, 16%, 0.85) !important;
  color: #ffffff !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 1.5rem;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.looyal-place-card:hover {
  transform: translateY(-5px);
}
.looyal-place-card:hover .card-bg-glow {
  opacity: 0.5;
  transform: scale(1.1);
}
.looyal-place-card .card-content {
  position: relative;
  z-index: 2;
}
.looyal-place-card .card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.looyal-place-card .card-header .business-logo {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  object-fit: contain;
  background: transparent;
  padding: 2px;
}
.looyal-place-card .card-header .header-info {
  flex: 1;
  min-width: 0;
}
.looyal-place-card .card-header .header-info .business-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.looyal-place-card .card-header .header-info .rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  background-color: rgba(45, 95, 79, 0.5) !important;
  color: #ffffff !important;
  padding: 0 0.6rem;
  border-radius: 100px;
}
.looyal-place-card .card-header .header-info .rank-badge i {
  font-size: 0.7rem;
}
.looyal-place-card .progress-section {
  margin-bottom: 1.5rem;
}
.looyal-place-card .progress-section .progress-labels {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}
.looyal-place-card .progress-section .progress-labels .progress-text {
  color: hsl(0, 0%, 80%);
}
.looyal-place-card .progress-section .progress-labels .points-needed {
  font-weight: 600;
}
.looyal-place-card .progress-section .progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.looyal-place-card .progress-section .progress-track .progress-fill {
  height: 100%;
  background: #FFD700;
  border-radius: 100px;
  position: relative;
}
.looyal-place-card .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background-color: rgba(0, 0, 0, 0.2) !important;
  color: #ffffff !important;
  padding: 0.75rem;
  border-radius: 16px;
  margin-bottom: 1rem;
}
.looyal-place-card .stats-grid .stat-item {
  text-align: center;
}
.looyal-place-card .stats-grid .stat-item .stat-value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}
.looyal-place-card .stats-grid .stat-item .stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.looyal-place-card .stats-grid .stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.looyal-place-card .card-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.5rem;
  font-size: 0.85rem;
}
.looyal-place-card .card-footer .cta-arrow {
  margin-left: 0.5rem;
}

.floating-cart-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  display: flex;
  justify-content: end;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .floating-cart-container {
    bottom: calc(24px + env(safe-area-inset-bottom));
    right: 16px;
    left: 16px;
  }
}

.cart-fab {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.2) !important;
  color: #ffffff !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  font-size: 24px;
}
.cart-fab:hover {
  transform: scale(1.05) translateY(-2px);
  background: #2D5F4F;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.cart-fab:active {
  transform: scale(0.95);
}
.cart-fab .cart-count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #2D5F4F !important;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 700;
  min-width: 24px;
  height: 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-fab.hidden {
  transform: scale(0) rotate(90deg);
  opacity: 0;
  pointer-events: none;
}

.cart-panel {
  width: 400px;
  max-height: 80vh;
  background-color: rgba(27, 55, 46, 0.75) !important;
  color: #ffffff !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(0.9) translateY(20px);
  pointer-events: none;
  position: absolute;
  bottom: 80px;
  right: 0;
}
.cart-panel.active {
  display: flex;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
@media (max-width: 768px) {
  .cart-panel {
    width: 100%;
    bottom: 80px;
    max-height: 70vh;
  }
}

.cart-panel-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-panel-header .header-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-panel-header .close-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: rgba(0, 0, 0, 0.1) !important;
  color: #ffffff !important;
}
.cart-panel-header .close-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  color: white;
  scale: 1.2;
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-items-list::-webkit-scrollbar {
  width: 4px;
}
.cart-items-list::-webkit-scrollbar-track {
  background: transparent;
}
.cart-items-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}
.cart-items-list .empty-state {
  padding: 40px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cart-items-list .empty-state i {
  font-size: 48px;
  opacity: 0.2;
}
.cart-items-list .empty-state p {
  font-size: 14px;
  margin: 0;
}

.cart-item-card {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
  background-color: rgba(0, 0, 0, 0.03) !important;
  color: #ffffff !important;
}
.cart-item-card:hover {
  background-color: rgba(0, 0, 0, 0.06) !important;
  color: #ffffff !important;
}
.cart-item-card .item-thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.2);
}
.cart-item-card .item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-card .item-info .item-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-card .item-info .item-price {
  font-size: 1rem;
  font-weight: 600;
}
.cart-item-card .item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.03) !important;
  color: #ffffff !important;
}
.cart-item-card .item-actions button {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: rgba(0, 0, 0, 0.03) !important;
  color: #ffffff !important;
  font-size: 13px;
}
.cart-item-card .item-actions button:hover {
  background: rgba(255, 255, 255, 0.2);
}
.cart-item-card .item-actions button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.cart-item-card .item-actions span {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  min-width: 16px;
  text-align: center;
}
.cart-item-card .delete-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 92, 92, 0.1);
  color: #FF5C5C;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 4px;
}
.cart-item-card .delete-btn:hover {
  background: rgba(255, 92, 92, 0.2);
  transform: scale(1.1);
}

.cart-panel-footer {
  padding: 20px 24px;
  background-color: rgba(0, 0, 0, 0.03) !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.cart-panel-footer .total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-panel-footer .total-row span {
  font-size: 1rem;
}
.cart-panel-footer .cart-warning {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background-color: rgba(255, 92, 92, 0.5) !important;
  color: rgba(45, 95, 79, 0.7) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 92, 92, 0.5);
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 500;
  animation: slideIn 0.3s ease;
}
.cart-panel-footer .cart-warning i {
  font-size: 16px;
}
.cart-panel-footer .btn-primary {
  width: 100%;
}

.pay-with-points-toggle {
  margin-top: 6px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .pay-with-points-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.pay-with-points-toggle:hover {
  opacity: 1;
}
.pay-with-points-toggle.active {
  opacity: 1;
}
.pay-with-points-toggle.active .toggle-track {
  background-color: #2D5F4F !important;
  color: #ffffff !important;
}
.pay-with-points-toggle.active .toggle-track .toggle-thumb {
  transform: translateX(18px);
  background: white;
  color: #2D5F4F;
  box-shadow: -2px 1px 5px rgba(0, 0, 0, 0.2);
}
.pay-with-points-toggle .toggle-track {
  width: 40px;
  height: 22px;
  background-color: rgba(255, 255, 255, 0.5) !important;
  color: #234a3e !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  padding: 2px;
}
.pay-with-points-toggle .toggle-thumb {
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #333;
  font-size: 9px;
  box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.2);
}
.pay-with-points-toggle .toggle-thumb i {
  transform: scale(0.9);
}
@media (max-width: 768px) {
  .pay-with-points-toggle {
    margin-top: 10px;
    gap: 12px;
  }
  .pay-with-points-toggle .toggle-track {
    width: 50px;
    height: 28px;
    border-radius: 14px;
  }
  .pay-with-points-toggle .toggle-thumb {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }
  .pay-with-points-toggle.active .toggle-track .toggle-thumb {
    transform: translateX(22px);
  }
}

.cart-item-card.pay-with-points-active {
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
  background-color: rgba(255, 215, 0, 0.1) !important;
  color: #234a3e !important;
}
.cart-item-card.pay-with-points-active .item-name {
  color: white;
}
.cart-item-card.pay-with-points-active .item-price {
  opacity: 0.8;
  text-decoration: line-through;
  color: rgba(45, 95, 79, 0.7);
}

.totals-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.totals-wrapper .total-amount {
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.totals-wrapper .total-points-simple {
  font-size: 14px;
  font-weight: 600;
  color: #FFD700;
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.totals-wrapper .total-points-simple #points {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  color: #FFD700;
  font-size: 12px;
  animation: pulseIcon 2s infinite ease-in-out;
  border-radius: 2rem;
}

.order-placed-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  background-color: rgba(27, 55, 46, 0.5) !important;
  color: #ffffff !important;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  display: none;
}
.order-placed-overlay.active {
  display: flex;
}
.order-placed-overlay.active .icon-container {
  animation: scaleInElastic 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.order-placed-overlay.active .icon-container .check-circle {
  animation: strokeDraw 0.6s ease forwards 0.3s;
}
.order-placed-overlay.active .icon-container .check-mark {
  animation: strokeDraw 0.4s ease forwards 0.8s;
}
.order-placed-overlay.active .text-container {
  animation: slideUpFade 0.6s ease forwards 0.5s;
}
.order-placed-overlay.active .reward-preview {
  animation: pointsBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.8s;
}
.order-placed-overlay .success-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  padding: 2rem;
}
.order-placed-overlay .icon-container {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  position: relative;
  opacity: 0;
  transform: scale(0);
}
.order-placed-overlay .icon-container svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.4));
}
.order-placed-overlay .icon-container .check-circle {
  stroke: #4ADE80;
  stroke-width: 2;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  fill: none;
}
.order-placed-overlay .icon-container .check-mark {
  stroke: #4ADE80;
  stroke-width: 3;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.order-placed-overlay .icon-container::before, .order-placed-overlay .icon-container::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid #4ADE80;
  opacity: 0;
  animation: pulseRipple 2s infinite 1s;
}
.order-placed-overlay .icon-container::after {
  animation-delay: 1.5s;
}
.order-placed-overlay .text-container {
  text-align: center;
  margin-bottom: 2.5rem;
  transform: translateY(20px);
}
.order-placed-overlay .text-container h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.order-placed-overlay .text-container .order-number {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

@media (max-width: 576px) {
  .order-placed-overlay .text-container h2 {
    font-size: 2rem;
  }
  .order-placed-overlay .reward-preview {
    width: 100%;
    padding: 1.25rem;
  }
}
.account-filters-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .account-filters-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.search-bar-container {
  position: relative;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .search-bar-container {
    max-width: 400px;
  }
}
.search-bar-container .search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgba(27, 55, 46, 0.6) !important;
  color: #ffffff !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 0.25rem 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-bar-container .search-input-wrapper:hover {
  background-color: rgba(27, 55, 46, 0.8) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}
.search-bar-container .search-input-wrapper:focus-within {
  background-color: rgba(27, 55, 46, 0.95) !important;
  color: #ffffff !important;
  border-color: #2D5F4F;
  transform: translateY(-2px);
}
.search-bar-container .search-input-wrapper:focus-within .search-icon {
  color: #2D5F4F;
  transform: scale(1.1);
}
.search-bar-container .search-input-wrapper .search-actions {
  display: flex;
  align-items: center;
  padding-right: 0.5rem;
}
.search-bar-container .search-input-wrapper input:not(:placeholder-shown) ~ .search-actions .clear-btn {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.order-by-dropdown {
  position: relative;
  z-index: 50;
}
.order-by-dropdown .order-by-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(27, 55, 46, 0.6) !important;
  color: #ffffff !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  justify-content: space-between;
}
.order-by-dropdown .order-by-btn i:first-child {
  color: #2D5F4F;
  font-size: 1rem;
}
.order-by-dropdown .order-by-btn .chevron {
  color: rgba(45, 95, 79, 0.7);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.order-by-dropdown .order-by-btn:hover {
  background-color: rgba(27, 55, 46, 0.8) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}
.order-by-dropdown .order-by-btn:active {
  transform: translateY(0);
}
.order-by-dropdown.open .order-by-btn {
  background-color: hsla(160.8, 35%, 16%, 0.85) !important;
  color: #ffffff !important;
  border-color: #2D5F4F;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.order-by-dropdown.open .order-by-btn .chevron {
  transform: rotate(180deg);
  color: #2D5F4F;
}
.order-by-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(8px) scale(1);
  pointer-events: auto;
}
.order-by-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  min-width: 200px;
  background-color: rgba(27, 55, 46, 0.95) !important;
  color: #ffffff !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.5rem;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0) scale(0.95);
  transform-origin: top right;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.order-by-dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: hsl(0, 0%, 80%);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
  background: transparent;
  border: none;
}
.order-by-dropdown .dropdown-menu .dropdown-item:hover {
  background-color: rgba(45, 95, 79, 0.3) !important;
  color: #ffffff !important;
}
.order-by-dropdown .dropdown-menu .dropdown-item.selected {
  background-color: rgba(45, 95, 79, 0.3) !important;
  color: #ffffff !important;
  font-weight: 600;
}
.order-by-dropdown .dropdown-menu .dropdown-item.selected::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: auto;
  font-size: 0.8rem;
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}
.pricing {
  padding: 4rem 0;
  position: relative;
}
.pricing .pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.pricing .pricing-toggle .toggle-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(45, 95, 79, 0.7);
  position: relative;
}
.pricing .pricing-toggle .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.pricing .pricing-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.pricing .pricing-toggle .switch input:checked + .slider {
  background-color: #2D5F4F;
  border-color: #2D5F4F;
}
.pricing .pricing-toggle .switch input:checked + .slider:before {
  transform: translateX(24px);
  background-color: white;
}
.pricing .pricing-toggle .switch input:focus + .slider {
  box-shadow: 0 0 1px #2D5F4F;
}
.pricing .pricing-toggle .switch .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: hsla(160.8, 50%, 22%, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: 0.4s;
}
.pricing .pricing-toggle .switch .slider:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  transition: 0.4s;
  background: white;
}
.pricing .pricing-toggle .switch .slider.round {
  border-radius: 34px;
}
.pricing .pricing-toggle .switch .slider.round:before {
  border-radius: 50%;
}
.pricing .pricing-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .pricing .pricing-grid {
    flex-direction: column;
  }
}
.pricing .pricing-card {
  background-color: rgba(255, 255, 255, 0.5) !important;
  color: #234a3e !important;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  max-width: 320px;
}
.pricing .pricing-card.monthly {
  display: none;
}
.pricing .pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
  border-color: rgba(45, 95, 79, 0.5);
}
.pricing .pricing-card.popular {
  background-color: #2D5F4F !important;
  color: #ffffff !important;
  border-color: #2D5F4F;
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.6), 0 2px 6px hsla(0, 0%, 0%, 0.4);
  font-weight: bold;
}
.pricing .pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 30px 60px -12px rgba(45, 95, 79, 0.35);
}
@media (max-width: 991px) {
  .pricing .pricing-card.popular {
    transform: scale(1);
  }
  .pricing .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
}
.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700 !important;
  color: #234a3e !important;
  padding: 0.35rem 1.25rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.pricing .pricing-card .plan-name {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.pricing .pricing-card .plan-price-wrapper {
  min-height: 4rem;
  margin-bottom: 0.5rem;
}
.pricing .pricing-card .plan-price-wrapper .plan-price {
  font-size: 2rem;
  font-weight: 800;
  animation: fadeInDown 0.4s ease-out;
}
.pricing .pricing-card .plan-price-wrapper .plan-price.monthly {
  display: none;
}
.pricing .pricing-card .plan-period {
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
.pricing .pricing-card .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  flex-grow: 1;
}
.pricing .pricing-card .plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.pricing .pricing-card .plan-features li.starter {
  text-decoration: line-through;
}
.pricing .pricing-card .plan-features li.starter i.fa-times {
  color: #FF5C5C !important;
  background: rgba(255, 92, 92, 0.1) !important;
}
.pricing .pricing-card .plan-features li i {
  color: #4ADE80;
  background: rgba(74, 222, 128, 0.1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.pricing .pricing-card .btn {
  animation: fadeInDown 0.4s ease-out;
  display: flex;
}

.loyalty-card-3d {
  width: 100%;
  height: 250px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  border-radius: 24px;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.6), 0 2px 6px hsla(0, 0%, 0%, 0.4);
  background: linear-gradient(135deg, #2D5F4F 0%, #234a3e 100%);
  overflow: hidden;
}
.loyalty-card-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.15), transparent 70%), linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 45%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.loyalty-card-3d .card-face {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backface-visibility: hidden;
  z-index: 2;
}
.loyalty-card-3d .card-face .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.loyalty-card-3d .card-face .card-header .member-info .value {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}
.loyalty-card-3d .card-face .card-header .rank-badge {
  background-color: rgba(0, 0, 0, 0.15) !important;
  color: #ffffff !important;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.loyalty-card-3d .card-face .card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  flex: unset;
}
.loyalty-card-3d .card-face .card-body .card-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 0.5rem;
}
.loyalty-card-3d .card-face .card-body .card-stats-row .card-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}
.loyalty-card-3d .card-face .card-body .card-stats-row .card-points,
.loyalty-card-3d .card-face .card-body .card-stats-row .card-balance {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.loyalty-card-3d .card-face .card-body .card-stats-row .card-points .points-value,
.loyalty-card-3d .card-face .card-body .card-stats-row .card-points .balance-value,
.loyalty-card-3d .card-face .card-body .card-stats-row .card-balance .points-value,
.loyalty-card-3d .card-face .card-body .card-stats-row .card-balance .balance-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.loyalty-card-3d .card-face .card-body .card-stats-row .card-points .points-label,
.loyalty-card-3d .card-face .card-body .card-stats-row .card-points .balance-label,
.loyalty-card-3d .card-face .card-body .card-stats-row .card-balance .points-label,
.loyalty-card-3d .card-face .card-body .card-stats-row .card-balance .balance-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.loyalty-card-3d .card-face .card-body .card-stats-row .card-balance .balance-value {
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}
.loyalty-card-3d .card-face .card-body .card-stats-row .card-balance .balance-label {
  color: rgba(255, 215, 0, 0.8);
}
.loyalty-card-3d .card-face .card-body .card-progress {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.loyalty-card-3d .card-face .card-body .card-progress .progress-bar {
  width: 100%;
  height: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.loyalty-card-3d .card-face .card-body .card-progress .progress-bar .progress-fill {
  height: 100%;
  background: #FFD700;
  border-radius: 99px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.loyalty-card-3d .card-face .card-body .card-progress .progress-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: end;
}
.loyalty-card-3d .card-face .card-body .card-progress .progress-text strong {
  color: #ffffff;
  font-weight: 700;
}
.loyalty-card-3d .card-face .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.loyalty-card-3d .card-face .card-footer .label {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
.loyalty-card-3d .card-face .card-footer .value {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.loyalty-card-3d .card-face .card-footer .rank-benefits {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}
.loyalty-card-3d .card-face .card-footer .rank-benefits .benefit-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(0, 0, 0, 0.15) !important;
  color: #ffffff !important;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}
.loyalty-card-3d .card-face .card-footer .rank-benefits .benefit-item i {
  color: #FFD700;
  font-size: 0.75rem;
}

.expiry-info {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  background-color: #F8F5EE !important;
  color: #234a3e !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.expiry-info i {
  margin-right: 8px;
  animation: pulse 2s ease-in-out infinite;
}

.rewards-container {
  position: relative;
  flex-grow: 1;
}
.rewards-container .rewards-grid {
  display: grid;
  gap: 16px;
}
.rewards-container .reward-item {
  background-color: rgba(0, 0, 0, 0.1) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.rewards-container .reward-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.5s;
}
.rewards-container .reward-item:hover {
  transform: translateY(-2px);
}
.rewards-container .reward-item:hover::before {
  left: 100%;
}
.rewards-container .reward-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
  color: #2D5F4F;
  background: linear-gradient(135deg, #2D5F4F, rgba(255, 255, 255, 0.01));
  border-radius: 1rem;
}
.reward-item:hover .rewards-container .reward-icon {
  transform: scale(1.1) rotate(5deg);
}
.rewards-container .reward-content {
  flex: 1;
}
.rewards-container .reward-content .reward-label {
  font-size: 12px;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 4px;
}
.rewards-container .reward-content .reward-value {
  font-size: 18px;
  font-weight: 700;
  color: #234a3e;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .rewards-container .reward-content .reward-value {
    display: block;
  }
}
.rewards-container .reward-content .reward-value .reward-highlight {
  background-clip: text;
  font-weight: 800;
}
.rewards-container .claim-section {
  text-align: center;
  margin: 1rem 0;
  padding: 1rem 2rem;
  border: 1px solid rgba(45, 95, 79, 0.2);
  background-color: rgba(45, 95, 79, 0.05) !important;
  color: #ffffff !important;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rewards-container .claim-section > * {
  position: relative;
  z-index: 2;
}

.bonus-cards-grid {
  display: flex;
  gap: 2rem;
  overflow: scroll;
}

.bonus-info {
  padding: 1.5rem;
  border-radius: 20px;
  color: #234a3e;
}
.bonus-info .bonus-title {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #234a3e;
}
.bonus-info .bonus-title .fas {
  color: #FFD700;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}
.bonus-info p.text-muted {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: rgba(45, 95, 79, 0.7);
}
.bonus-info .bonus-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(45, 95, 79, 0.7);
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.bonus-info .bonus-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(45, 95, 79, 0.1);
}
.bonus-info .bonus-rank-badge {
  position: relative;
  margin: 0 0 1rem;
  padding: 1rem;
  background-color: #2D5F4F !important;
  color: #ffffff !important;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.bonus-info .bonus-rank-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 95, 79, 0.08);
  border-color: rgba(45, 95, 79, 0.3);
}
.bonus-info .bonus-rank-badge:hover .rank-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  color: #FFD700;
}
.bonus-info .bonus-rank-badge .rank-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  background: #ffffff;
  color: #2D5F4F;
  box-shadow: 0 2px 8px rgba(45, 95, 79, 0.1);
}
.bonus-info .bonus-rank-badge .rank-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  position: relative;
  z-index: 2;
}
.bonus-info .bonus-rank-badge .rank-info .rank-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.bonus-info .bonus-rank-badge .rank-info .rank-name {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.bonus-info .rewards-container .reward-item {
  background-color: #F8F5EE !important;
  color: #234a3e !important;
  border: 1px solid rgba(45, 95, 79, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.bonus-info .rewards-container .reward-item .reward-icon {
  background: rgba(45, 95, 79, 0.1);
  color: #2D5F4F;
}
.bonus-info .rewards-container .reward-item:hover {
  border-color: rgba(45, 95, 79, 0.4);
  transform: translateY(-2px);
}

.small-bonus-card {
  position: relative;
  background-color: hsla(160.8, 35%, 16%, 0.85) !important;
  color: #ffffff !important;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  min-width: 290px;
  color: inherit;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.small-bonus-card .ticket-watermark {
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 80px;
  color: hsl(0, 0%, 95%);
  opacity: 0.05;
  z-index: 1;
  transform: rotate(-10deg);
  transition: all 0.5s ease;
  pointer-events: none;
}
.small-bonus-card:hover {
  transform: translateY(-4px) scale(1.01);
}
.small-bonus-card:active {
  transform: scale(0.98);
}
.small-bonus-card__badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: badgePulse 2s infinite;
}
.small-bonus-card__badge i {
  font-size: 10px;
}
.small-bonus-card--locked {
  opacity: 0.5;
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}
.small-bonus-card--locked:hover {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1), inset 0 0 0 1px rgba(255, 215, 0, 0.1);
}
.small-bonus-card--locked .small-bonus-card__icon {
  background: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.small-bonus-card--claimable {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1), inset 0 0 0 1px rgba(255, 215, 0, 0.1);
  animation: borderPulse 3s infinite;
}
.small-bonus-card--claimable .small-bonus-card__icon {
  background: linear-gradient(135deg, #2D5F4F, #254e41);
  color: #FFD700;
  box-shadow: 0 0 20px rgba(45, 95, 79, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.2);
  animation: floatIcon 3s ease-in-out infinite;
}
.small-bonus-card--claimable .small-bonus-card__icon i {
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
}
.small-bonus-card--claimable .small-bonus-card__arrow {
  background: rgba(0, 0, 0, 0.1);
  color: #FFD700;
  animation: slideArrow 1.5s ease-in-out infinite;
}
.small-bonus-card--claimable .small-bonus-card__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  animation: shinePass 3s infinite;
  z-index: 10;
  pointer-events: none;
}
.small-bonus-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  z-index: 2;
}
.small-bonus-card__content {
  flex: 1;
  min-width: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.small-bonus-card__title {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffffff;
  letter-spacing: 0.3px;
}
.small-bonus-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: hsl(0, 0%, 80%);
}
.small-bonus-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  z-index: 2;
}

.small-bonus-card-grid {
  display: flex;
  overflow: scroll;
  gap: 16px;
  margin-top: 24px;
  padding: 1.25rem;
}
@media (max-width: 992px) {
  .small-bonus-card-grid {
    display: block;
    padding: 0.5rem 0;
  }
}

.empty-bonuses-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  text-align: center;
  color: rgba(45, 95, 79, 0.7);
}
.empty-bonuses-state .empty-content {
  max-width: 300px;
}
.empty-bonuses-state .empty-content p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.empty-bonuses-state .empty-content .highlight {
  color: #FFD700;
  font-weight: 700;
}

.bonuses-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0 20px;
  overflow: hidden;
}

.bonuses-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding: 10px 45px 30px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.bonuses-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 280px;
  width: 100%;
  max-width: 340px;
  scroll-snap-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  margin: 0 auto;
}
.carousel-slide .feature-card {
  height: 100%;
  margin-bottom: 0;
  transform: translateZ(0);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(35, 74, 62, 0.08);
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(35, 74, 62, 0.1);
  background-color: rgba(40, 40, 50, 0.8) !important;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.carousel-nav-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.carousel-nav-btn:hover {
  transform: translateY(-50%) scale(1.1);
}
.carousel-nav-btn--prev {
  left: 10px;
}
.carousel-nav-btn--next {
  right: 10px;
}
@media (max-width: 768px) {
  .carousel-nav-btn {
    display: none;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: -10px;
  margin-bottom: 20px;
}
.carousel-dots .dot {
  width: 24px;
  height: 4px;
  background: rgba(35, 74, 62, 0.1);
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.carousel-dots .dot.active {
  background: #2D5F4F;
  box-shadow: 0 0 10px rgba(45, 95, 79, 0.5);
  width: 32px;
}

.linked-bonus-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8) !important;
  color: #ffffff !important;
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.linked-bonus-popup-overlay.active {
  display: flex;
}
.linked-bonus-popup-overlay.active .linked-bonus-popup {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.linked-bonus-popup-overlay .linked-bonus-popup {
  position: relative;
  background-color: rgba(45, 95, 79, 0.3) !important;
  color: #ffffff !important;
  border: 1px solid rgba(35, 74, 62, 0.1);
  border-radius: 24px;
  padding: 40px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  transform: scale(0.8) translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.linked-bonus-popup-overlay .linked-bonus-popup > * {
  position: relative;
  z-index: 2;
}
.linked-bonus-popup-overlay .linked-bonus-popup .linked-bonus-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.1) !important;
  color: #ffffff !important;
}
.linked-bonus-popup-overlay .linked-bonus-popup .linked-bonus-close:hover {
  background-color: rgba(0, 0, 0, 0.1) !important;
  color: #ffffff !important;
  transform: rotate(90deg);
}
.linked-bonus-popup-overlay .linked-bonus-popup .linked-bonus-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.linked-bonus-popup-overlay .linked-bonus-popup .linked-bonus-icon-wrapper .linked-bonus-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, #2D5F4F, #1d3c32);
  color: #FFD700;
  box-shadow: 0 10px 30px rgba(45, 95, 79, 0.4);
  transform: rotate(-5deg);
  animation: floatIconSimple 3s ease-in-out infinite;
}
.linked-bonus-popup-overlay .linked-bonus-popup .linked-bonus-icon-wrapper .linked-bonus-icon i {
  filter: drop-shadow(0 2px 10px rgba(255, 215, 0, 0.5));
}
.linked-bonus-popup-overlay .linked-bonus-popup .linked-bonus-icon-wrapper .icon-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(45, 95, 79, 0.4), transparent 70%);
  animation: pulseGlow 2s infinite;
}
.linked-bonus-popup-overlay .linked-bonus-popup .linked-bonus-icon-wrapper .icon-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #FFD700;
  border-radius: 50%;
  opacity: 0;
}
.linked-bonus-popup-overlay .linked-bonus-popup .linked-bonus-icon-wrapper .icon-particles span:nth-child(1) {
  top: 0;
  left: 20%;
  animation: particlePop 2s infinite 0.2s;
}
.linked-bonus-popup-overlay .linked-bonus-popup .linked-bonus-icon-wrapper .icon-particles span:nth-child(2) {
  top: 20%;
  right: 10%;
  animation: particlePop 2s infinite 0.6s;
}
.linked-bonus-popup-overlay .linked-bonus-popup .linked-bonus-icon-wrapper .icon-particles span:nth-child(3) {
  bottom: 10%;
  left: 10%;
  animation: particlePop 2s infinite 1s;
}
.linked-bonus-popup-overlay .linked-bonus-popup .linked-bonus-text {
  margin-bottom: 32px;
}
.linked-bonus-popup-overlay .linked-bonus-popup .linked-bonus-text .linked-bonus-label {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.linked-bonus-popup-overlay .linked-bonus-popup .linked-bonus-text .linked-bonus-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}
.linked-bonus-popup-overlay .linked-bonus-popup .linked-bonus-text .linked-bonus-description {
  font-size: 1rem;
  color: hsl(0, 0%, 80%);
  line-height: 1.5;
  margin: 0;
}

.reviews-section {
  position: relative;
  padding: 2rem 0;
}

.reviews-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0.5rem 2rem;
  margin: 0 -0.5rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-grid::-webkit-scrollbar {
  display: none;
}
.reviews-grid::after {
  content: "";
  display: block;
  width: 1rem;
  flex-shrink: 0;
}

.review-card {
  min-width: 280px;
  width: 280px;
  background-color: rgba(27, 55, 46, 0.6) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .review-card {
    min-width: 320px;
    width: 320px;
  }
}
.review-card:hover {
  transform: translateY(-5px);
  background: rgba(27, 55, 46, 0.8);
  border-color: rgba(255, 255, 255, 0.15);
}
.review-card:hover .profile-picture {
  transform: scale(1.1);
  border-color: #2D5F4F;
}
.review-card .review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-card .profile-picture {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05) !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}
.review-card .profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card .user-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex-grow: 1;
  min-width: 0;
}
.review-card .user-info .user-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card .user-info .review-date {
  font-size: 0.75rem;
}
.review-card .review-rating {
  display: flex;
  gap: 0.15rem;
}
.review-card .review-rating i {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.2);
}
.review-card .review-rating i.color-secondary {
  color: #FFD700;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
}
.review-card .review-content {
  flex-grow: 1;
}
.review-card .review-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-style: italic;
}
.review-card .quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 0;
}

/* =========================================
   4. STAMP CARD COMPONENT
   ========================================= */
.stamp-card-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}
.stamp-card-container .stamp-card {
  background-color: #2D5F4F !important;
  color: #ffffff !important;
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.7s ease;
  margin-bottom: 2rem;
}
.stamp-card-container .stamp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.6s;
}
.stamp-card-container .stamp-card:hover::before {
  left: 100%;
}
.stamp-card-container .stamp-card .stamp-card-header.gamified {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
.stamp-card-container .stamp-card .stamp-card-header.gamified .header-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 576px) {
  .stamp-card-container .stamp-card .stamp-card-header.gamified .header-content {
    flex-direction: column;
    text-align: center;
  }
}
.stamp-card-container .stamp-card .stamp-card-header.gamified .bonus-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}
.stamp-card-container .stamp-card .stamp-card-header.gamified .bonus-icon-wrapper .progress-ring-container {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stamp-card-container .stamp-card .stamp-card-header.gamified .bonus-icon-wrapper .progress-ring-container svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  left: 0;
}
.stamp-card-container .stamp-card .stamp-card-header.gamified .bonus-icon-wrapper .progress-ring-container svg circle {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
}
.stamp-card-container .stamp-card .stamp-card-header.gamified .bonus-icon-wrapper .progress-ring-container svg .bg-ring {
  stroke: rgba(255, 255, 255, 0.5);
}
.stamp-card-container .stamp-card .stamp-card-header.gamified .bonus-icon-wrapper .progress-ring-container svg .progress-ring {
  stroke: #FFD700;
  stroke-dasharray: 283;
  transition: stroke-dashoffset 1s ease-out;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.5));
}
.stamp-card-container .stamp-card .stamp-card-header.gamified .bonus-icon-wrapper .progress-ring-container .icon-inner {
  width: 56px;
  height: 56px;
  background-color: #234a3e !important;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.stamp-card-container .stamp-card .stamp-card-header.gamified .bonus-details {
  flex: 1;
}
.stamp-card-container .stamp-card .stamp-card-header.gamified .bonus-details h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.stamp-card-container .stamp-card .stamp-card-header.gamified .bonus-details .progress-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: rgba(0, 0, 0, 0.3) !important;
  color: #ffffff !important;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
}
.stamp-card-container .stamp-card .stamp-card-header.gamified .bonus-details .progress-badge .current {
  color: #FFD700;
  font-size: 1.1rem;
}
.stamp-card-container .stamp-card .stamp-card-header.gamified .bonus-details .progress-badge .separator {
  color: rgba(255, 255, 255, 0.4);
}
.stamp-card-container .stamp-card .stamp-card-header.gamified .bonus-details .progress-badge .total {
  color: white;
}
.stamp-card-container .stamp-card .stamp-card-header.gamified .bonus-details .progress-badge .label {
  margin-left: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.stamp-card-container .stamp-card .stamp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .stamp-card-container .stamp-card .stamp-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1rem;
  }
}
.stamp-card-container .stamp-card .stamp-grid .stamp-slot {
  aspect-ratio: 1;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.03) !important;
  color: #ffffff !important;
}
.stamp-card-container .stamp-card .stamp-grid .stamp-slot .stamp-icon {
  font-size: 2.5rem;
  color: hsl(0, 0%, 80%);
  opacity: 0.3;
  transition: all 0.3s ease;
}
.stamp-card-container .stamp-card .stamp-grid .stamp-slot .stamp-number {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 12px;
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.2) !important;
  color: #ffffff !important;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
}
.stamp-card-container .stamp-card .stamp-grid .stamp-slot.stamped {
  background: linear-gradient(135deg, rgba(45, 95, 79, 0.3), rgba(45, 95, 79, 0.3));
  background-color: #234a3e !important;
  color: #ffffff !important;
  border: 2px solid #2D5F4F;
  animation: stampPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.stamp-card-container .stamp-card .stamp-grid .stamp-slot.stamped .stamp-icon {
  color: #FFD700;
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}
.stamp-card-container .stamp-card .stamp-grid .stamp-slot.stamped .stamp-number {
  color: #FFD700;
  background: rgba(45, 95, 79, 0.3);
}
.stamp-card-container .stamp-card .stamp-grid .stamp-slot.stamped::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(45, 95, 79, 0.3) 0%, transparent 70%);
  animation: pulse 2s ease-in-out infinite;
}
.stamp-card-container .stamp-card .stamp-action {
  padding: 1rem 2rem;
  margin: 1rem auto;
  background-color: #234a3e !important;
  color: #ffffff !important;
  border: none;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.stamp-card-container .stamp-card .stamp-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45, 95, 79, 0.4);
}
.stamp-card-container .stamp-card .stamp-action:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.looyal-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 95, 79, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.looyal-loading-overlay.active {
  display: flex;
  visibility: visible;
}
.looyal-loading-overlay .spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.looyal-loading-overlay .spinner {
  width: 48px;
  height: 48px;
  border: 4px solid hsl(0, 0%, 80%);
  border-top: 4px solid hsl(0, 0%, 80%);
  border-radius: 50%;
  animation: looyal-spin 1s linear infinite;
}
.looyal-loading-overlay .loading-text {
  color: hsl(0, 0%, 80%);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.5px;
  animation: looyal-pulse 1.5s ease-in-out infinite;
}

@keyframes looyal-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes looyal-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
/* =========================================
   2.5 FEATURED SECTION
   ========================================= */
.featured-section .featured-card {
  min-height: 280px !important;
  border-radius: 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featured-section .featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.featured-section .featured-card.card-img-bg {
  background-size: cover;
  background-position: center;
  color: #ffffff;
  justify-content: flex-end;
}
.featured-section .featured-card.card-img-bg .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  z-index: 1;
}
.featured-section .featured-card.card-img-bg .card-content {
  position: relative;
  z-index: 2;
}
.featured-section .featured-card.card-img-bg .card-content h3 {
  color: #ffffff;
  font-weight: 800;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}
.featured-section .featured-card.card-img-bg .card-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 1.1rem;
}
.featured-section .featured-card.card-img-bg .card-content.top-right {
  position: absolute;
  top: 2rem;
  right: 2rem;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  padding: 0;
}
.featured-section .featured-card.card-solid-bg {
  background: rgba(var(--brand-main-rgb, 166, 124, 82), 0.75);
  backdrop-filter: blur(16px);
  color: var(--brand-text-color, #ffffff);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  justify-content: flex-start;
  align-items: flex-start;
}
.featured-section .featured-card.card-solid-bg h3 {
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.featured-section .featured-card.card-solid-bg p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.featured-section .featured-card.card-solid-bg.centered {
  text-align: center;
  align-items: center;
}
.featured-section .featured-card.card-solid-bg.centered h3 {
  margin-bottom: 0.5rem;
}
@media (max-width: 992px) {
  .featured-section .featured-card {
    min-height: 320px;
    padding: 2rem;
  }
}

.loyalty-progress-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}
.loyalty-progress-overlay.active {
  opacity: 1;
  visibility: visible;
}

.demo-card-pos-wrapper {
  position: relative;
  width: 380px;
  height: auto;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  opacity: 1;
  transform: translateY(50px) scale(0.9);
}
@media (max-width: 992px) {
  .demo-card-pos-wrapper {
    width: 90%;
    max-width: 380px;
  }
}
.active .demo-card-pos-wrapper {
  animation: cardEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.2s;
}
.demo-card-pos-wrapper .business-name {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}
.active .demo-card-pos-wrapper .business-name {
  animation: fadeInUp 0.8s ease forwards 0.3s;
}
.demo-card-pos-wrapper .demo-success-text {
  text-align: center;
  width: 100%;
  margin-bottom: 0.5rem;
  opacity: 0;
}
.active .demo-card-pos-wrapper .demo-success-text {
  animation: fadeUp 0.6s ease forwards 1.8s;
}
.demo-card-pos-wrapper .demo-success-text h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #FFD700;
  margin: 0;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.credit-stream-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  overflow: hidden;
}
.credit-stream-container .credit-particle {
  position: absolute;
  color: #FFD700;
  font-weight: 800;
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
  opacity: 0;
  z-index: 100;
  will-change: transform, opacity;
  top: 0;
  left: 0;
}
.credit-stream-container .credit-particle.flowing {
  animation: flowToCard 1.2s cubic-bezier(0.5, 0, 0.2, 1) forwards;
}

@keyframes cardEntrance {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes flowToCard {
  0% {
    opacity: 1;
    transform: translate(var(--start-x), var(--start-y)) scale(0.5);
  }
  50% {
    transform: translate(var(--mid-x), var(--mid-y)) scale(1.2);
  }
  100% {
    opacity: 0;
    transform: translate(var(--end-x), var(--end-y)) scale(0.2);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.loyalty-profile-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.loyalty-profile-overlay.active {
  display: flex;
  pointer-events: auto;
}
.loyalty-profile-overlay.active .loyalty-modal {
  animation: modalPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.loyalty-profile-overlay .loyalty-modal {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 900px;
  height: 80vh;
  max-height: 800px;
  background: #F2EDE2;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: scale(0.95);
}
.loyalty-profile-overlay .rank-up-banner {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(-50px);
  z-index: 100;
  background: linear-gradient(135deg, #FFD700 0%, #FFD700 100%);
  padding: 0.8rem 2rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.2);
  color: #2D5F4F;
  white-space: nowrap;
  opacity: 0;
  animation: bannerSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.4s;
}
.loyalty-profile-overlay .rank-up-banner i {
  font-size: 1.25rem;
}
.loyalty-profile-overlay .rank-up-banner .banner-text {
  display: flex;
  flex-direction: column;
}
.loyalty-profile-overlay .rank-up-banner .banner-text .title {
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.loyalty-profile-overlay .rank-up-banner .banner-text .subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
}
.loyalty-profile-overlay .confetti-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  overflow: hidden;
}
.loyalty-profile-overlay .confetti-container .confetti-piece {
  position: absolute;
  top: -10px;
  width: 8px;
  height: 8px;
  background: #FFD700;
  border-radius: 2px;
  opacity: 0;
}
.loyalty-profile-overlay .confetti-container .confetti-piece:nth-child(1) {
  left: 12%;
  background: #FFD700;
  animation: confettiFall 3.2s linear infinite;
  animation-delay: 1.1s;
}
.loyalty-profile-overlay .confetti-container .confetti-piece:nth-child(2) {
  left: 28%;
  background: #FFD700;
  animation: confettiFall 4.5s linear infinite;
  animation-delay: 2.3s;
}
.loyalty-profile-overlay .confetti-container .confetti-piece:nth-child(3) {
  left: 45%;
  background: #FFD700;
  animation: confettiFall 2.8s linear infinite;
  animation-delay: 0.5s;
}
.loyalty-profile-overlay .confetti-container .confetti-piece:nth-child(4) {
  left: 62%;
  background: #FFD700;
  animation: confettiFall 3.9s linear infinite;
  animation-delay: 3.1s;
}
.loyalty-profile-overlay .confetti-container .confetti-piece:nth-child(5) {
  left: 81%;
  background: #FFD700;
  animation: confettiFall 4.2s linear infinite;
  animation-delay: 1.8s;
}
.loyalty-profile-overlay .confetti-container .confetti-piece:nth-child(6) {
  left: 5%;
  background: #FFD700;
  animation: confettiFall 3.5s linear infinite;
  animation-delay: 0.9s;
}
.loyalty-profile-overlay .confetti-container .confetti-piece:nth-child(7) {
  left: 19%;
  background: #FFD700;
  animation: confettiFall 2.6s linear infinite;
  animation-delay: 2.7s;
}
.loyalty-profile-overlay .confetti-container .confetti-piece:nth-child(8) {
  left: 37%;
  background: #FFD700;
  animation: confettiFall 4.8s linear infinite;
  animation-delay: 1.2s;
}
.loyalty-profile-overlay .confetti-container .confetti-piece:nth-child(9) {
  left: 54%;
  background: #FFD700;
  animation: confettiFall 3.1s linear infinite;
  animation-delay: 3.8s;
}
.loyalty-profile-overlay .confetti-container .confetti-piece:nth-child(10) {
  left: 73%;
  background: #FFD700;
  animation: confettiFall 4.1s linear infinite;
  animation-delay: 0.3s;
}
.loyalty-profile-overlay .confetti-container .confetti-piece:nth-child(11) {
  left: 89%;
  background: #FFD700;
  animation: confettiFall 3.7s linear infinite;
  animation-delay: 2.5s;
}
.loyalty-profile-overlay .confetti-container .confetti-piece:nth-child(12) {
  left: 95%;
  background: #FFD700;
  animation: confettiFall 2.9s linear infinite;
  animation-delay: 1.6s;
}
.loyalty-profile-overlay.is-new-rank .rank-badge {
  animation: badgePulse 2s ease-in-out infinite;
}
.loyalty-profile-overlay .modal-scrollcontent {
  display: flex;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.loyalty-profile-overlay .modal-scrollcontent::-webkit-scrollbar {
  width: 4px;
}
.loyalty-profile-overlay .modal-scrollcontent::-webkit-scrollbar-thumb {
  background: rgba(45, 95, 79, 0.1);
  border-radius: 10px;
}
.loyalty-profile-overlay .modal-sidebar {
  flex: 0 0 40%;
  background-color: #2D5F4F;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  color: hsl(0, 0%, 95%);
  position: relative;
}
.loyalty-profile-overlay .modal-sidebar .business-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 4rem;
}
.loyalty-profile-overlay .modal-sidebar .business-header .business-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #2D5F4F;
  font-size: 1.75rem;
  flex-shrink: 0;
}
.loyalty-profile-overlay .modal-sidebar .business-header .header-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.loyalty-profile-overlay .modal-sidebar .business-header .business-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: hsl(0, 0%, 95%);
  line-height: 1.2;
}
.loyalty-profile-overlay .modal-sidebar .membership-card-preview {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 1.75rem;
  margin-bottom: 2.5rem;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.loyalty-profile-overlay .modal-sidebar .membership-card-preview .card-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
  display: block;
}
.loyalty-profile-overlay .modal-sidebar .membership-card-preview .member-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.loyalty-profile-overlay .modal-sidebar .membership-card-preview .rank-badge {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  background: linear-gradient(135deg, #FFD700 0%, #ccac00 100%);
  color: #2D5F4F;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 215, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.loyalty-profile-overlay .modal-sidebar .membership-card-preview .rank-badge::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.6rem;
}
.loyalty-profile-overlay .modal-sidebar .membership-card-preview .points-display {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.loyalty-profile-overlay .modal-sidebar .membership-card-preview .points-display .points-value {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.loyalty-profile-overlay .modal-sidebar .membership-card-preview .points-display .card-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.loyalty-profile-overlay .modal-sidebar .tier-progress-section {
  margin-bottom: 0rem;
}
.loyalty-profile-overlay .modal-sidebar .tier-progress-section .progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.loyalty-profile-overlay .modal-sidebar .tier-progress-section .progress-header .next-tier {
  color: rgba(255, 255, 255, 0.7);
}
.loyalty-profile-overlay .modal-sidebar .tier-progress-section .progress-header .remaining {
  color: hsl(0, 0%, 95%);
}
.loyalty-profile-overlay .modal-sidebar .tier-progress-section .progress-bar-container {
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  overflow: hidden;
}
.loyalty-profile-overlay .modal-sidebar .tier-progress-section .progress-bar-container .progress-fill {
  height: 100%;
  background: #FFD700;
  border-radius: 100px;
}
.loyalty-profile-overlay .modal-sidebar .tier-progress-section .member-since-badge {
  display: flex;
  margin: 1rem auto;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  width: fit-content;
}
.loyalty-profile-overlay .modal-sidebar .tier-progress-section .member-since-badge i {
  color: #FFD700;
  font-size: 0.8rem;
}
.loyalty-profile-overlay .modal-main {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  background-color: #F2EDE2;
  position: relative;
}
.loyalty-profile-overlay .modal-main .close-overlay {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.loyalty-profile-overlay .modal-main .close-overlay:hover {
  transform: rotate(90deg);
  background: #2D5F4F;
  color: #ffffff;
}
.loyalty-profile-overlay .modal-main .section-title {
  font-size: 1.35rem;
  color: #234a3e;
  font-weight: 800;
  margin-bottom: 1.75rem;
}
.loyalty-profile-overlay .modal-main .tier-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
.loyalty-profile-overlay .modal-main .tier-benefits-list .benefit-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.loyalty-profile-overlay .modal-main .tier-benefits-list .benefit-card .benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.loyalty-profile-overlay .modal-main .tier-benefits-list .benefit-card .benefit-icon.bg-main {
  background: rgba(45, 95, 79, 0.1);
  color: #2D5F4F;
}
.loyalty-profile-overlay .modal-main .tier-benefits-list .benefit-card .benefit-icon.bg-gold {
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
}
.loyalty-profile-overlay .modal-main .tier-benefits-list .benefit-card .benefit-icon.bg-accent {
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
}
.loyalty-profile-overlay .modal-main .tier-benefits-list .benefit-card .benefit-content .title {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: #234a3e;
  margin-bottom: 0.15rem;
}
.loyalty-profile-overlay .modal-main .tier-benefits-list .benefit-card .benefit-content .desc {
  font-size: 0.8rem;
  color: rgba(45, 95, 79, 0.7);
  margin: 0;
}
.loyalty-profile-overlay .modal-main .recent-activity-section .activity-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.loyalty-profile-overlay .modal-main .recent-activity-section .activity-header .view-all {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(45, 95, 79, 0.7);
  text-transform: uppercase;
}
.loyalty-profile-overlay .modal-main .recent-activity-section .activity-header .view-all:hover {
  color: #2D5F4F;
}
.loyalty-profile-overlay .modal-main .recent-activity-section .activity-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.loyalty-profile-overlay .modal-main .recent-activity-section .activity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.loyalty-profile-overlay .modal-main .recent-activity-section .activity-item .activity-info-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.loyalty-profile-overlay .modal-main .recent-activity-section .activity-item .activity-info-group .activity-icon {
  font-size: 1.1rem;
  color: #234a3e;
  width: 24px;
  text-align: center;
}
.loyalty-profile-overlay .modal-main .recent-activity-section .activity-item .activity-info-group .activity-details .name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: #234a3e;
}
.loyalty-profile-overlay .modal-main .recent-activity-section .activity-item .activity-info-group .activity-details .meta {
  font-size: 0.75rem;
  color: rgba(45, 95, 79, 0.7);
}
.loyalty-profile-overlay .modal-main .recent-activity-section .activity-item .activity-value {
  font-weight: 800;
  color: #2D5F4F;
  font-size: 0.95rem;
}
.loyalty-profile-overlay .modal-actions-fixed {
  padding: 1.5rem 3rem;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 1rem;
  z-index: 20;
}
.loyalty-profile-overlay .modal-actions-fixed button {
  height: 56px;
  border-radius: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}
.loyalty-profile-overlay .modal-actions-fixed .btn-qr {
  flex: 1;
  background: #2D5F4F;
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 20px rgba(45, 95, 79, 0.2);
}
.loyalty-profile-overlay .modal-actions-fixed .btn-qr:hover {
  transform: translateY(-2px);
  background: #254e41;
}
.loyalty-profile-overlay .modal-actions-fixed .btn-close-footer {
  flex: 0.5;
  background: rgba(0, 0, 0, 0.05);
  color: #234a3e;
  border: none;
}
.loyalty-profile-overlay .modal-actions-fixed .btn-close-footer:hover {
  background: rgba(0, 0, 0, 0.1);
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: flex;
  }
  .loyalty-profile-overlay {
    padding: 0;
  }
  .loyalty-profile-overlay .loyalty-modal {
    height: 100vh;
    max-height: none;
    border-radius: 0;
    animation: modalSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  .loyalty-profile-overlay .modal-scrollcontent {
    flex-direction: column;
  }
  .loyalty-profile-overlay .modal-sidebar {
    padding: 3rem 1.5rem 2rem;
    border-radius: 0 0 32px 32px;
  }
  .loyalty-profile-overlay .modal-sidebar .business-header {
    margin-bottom: 2.5rem;
  }
  .loyalty-profile-overlay .modal-main {
    padding: 2.5rem 1.5rem 8rem;
  }
  .loyalty-profile-overlay .modal-main .close-overlay {
    display: none;
  }
  .loyalty-profile-overlay .modal-actions-fixed {
    padding: 1rem 1.5rem 2rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
  }
}
@keyframes modalSlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes bannerSlide {
  0% {
    transform: translateX(-50%) translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
@keyframes confettiFall {
  0% {
    transform: translateY(-10px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}
@keyframes badgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 215, 0, 0.3);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3), 0 0 25px rgba(255, 215, 0, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 215, 0, 0.3);
  }
}
.bonus-unlocked-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  background-color: hsla(160.8, 35%, 16%, 0.85) !important;
  color: #ffffff !important;
}
.bonus-unlocked-overlay.active {
  opacity: 1;
  visibility: visible;
}
.bonus-unlocked-overlay.active .gift-container {
  animation: giftEntrance 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.bonus-unlocked-overlay.active.revealed {
  background: radial-gradient(circle at center, rgba(35, 74, 62, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
}
.bonus-unlocked-overlay.active.revealed .gift-container {
  animation: giftExplode 0.5s ease forwards;
}
.bonus-unlocked-overlay.active.revealed .bonus-reveal-container {
  display: flex;
  animation: bonusEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.3s;
}
.bonus-unlocked-overlay.active.revealed .light-rays {
  opacity: 1;
  animation: raysRotate 20s linear infinite;
}
.bonus-unlocked-overlay .gift-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  padding: 0 1rem;
}
.bonus-unlocked-overlay .gift-container .title {
  display: block;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2.5rem;
}
.bonus-unlocked-overlay .gift-container .gift-icon-wrapper {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #2D5F4F, #234a3e);
  border-radius: 30px;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 50px rgba(45, 95, 79, 0.5), 0 0 0 4px rgba(255, 255, 255, 0.2) inset;
  animation: giftBounce 2s infinite ease-in-out;
  position: relative;
}
.bonus-unlocked-overlay .gift-container .gift-icon-wrapper i {
  font-size: 4rem;
  color: #FFD700;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}
.bonus-unlocked-overlay .gift-container .tap-hint {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease infinite alternate;
}
.bonus-unlocked-overlay .bonus-reveal-container {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 440px;
  padding: 0;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  z-index: 3;
  perspective: 1000px;
}
.bonus-unlocked-overlay .business-label {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 2rem;
  text-align: center;
  animation: fadeInDown 0.8s ease forwards 0.5s;
  opacity: 0;
}
.bonus-unlocked-overlay .congrats-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 5;
}
.bonus-unlocked-overlay .congrats-header .title {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  animation: titleGlitch 3s infinite alternate;
}
.bonus-unlocked-overlay .bonus-card {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(40px) saturate(180%);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}
.bonus-unlocked-overlay .bonus-card:hover {
  transform: translateY(-5px) rotateX(2deg);
}
.bonus-unlocked-overlay .bonus-card .bonus-icon {
  width: 110px;
  height: 110px;
  background-color: rgba(45, 95, 79, 0.3) !important;
  color: #ffffff !important;
  border-radius: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
  animation: floatIcon 4s ease-in-out infinite;
}
.bonus-unlocked-overlay .bonus-card .bonus-icon::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bonus-unlocked-overlay .bonus-card .bonus-icon i {
  font-size: 3.5rem;
  color: #FFD700;
}
.bonus-unlocked-overlay .bonus-card .bonus-name {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}
.bonus-unlocked-overlay .bonus-card .bonus-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 90%;
  position: relative;
  z-index: 2;
  font-weight: 500;
}
.bonus-unlocked-overlay .light-rays {
  position: absolute;
  inset: -100%;
  background: repeating-conic-gradient(from 0deg, rgba(45, 95, 79, 0.08) 0deg 15deg, transparent 15deg 30deg);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
}

@media (max-width: 576px) {
  .bonus-unlocked-overlay .bonus-reveal-container {
    padding: 1.5rem;
  }
  .bonus-unlocked-overlay .congrats-header .title {
    font-size: 2rem;
  }
  .bonus-unlocked-overlay .bonus-card {
    padding: 1.5rem;
  }
  .bonus-unlocked-overlay .bonus-card .bonus-name {
    font-size: 1.5rem;
  }
}
.join-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.join-success-overlay.active {
  opacity: 1;
  visibility: visible;
}
.join-success-overlay.active .overlay-title {
  animation: slideDownFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.join-success-overlay.active .success-badge {
  animation: badgePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.2s;
}
.join-success-overlay.active .success-info {
  animation: fadeInUp 0.8s ease forwards 0.4s;
}
.join-success-overlay.active .overlay-actions {
  animation: fadeInUp 0.8s ease forwards 0.6s;
}
.join-success-overlay.active .confetti-canvas {
  opacity: 1;
}
.join-success-overlay .overlay-container {
  width: 100%;
  max-width: 440px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.join-success-overlay .overlay-title {
  opacity: 0;
  transform: translateY(-20px);
  margin-bottom: 3rem;
}
.join-success-overlay .overlay-title h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}
.join-success-overlay .success-badge {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #FFD700 0%, #FFD700 100%);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(255, 215, 0, 0.2);
  opacity: 0;
  transform: scale(0.5);
}
.join-success-overlay .success-badge i {
  font-size: 5rem;
  color: #2D5F4F;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}
.join-success-overlay .success-badge::before, .join-success-overlay .success-badge::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px solid #FFD700;
  border-radius: 45px;
  opacity: 0;
  animation: badgeRing 3s infinite;
}
.join-success-overlay .success-badge::after {
  animation-delay: 1.5s;
}
.join-success-overlay .success-info {
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 4rem;
}
.join-success-overlay .success-info .business-name {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 0.5rem;
}
.join-success-overlay .success-info .welcome-msg {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.5;
  max-width: 300px;
  margin: 0 auto;
}
.join-success-overlay .overlay-actions {
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
}
.join-success-overlay .overlay-actions .btn-confirm {
  width: 100%;
  padding: 1.25rem;
  background-color: #2D5F4F;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.join-success-overlay .overlay-actions .btn-confirm:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.join-success-overlay .confetti-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity 1s ease;
}

@keyframes badgePop {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes badgeRing {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 576px) {
  .join-success-overlay .overlay-container {
    padding: 1.5rem;
  }
  .join-success-overlay .overlay-title h2 {
    font-size: 2rem;
  }
  .join-success-overlay .success-badge {
    width: 130px;
    height: 130px;
  }
  .join-success-overlay .success-badge i {
    font-size: 4rem;
  }
}
.hero-section-customer {
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 10% 20%, rgba(45, 95, 79, 0.08) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(45, 95, 79, 0.05) 0%, transparent 40%);
}
@media (max-width: 992px) {
  .hero-section-customer {
    padding: 6rem 0;
    min-height: auto;
    text-align: center;
    display: block;
  }
}
.hero-section-customer .hero-bg-mesh {
  display: none;
}
.hero-section-customer .hero-content {
  position: relative;
  z-index: 5;
  text-align: left;
}
@media (max-width: 992px) {
  .hero-section-customer .hero-content {
    text-align: center;
    margin-bottom: 4rem;
  }
}
.hero-section-customer .hero-content .hero-eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(45, 95, 79, 0.2);
  border-radius: 100px;
  background-color: #2D5F4F !important;
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(5px);
}
.hero-section-customer .hero-content .hero-eyebrow i {
  color: #FFD700;
}
.hero-section-customer .hero-content .hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #234a3e;
  margin-bottom: 1.5rem;
}
.hero-section-customer .hero-content .hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: rgba(45, 95, 79, 0.7);
  line-height: 1.6;
  max-width: 600px;
}
@media (max-width: 992px) {
  .hero-section-customer .hero-content .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-section-customer .hero-content .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .hero-section-customer .hero-content .hero-actions {
    justify-content: center;
  }
}
.hero-section-customer .hero-content .hero-actions .btn-glow {
  box-shadow: 0 10px 25px -5px rgba(45, 95, 79, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-section-customer .hero-content .hero-actions .btn-glow:hover {
  box-shadow: 0 15px 35px -5px rgba(45, 95, 79, 0.5);
  transform: translateY(-2px);
}
.hero-section-customer .hero-content .hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(45, 95, 79, 0.1);
}
@media (min-width: 768px) {
  .hero-section-customer .hero-content .hero-stats {
    gap: 3rem;
  }
}
@media (max-width: 992px) {
  .hero-section-customer .hero-content .hero-stats {
    justify-content: center;
  }
}
.hero-section-customer .hero-content .hero-stats .stat-item .stat-value {
  font-weight: 800;
  font-size: 1.75rem;
  color: #234a3e;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-section-customer .hero-content .hero-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: rgba(45, 95, 79, 0.7);
  font-weight: 500;
}
.hero-section-customer .hero-visual-composition {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}
@media (max-width: 992px) {
  .hero-section-customer .hero-visual-composition {
    height: 500px;
    margin-top: 2rem;
  }
}
.hero-section-customer .hero-visual-composition .visual-glow.customer-glow {
  background: radial-gradient(circle, rgba(45, 95, 79, 0.15), transparent 70%);
  width: 500px;
  height: 500px;
  filter: blur(80px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.hero-section-customer .hero-visual-composition .floating-badge {
  position: absolute;
  background: rgba(45, 95, 79, 0.85);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 20;
  min-width: 180px;
  animation: floatBadge 5s ease-in-out infinite;
}
.hero-section-customer .hero-visual-composition .floating-badge .badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-section-customer .hero-visual-composition .floating-badge .badge-icon.bg-main {
  background: #2D5F4F;
}
.hero-section-customer .hero-visual-composition .floating-badge .badge-icon.bg-accent {
  background: #FFD700;
}
.hero-section-customer .hero-visual-composition .floating-badge .badge-icon.bg-warning {
  background: #f59e0b;
}
.hero-section-customer .hero-visual-composition .floating-badge .badge-text {
  font-size: 0.85rem;
  line-height: 1.2;
  color: #ffffff;
}
.hero-section-customer .hero-visual-composition .floating-badge .badge-text strong {
  display: block;
}
.hero-section-customer .hero-visual-composition .floating-badge.badge-top-right {
  top: 20%;
  right: 0;
  animation-delay: 0s;
}
@media (max-width: 992px) {
  .hero-section-customer .hero-visual-composition .floating-badge.badge-top-right {
    right: 5%;
    top: 50%;
  }
}
.hero-section-customer .hero-visual-composition .floating-badge.badge-top-left {
  top: 30%;
  left: 0;
  animation-delay: 1.5s;
}
@media (max-width: 992px) {
  .hero-section-customer .hero-visual-composition .floating-badge.badge-top-left {
    left: 5%;
    top: 65%;
  }
}
.hero-section-customer .hero-visual-composition .floating-badge.badge-bottom-right {
  bottom: 15%;
  right: 10%;
  animation-delay: 3s;
}
@media (max-width: 992px) {
  .hero-section-customer .hero-visual-composition .floating-badge.badge-bottom-right {
    right: 5%;
    bottom: 5%;
  }
}

.customer-benefits {
  background: #F2EDE2;
}
.customer-benefits .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.customer-benefits .section-header .hero-eyebrow {
  display: inline-block;
  color: #FFD700;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.customer-benefits .section-header .section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.customer-benefits .section-header .section-description {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}
.customer-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .customer-benefits__grid {
    grid-template-columns: 1fr;
  }
}
.customer-benefits__card {
  background-color: #2D5F4F !important;
  color: #ffffff !important;
  border: 1px solid rgba(45, 95, 79, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.customer-benefits__card:nth-of-type(1) {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .customer-benefits__card:nth-of-type(1) {
    grid-row: auto;
  }
}
.customer-benefits__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -5px rgba(45, 95, 79, 0.1);
  border-color: rgba(45, 95, 79, 0.2);
  background-color: rgba(45, 95, 79, 0.9) !important;
  color: #ffffff !important;
}
.customer-benefits__card .feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.customer-benefits__card .feature-desc {
  line-height: 1.6;
}
.customer-benefits__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.1) !important;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.customer-steps {
  position: relative;
  margin: 4rem 0;
  padding: 6rem 0;
  overflow: hidden;
  background: #F8F5EE;
}
.customer-steps .visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}
.customer-steps .visual-glow.glow-top-left {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: rgba(45, 95, 79, 0.2);
}
.customer-steps .visual-glow.glow-bottom-right {
  width: 300px;
  height: 300px;
  bottom: -50px;
  right: -50px;
  background: rgba(255, 215, 0, 0.2);
}
.customer-steps .section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}
.customer-steps .section-header .section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
}
.customer-steps .perspective-container {
  perspective: 1000px;
}
@media (max-width: 768px) {
  .customer-steps .perspective-container {
    perspective: none;
  }
}
.customer-steps .holo-card {
  height: 100%;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  cursor: default;
}
.customer-steps .holo-card:hover {
  transform: translateY(-10px) rotateX(5deg);
}
.customer-steps .holo-card:hover .bg-number {
  transform: translateY(-10px) scale(1.1);
  opacity: 0.1;
  color: #2D5F4F;
}
.customer-steps .holo-card:hover .scan-laser {
  animation-play-state: running !important;
}
.customer-steps .holo-card:hover .floating-coin {
  animation-play-state: running !important;
}
.customer-steps .holo-card:hover .sparkles span {
  animation-play-state: running !important;
}
.customer-steps .holo-card .card-glass-content {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid #ffffff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}
.customer-steps .holo-card .bg-number {
  position: absolute;
  bottom: -20px;
  right: 0;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  z-index: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}
.customer-steps .holo-card .card-text {
  position: relative;
  z-index: 2;
}
.customer-steps .holo-card .card-text .step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #234a3e;
  margin-bottom: 0.75rem;
}
.customer-steps .holo-card .card-text .step-desc {
  color: rgba(45, 95, 79, 0.7);
}
.customer-steps .holo-card .card-header-visual {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.customer-steps .holo-card .card-header-visual .step-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  background: rgba(45, 95, 79, 0.1);
  color: #2D5F4F;
}
.customer-steps .holo-card .card-header-visual .step-badge.unlocked {
  background: rgba(45, 95, 79, 0.5);
  color: #FFD700;
}
.customer-steps .holo-card .card-header-visual .animated-icon-scene {
  width: 60px;
  height: 60px;
  position: relative;
}
.customer-steps .holo-card .card-header-visual .animated-icon-scene .icon-base {
  font-size: 2.5rem;
  color: #234a3e;
}
.customer-steps .holo-card .card-header-visual .animated-icon-scene .scan-laser {
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 2px;
  background: #FFD700;
  box-shadow: 0 0 8px #FFD700;
  opacity: 0;
  animation: scanMove 2s ease-in-out infinite;
  animation-play-state: paused;
}
.customer-steps .holo-card .card-header-visual .animated-icon-scene .floating-coin {
  position: absolute;
  font-size: 1rem;
  color: #fbbf24;
  animation: floatCoin 2s ease-in-out infinite;
  animation-play-state: paused;
}
.customer-steps .holo-card .card-header-visual .animated-icon-scene .floating-coin.c1 {
  top: -5px;
  right: -5px;
}
.customer-steps .holo-card .card-header-visual .animated-icon-scene .floating-coin.c2 {
  bottom: 5px;
  left: -10px;
  animation-delay: 0.5s;
}
.customer-steps .holo-card .card-header-visual .animated-icon-scene .sparkles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #FFD700;
  border-radius: 50%;
  opacity: 0;
  animation: sparklePop 1.5s ease infinite;
  animation-play-state: paused;
}
.customer-steps .holo-card .card-header-visual .animated-icon-scene .sparkles span:nth-child(1) {
  top: -5px;
  right: 0;
}
.customer-steps .holo-card .card-header-visual .animated-icon-scene .sparkles span:nth-child(2) {
  bottom: 10px;
  left: -5px;
  animation-delay: 0.3s;
}
.customer-steps .holo-card .card-header-visual .animated-icon-scene .sparkles span:nth-child(3) {
  top: 50%;
  right: -10px;
  animation-delay: 0.6s;
}

.customer-showcase {
  padding: 8rem 0;
}
.customer-showcase .hero-eyebrow {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.customer-showcase .section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #234a3e;
}
.customer-showcase .section-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.customer-showcase .showcase-visual {
  position: relative;
  padding: 2rem;
}
.customer-showcase .showcase-visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(45, 95, 79, 0.15), transparent 70%);
  z-index: 0;
}
.customer-showcase .showcase-card {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1.586;
  position: relative;
  border-radius: 24px;
  background: linear-gradient(135deg, #2D5F4F, #0c1a15);
  box-shadow: 0 25px 50px -12px rgba(45, 95, 79, 0.5);
  color: #ffffff;
  overflow: hidden;
  margin: 0 auto;
  z-index: 1;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}
.customer-showcase .showcase-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}
.customer-showcase .showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.3;
  mix-blend-mode: overlay;
}
.customer-showcase .showcase-card .card-face {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.customer-showcase .showcase-card .card-header {
  display: flex;
  justify-content: flex-end;
}
.customer-showcase .showcase-card .card-header .rank-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.customer-showcase .showcase-card .card-body .card-stats-row {
  display: flex;
  gap: 2.5rem;
}
.customer-showcase .showcase-card .card-body .card-stats-row .card-stat {
  display: flex;
  flex-direction: column;
}
.customer-showcase .showcase-card .card-body .card-stats-row .card-stat .value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.customer-showcase .showcase-card .card-body .card-stats-row .card-stat .value.highlight-text {
  color: #ffdf33;
}
.customer-showcase .showcase-card .card-body .card-stats-row .card-stat .label {
  font-size: 0.7rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.customer-showcase .showcase-card .card-footer .progress-container .progress-text {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  text-align: right;
  opacity: 0.9;
}
.customer-showcase .showcase-card .card-footer .progress-container .progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
.customer-showcase .showcase-card .card-footer .progress-container .progress-bar .progress-fill {
  height: 100%;
  width: 75%;
  background: #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.customer-cta {
  padding: 6rem 0;
}
.customer-cta__inner {
  padding: 5rem 2rem;
  border-radius: 2rem;
  background: #F8F5EE;
  border: 1px solid rgba(45, 95, 79, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.customer-cta__inner .cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #234a3e;
  margin-bottom: 1rem;
}
.customer-cta__inner .cta-description {
  font-size: 1.25rem;
  color: rgba(45, 95, 79, 0.7);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes floatPhone {
  0%, 100% {
    transform: rotateY(-10deg) rotateX(5deg) translateY(0);
  }
  50% {
    transform: rotateY(-10deg) rotateX(5deg) translateY(-20px);
  }
}
@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes scanMove {
  0%, 100% {
    top: 0;
    opacity: 0;
  }
  10%, 90% {
    opacity: 1;
  }
  50% {
    top: 100%;
    opacity: 1;
  }
}
@keyframes floatCoin {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes sparklePop {
  0%, 100% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes shine {
  to {
    left: 150%;
  }
}
.hero-eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(45, 95, 79, 0.2);
  border-radius: 100px;
  background-color: #2D5F4F !important;
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 20px rgba(45, 95, 79, 0.1);
}
.hero-eyebrow .fas {
  color: #FFD700;
}

.hero-section {
  position: relative;
  padding: 2rem 0 8rem;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 30%, rgba(45, 95, 79, 0.08) 0%, rgba(74, 222, 128, 0.03) 40%, rgba(45, 95, 79, 0.02) 100%), #F8F5EE;
}
@media (max-width: 992px) {
  .hero-section {
    padding: 6rem 0;
    min-height: auto;
    text-align: center;
  }
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
}
.hero-section .hero-content .hero-title {
  font-size: 4.2rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: hsl(0, 0%, 5%);
}
@media (max-width: 768px) {
  .hero-section .hero-content .hero-title {
    font-size: 2.8rem;
  }
}
.hero-section .hero-content .hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 60vw;
}
@media (max-width: 992px) {
  .hero-section .hero-content .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-section .bg-warning-soft {
  background: rgba(245, 158, 11, 0.15);
}
.hero-section .bg-gold-soft {
  background: rgba(255, 215, 0, 0.15);
}
.hero-section .bg-success-soft {
  background: rgba(74, 222, 128, 0.15);
}
.hero-section .bg-gray-soft {
  background: rgba(45, 95, 79, 0.1);
}
.hero-section .bg-main-soft {
  background: rgba(45, 95, 79, 0.15);
}
.hero-section .text-gold {
  color: #e6c200 !important;
}
.hero-section .text-warning {
  color: #f59e0b !important;
}
.hero-section .text-success {
  color: #4ADE80 !important;
}
.hero-section .text-main {
  color: #2D5F4F !important;
}
.hero-section .hero-actions {
  margin-top: 1rem;
}
.hero-section .hero-actions .btn-glow {
  box-shadow: 0 10px 25px rgba(45, 95, 79, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-section .hero-actions .btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(45, 95, 79, 0.4);
}
.hero-section .hero-actions .hero-trust-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #234a3e;
}
.hero-section .hero-trust .border-white-10 {
  border-color: rgba(255, 255, 255, 0.5) !important;
}
.hero-section .hero-trust .avatars-stack {
  display: flex;
  align-items: center;
}
.hero-section .hero-trust .avatars-stack .avatar-sm {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .hero-section .hero-trust {
    justify-content: center;
  }
  .hero-section .hero-trust .d-flex {
    justify-content: center;
  }
}
.hero-section .hero-visual-composition {
  position: relative;
  height: 600px;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}
@media (max-width: 992px) {
  .hero-section .hero-visual-composition {
    height: 450px;
    margin-top: 3rem;
  }
}
.hero-section .hero-visual-composition .visual-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.15), transparent 70%);
  filter: blur(50px);
  z-index: 0;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background-color: #F2EDE2 !important;
  color: #234a3e !important;
  border-radius: 45px;
  border: 10px solid #234a3e;
  position: relative;
  z-index: 10;
  overflow: hidden;
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.3s ease;
}
.phone-mockup.floating-animation {
  animation: floatPhone 6s ease-in-out infinite;
}
.phone-mockup .screen-content {
  background-color: #F2EDE2 !important;
  color: #234a3e !important;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.phone-mockup .app-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.phone-mockup .app-header .app-logo-xs {
  width: 32px;
  height: 32px;
}
.phone-mockup .app-header .app-logo-xs img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.phone-mockup .app-header .app-menu-dots {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 95, 79, 0.1);
  color: #2D5F4F;
  border-radius: 50%;
}
.phone-mockup .app-card-preview {
  background: #2D5F4F;
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 15px 30px -5px rgba(45, 95, 79, 0.4);
  position: relative;
  color: #ffffff;
}
.phone-mockup .app-card-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  animation: shine 4s infinite linear;
}
.phone-mockup .app-card-preview .stamp-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.phone-mockup .app-card-preview .stamp-card-header .bonus-icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.phone-mockup .app-card-preview .stamp-card-header .bonus-icon-wrapper .progress-ring-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.phone-mockup .app-card-preview .stamp-card-header .bonus-icon-wrapper .progress-ring-container svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.phone-mockup .app-card-preview .stamp-card-header .bonus-icon-wrapper .progress-ring-container svg circle {
  fill: transparent;
  stroke-width: 6;
}
.phone-mockup .app-card-preview .stamp-card-header .bonus-icon-wrapper .progress-ring-container svg circle.bg-ring {
  stroke: rgba(255, 255, 255, 0.2);
}
.phone-mockup .app-card-preview .stamp-card-header .bonus-icon-wrapper .progress-ring-container svg circle.progress-ring {
  stroke: #FFD700;
  stroke-linecap: round;
}
.phone-mockup .app-card-preview .stamp-card-header .bonus-icon-wrapper .progress-ring-container .icon-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #ffffff;
}
.phone-mockup .app-card-preview .stamp-card-header .bonus-details {
  flex: 1;
  overflow: hidden;
}
.phone-mockup .app-card-preview .stamp-card-header .bonus-details h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-mockup .app-card-preview .stamp-card-header .bonus-details .progress-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}
.phone-mockup .app-card-preview .stamp-card-header .bonus-details .progress-badge .current {
  color: #FFD700;
}
.phone-mockup .app-card-preview .stamp-card-header .bonus-details .progress-badge .separator {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 2px;
}
.phone-mockup .app-card-preview .stamp-card-header .bonus-details .progress-badge .total {
  color: #ffffff;
}
.phone-mockup .app-card-preview .stamp-card-header .bonus-details .progress-badge .label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  margin-left: 4px;
  text-transform: uppercase;
}
.phone-mockup .app-card-preview .stamp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  position: relative;
}
.phone-mockup .app-card-preview .stamp-grid .stamp-slot {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.phone-mockup .app-card-preview .stamp-grid .stamp-slot .stamp-number {
  position: absolute;
  top: 2px;
  right: 4px;
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}
.phone-mockup .app-card-preview .stamp-grid .stamp-slot .stamp-icon {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.2);
}
.phone-mockup .app-card-preview .stamp-grid .stamp-slot.stamped {
  border: 1px solid #FFD700;
  background: rgba(255, 215, 0, 0.2);
}
.phone-mockup .app-card-preview .stamp-grid .stamp-slot.stamped .stamp-icon {
  color: #FFD700;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
}
.phone-mockup .app-progress-bar {
  position: relative;
  z-index: 5;
  height: 8px;
  background: rgba(45, 95, 79, 0.1);
  border-radius: 100px;
  margin-bottom: 0;
  overflow: hidden;
}
.phone-mockup .app-progress-bar .progress-fill {
  height: 100%;
  width: 65%;
  background: #FFD700;
  border-radius: 100px;
}
.phone-mockup .app-rewards-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.phone-mockup .app-rewards-list .reward-item {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  overflow: hidden;
}
.phone-mockup .app-rewards-list .reward-item:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 25px -5px rgba(45, 95, 79, 0.15), inset 0 0 0 1px #ffffff;
  background: #ffffff;
}
.phone-mockup .app-rewards-list .reward-item:hover .reward-icon {
  transform: scale(1.1) rotate(5deg);
}
.phone-mockup .app-rewards-list .reward-item:hover .reward-action {
  transform: translateX(4px);
  color: #2D5F4F;
}
.phone-mockup .app-rewards-list .reward-item .reward-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}
.phone-mockup .app-rewards-list .reward-item .reward-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.phone-mockup .app-rewards-list .reward-item .reward-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.phone-mockup .app-rewards-list .reward-item .reward-content strong {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}
.phone-mockup .app-rewards-list .reward-item .reward-content span {
  font-size: 0.75rem;
  color: rgba(45, 95, 79, 0.9);
  font-weight: 500;
}
.phone-mockup .app-rewards-list .reward-item .reward-action {
  color: rgba(45, 95, 79, 0.3);
  font-size: 0.85rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.partners {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.partners-track {
  display: flex;
  gap: 4rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}
.partners-list {
  display: flex;
  gap: 4rem;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}
.partners .partner-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(45, 95, 79, 0.7);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.partners .partner-logo:hover {
  opacity: 1;
  color: #234a3e;
}

.profit-drivers {
  padding: 4rem 0;
}
.profit-drivers .section-header {
  margin-bottom: 5rem;
}
.profit-drivers .bento-grid-drivers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .profit-drivers .bento-grid-drivers {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.profit-drivers .bento-card {
  background-color: #2D5F4F !important;
  color: #ffffff !important;
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.profit-drivers .bento-card:nth-of-type(2) {
  display: flex;
  align-items: center;
  grid-column: span 1 !important;
  grid-row: span 2 !important;
}
@media (min-width: 992px) {
  .profit-drivers .bento-card:nth-of-type(2) {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 300px;
  }
}
.profit-drivers .bento-card:nth-of-type(2):hover {
  transform: translateY(-5px);
}
.profit-drivers .bento-card:hover {
  transform: translateY(-4px);
  background-color: hsla(160.8, 50%, 22%, 0.85) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.profit-drivers .bento-card:hover::after {
  opacity: 1;
}
.profit-drivers .bento-card:hover .driver-stat {
  transform: scale(1.05);
  text-shadow: 0 0 30px rgba(45, 95, 79, 0.3);
}
.profit-drivers .bento-card .card-content {
  position: relative;
  z-index: 2;
}
.profit-drivers .bento-card .driver-stat {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: -0.03em;
  transition: transform 0.3s ease;
  display: inline-block;
}
.profit-drivers .bento-card .driver-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.profit-drivers .bento-card .driver-desc {
  color: hsl(0, 0%, 80%);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.profit-drivers .bento-card .revenue-chart-mockup {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 60px;
  margin-top: 1.5rem;
  padding: 0 1rem;
}
.profit-drivers .bento-card .revenue-chart-mockup .chart-bar {
  width: 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px 4px 0 0;
  position: relative;
  overflow: hidden;
}
.profit-drivers .bento-card .revenue-chart-mockup .chart-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  animation: fill-bar 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.profit-drivers .bento-card .revenue-chart-mockup .chart-bar.bar-1 {
  height: 40%;
}
.profit-drivers .bento-card .revenue-chart-mockup .chart-bar.bar-1::after {
  animation-delay: 0.1s;
  height: 100%;
}
.profit-drivers .bento-card .revenue-chart-mockup .chart-bar.bar-2 {
  height: 55%;
}
.profit-drivers .bento-card .revenue-chart-mockup .chart-bar.bar-2::after {
  animation-delay: 0.2s;
  height: 100%;
}
.profit-drivers .bento-card .revenue-chart-mockup .chart-bar.bar-3 {
  height: 45%;
}
.profit-drivers .bento-card .revenue-chart-mockup .chart-bar.bar-3::after {
  animation-delay: 0.3s;
  height: 100%;
}
.profit-drivers .bento-card .revenue-chart-mockup .chart-bar.bar-4 {
  height: 50%;
}
.profit-drivers .bento-card .revenue-chart-mockup .chart-bar.bar-4::after {
  animation-delay: 0.4s;
  height: 100%;
}
.profit-drivers .bento-card .revenue-chart-mockup .chart-bar.bar-5 {
  height: 90%;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}
.profit-drivers .bento-card .revenue-chart-mockup .chart-bar.bar-5::after {
  animation-delay: 0.5s;
  height: 100%;
  background: #FFD700;
}

.level-playing-field {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.level-playing-field .section-title {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
@media (max-width: 992px) {
  .level-playing-field .section-title {
    font-size: 2rem;
  }
}
.level-playing-field .section-subtitle {
  font-size: 1.25rem;
  color: rgba(45, 95, 79, 0.7);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .level-playing-field .section-subtitle {
    font-size: 1.1rem;
  }
}
.level-playing-field .bento-grid-lp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .level-playing-field .bento-grid-lp {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.level-playing-field .bento-card {
  background-color: #2D5F4F !important;
  color: #ffffff !important;
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.level-playing-field .bento-card:hover {
  background-color: hsla(160.8, 50%, 22%, 0.85) !important;
  color: #ffffff !important;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}
.level-playing-field .visual-card {
  background: #FFD700 !important;
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.level-playing-field .visual-card:hover {
  background: #FFD700 !important;
}
@media (max-width: 992px) {
  .level-playing-field .visual-card {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 300px;
  }
}
.level-playing-field .visual-card .card-glow-bg {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 95, 79, 0.2) 0%, transparent 70%);
  filter: blur(5rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.level-playing-field .visual-card .digital-card-mockup {
  width: 320px;
  height: 200px;
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  transform: rotate(-5deg) translateY(10px);
  transition: transform 0.5s ease;
  z-index: 2;
}
.level-playing-field .visual-card .digital-card-mockup:hover {
  transform: rotate(0deg) translateY(0) scale(1.05);
}
.level-playing-field .visual-card .digital-card-mockup .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.level-playing-field .visual-card .digital-card-mockup .card-header .business-logo {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(0, 0%, 5%);
  font-size: 1.2rem;
}
.level-playing-field .visual-card .digital-card-mockup .card-header .points-badge {
  background: rgba(0, 0, 0, 0.5);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}
.level-playing-field .visual-card .digital-card-mockup .card-body {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.level-playing-field .visual-card .digital-card-mockup .card-body .qr-placeholder {
  position: relative;
  width: 5rem;
  height: 5rem;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(0, 0%, 5%);
  font-size: 2rem;
  overflow: hidden;
}
.level-playing-field .visual-card .digital-card-mockup .card-body .qr-placeholder .scanner-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgba(45, 95, 79, 0.5);
  box-shadow: 0 0 4px rgba(45, 95, 79, 0.5), 0 0 8px #2D5F4F;
  top: 0;
  left: 0;
  animation: scan-move 2.5s linear infinite;
  z-index: 2;
  opacity: 0.8;
}
.level-playing-field .visual-card .digital-card-mockup .card-body .qr-placeholder .scanner-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(45, 95, 79, 0.2), transparent);
}
.level-playing-field .visual-card .digital-card-mockup .card-body .card-details .member-name {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}
.level-playing-field .visual-card .digital-card-mockup .card-body .card-details .member-tier {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.level-playing-field .feature-card-modern {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}
.level-playing-field .feature-card-modern .card-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.level-playing-field .feature-card-modern .card-icon-wrapper.tech-gradient {
  background-color: rgba(0, 0, 0, 0.1) !important;
  color: #ffffff !important;
  border: 1px solid rgba(45, 95, 79, 0.2);
}
.level-playing-field .feature-card-modern .feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.level-playing-field .feature-card-modern .feature-description {
  color: hsl(0, 0%, 80%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.digital-card-mockup {
  position: relative;
  z-index: 10;
  width: 320px;
  height: 200px;
  background: transparent;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s ease;
}
.digital-card-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}
.digital-card-mockup .card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(45, 95, 79, 0.15), transparent 60%);
  pointer-events: none;
}
.digital-card-mockup .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}
.digital-card-mockup .card-header .business-logo {
  width: 40px;
  height: 40px;
  background: #2D5F4F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(45, 95, 79, 0.4);
}
.digital-card-mockup .card-header .points-badge {
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255, 215, 0, 0.2);
}
.digital-card-mockup .card-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}
.digital-card-mockup .card-body .qr-placeholder {
  width: 5rem;
  height: 5rem;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(0, 0%, 5%);
  font-size: 2rem;
}
.digital-card-mockup .card-body .card-details {
  text-align: right;
}
.digital-card-mockup .card-body .card-details .member-name {
  color: #234a3e;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.digital-card-mockup .card-body .card-details .member-tier {
  color: #FFD700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 400px));
  gap: 2rem;
  justify-content: center;
}
.features .feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(45, 95, 79, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.features .feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.features .feature-desc {
  color: hsl(0, 0%, 80%);
  font-size: 0.95rem;
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .steps-container {
    grid-template-columns: 1fr;
  }
}
.steps-content {
  order: 2;
}
.steps-visual {
  order: 1;
  position: relative;
}
.steps-visual img {
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.6), 0 2px 6px hsla(0, 0%, 0%, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .steps-visual {
    order: -1;
  }
}
.steps .btn-primary {
  display: flex;
  margin: 0 auto;
  width: fit-content;
}
@media (max-width: 992px) {
  .steps .btn-primary {
    width: 100%;
  }
}
.steps .step-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.steps .step-item .step-number {
  width: 40px;
  height: 40px;
  background-color: #2D5F4F !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.steps .step-item .step-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0rem;
}
.steps .step-item .step-text p {
  color: rgba(45, 95, 79, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

@keyframes propHeroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes propHeroFloatCenter {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-12px);
  }
}
.comparison-section {
  position: relative;
  overflow: hidden;
}
.comparison-section::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(45, 95, 79, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.comparison-section .gamified-comparison {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  min-height: 300px;
  padding: 2rem 0;
  perspective: 1000px;
}
@media (max-width: 768px) {
  .comparison-section .gamified-comparison {
    min-height: 300px;
  }
}
.comparison-section .gamified-comparison .logo {
  height: 70px;
  width: auto;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.2));
  transition: transform 0.5s ease;
}
.comparison-section .gamified-comparison .logo:hover {
  transform: scale(1.05) rotate(-2deg);
}
@media (max-width: 768px) {
  .comparison-section .gamified-comparison .logo {
    height: 60px;
  }
}
.comparison-section .gamified-comparison .floating-benefits-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.comparison-section .gamified-comparison .floating-benefit {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.8rem 1.4rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #234a3e;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  pointer-events: auto;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: propHeroFloat 6s ease-in-out infinite;
}
.comparison-section .gamified-comparison .floating-benefit i {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.comparison-section .gamified-comparison .floating-benefit.fb-data i {
  color: #1E88E5;
  background: rgba(30, 136, 229, 0.15);
}
.comparison-section .gamified-comparison .floating-benefit.fb-engagement i {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.15);
}
.comparison-section .gamified-comparison .floating-benefit.fb-setup i {
  color: #2D5F4F;
  background: rgba(74, 222, 128, 0.15);
}
.comparison-section .gamified-comparison .floating-benefit.fb-image i {
  color: #FF5C5C;
  background: rgba(255, 92, 92, 0.15);
}
.comparison-section .gamified-comparison .floating-benefit.fb-ai i {
  color: #ffffff;
  background: linear-gradient(135deg, #2D5F4F, #46937a);
}
.comparison-section .gamified-comparison .floating-benefit:hover {
  transform: scale(1.08) translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  animation-play-state: paused;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.comparison-section .gamified-comparison .floating-benefit:hover i {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .comparison-section .gamified-comparison .floating-benefit {
    flex-direction: column;
    padding: 0.6rem;
    border-radius: 16px;
    gap: 0.4rem;
    font-size: 0.75rem;
    text-align: center;
    max-width: 110px;
    line-height: 1.2;
  }
  .comparison-section .gamified-comparison .floating-benefit i {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }
  .comparison-section .gamified-comparison .floating-benefit:hover {
    transform: scale(1.05) translateY(-3px);
  }
}
.comparison-section .gamified-comparison .fb-data {
  top: 15%;
  left: 0;
  animation-delay: 0s;
}
@media (max-width: 768px) {
  .comparison-section .gamified-comparison .fb-data {
    top: 25%;
    left: 2%;
  }
}
.comparison-section .gamified-comparison .fb-engagement {
  top: 15%;
  right: 0;
  animation-delay: -1.2s;
}
@media (max-width: 768px) {
  .comparison-section .gamified-comparison .fb-engagement {
    top: 25%;
    right: 2%;
  }
}
.comparison-section .gamified-comparison .fb-setup {
  bottom: 15%;
  left: 5%;
  animation-delay: -2.4s;
}
@media (max-width: 768px) {
  .comparison-section .gamified-comparison .fb-setup {
    bottom: 10%;
    left: 2%;
  }
}
.comparison-section .gamified-comparison .fb-cost {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  animation: propHeroFloatCenter 5s ease-in-out infinite;
  animation-delay: -2.4s;
}
@media (max-width: 768px) {
  .comparison-section .gamified-comparison .fb-cost {
    bottom: 0;
  }
}
.comparison-section .gamified-comparison .fb-image {
  bottom: 15%;
  right: 5%;
  animation-delay: -3.6s;
}
@media (max-width: 768px) {
  .comparison-section .gamified-comparison .fb-image {
    bottom: 10%;
    right: 2%;
  }
}
.comparison-section .gamified-comparison .fb-ai {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: propHeroFloatCenter 5s ease-in-out infinite;
  animation-delay: -4.8s;
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(45, 95, 79, 0.6);
}
@media (max-width: 768px) {
  .comparison-section .gamified-comparison .fb-ai {
    top: 0;
  }
}
.comparison-section .gamified-comparison .fb-ai:hover {
  transform: translateX(-50%) scale(1.08) translateY(-5px);
}
@media (max-width: 768px) {
  .comparison-section .gamified-comparison .fb-ai:hover {
    transform: translateX(-50%) scale(1.05) translateY(-3px);
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonials .testimonial-quote {
  font-size: 1.1rem;
  color: rgba(45, 95, 79, 0.7);
  margin-bottom: 2rem;
  font-style: italic;
}
.testimonials .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonials .testimonial-author .author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(165deg, rgba(25, 25, 40, 0.85) 0%, rgba(15, 15, 20, 0.95) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}
.testimonials .testimonial-author .author-info h4 {
  font-size: 1rem;
  margin: 0;
}
.testimonials .testimonial-author .author-info span {
  font-size: 0.85rem;
  color: rgba(45, 95, 79, 0.7);
}

.faq-section {
  padding: 8rem 0;
  position: relative;
  background-color: #F8F5EE !important;
  color: #234a3e !important;
  overflow: hidden;
}
.faq-section .faq-sticky-sidebar {
  position: sticky;
  top: 100px;
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .faq-section .faq-sticky-sidebar {
    position: relative;
    top: 0;
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }
}
.faq-section .faq-sticky-sidebar .faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 100px;
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.faq-section .faq-sticky-sidebar .faq-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  .faq-section .faq-sticky-sidebar .faq-title {
    font-size: 2.5rem;
  }
}
.faq-section .faq-sticky-sidebar .faq-desc {
  font-size: 1.1rem;
  line-height: 1.6;
}
.faq-section .faq-sticky-sidebar .faq-search-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}
@media (max-width: 992px) {
  .faq-section .faq-sticky-sidebar .faq-search-wrapper {
    margin: 0 auto;
  }
}
.faq-section .faq-sticky-sidebar .faq-decorative-orb {
  position: absolute;
  top: 60%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 95, 79, 0.15) 0%, transparent 70%);
  filter: blur(30px);
  z-index: -1;
  animation: pulseRipple 8s infinite alternate;
  pointer-events: none;
}
.faq-section .faq-accordion-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-section .faq-accordion-modern .faq-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(10px);
  background: rgba(45, 95, 79, 0.04);
  border: 1px solid rgba(45, 95, 79, 0.15);
  box-shadow: 0 4px 15px rgba(45, 95, 79, 0.03);
}
.faq-section .faq-accordion-modern .faq-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(45, 95, 79, 0.08);
  border-color: rgba(45, 95, 79, 0.25);
  background: rgba(45, 95, 79, 0.06);
}
.faq-section .faq-accordion-modern .faq-card.active {
  background: #2D5F4F;
  border-color: #2D5F4F;
  box-shadow: 0 15px 35px rgba(45, 95, 79, 0.2);
  transform: translateX(0);
}
.faq-section .faq-accordion-modern .faq-card.active .faq-card-header {
  padding-bottom: 0.5rem;
}
.faq-section .faq-accordion-modern .faq-card.active .faq-icon-cross {
  transform: rotate(180deg);
}
.faq-section .faq-accordion-modern .faq-card.active .faq-icon-cross .line-v {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg);
}
.faq-section .faq-accordion-modern .faq-card.active .faq-icon-cross .line-h {
  background-color: #ffffff;
}
.faq-section .faq-accordion-modern .faq-card.active .faq-card-body {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-bottom: 2rem;
}
.faq-section .faq-accordion-modern .faq-card.active .faq-question-text {
  color: #ffffff;
}
.faq-section .faq-accordion-modern .faq-card .faq-card-header {
  width: 100%;
  background: none;
  border: none;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  outline: none;
  text-align: left;
  transition: padding 0.3s ease;
}
.faq-section .faq-accordion-modern .faq-card .faq-question-text {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  padding-right: 2rem;
  transition: color 0.3s ease;
  color: #234a3e;
}
.faq-section .faq-accordion-modern .faq-card .faq-icon-cross {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.faq-section .faq-accordion-modern .faq-card .faq-icon-cross .line-h, .faq-section .faq-accordion-modern .faq-card .faq-icon-cross .line-v {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.faq-section .faq-accordion-modern .faq-card .faq-icon-cross .line-h {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq-section .faq-accordion-modern .faq-card .faq-icon-cross .line-v {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.faq-section .faq-accordion-modern .faq-card .faq-card-body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  padding: 0 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-section .faq-accordion-modern .faq-card .faq-card-body .faq-answer-text {
  overflow: hidden;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 1.1rem;
}

.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: transparent;
}
.cta-section .cta-card {
  position: relative;
  z-index: 1;
  background-color: #F8F5EE !important;
  color: #234a3e !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2rem;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.6), 0 2px 6px hsla(0, 0%, 0%, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-section .cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 5rem rgba(0, 0, 0, 0.5);
  border-color: rgba(45, 95, 79, 0.3);
}
.cta-section .cta-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta-section .cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}
.cta-section .cta-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}
.cta-section .cta-actions {
  margin-top: 1rem;
}

.dashboard-container {
  padding: 2rem;
}
@media (max-width: 768px) {
  .dashboard-container {
    padding: 1rem;
  }
}

.qr-code {
  display: flex;
  margin: 0 auto;
  border-radius: 10px;
  height: 100%;
  object-fit: contain;
}
.qr-code.small {
  height: 200px;
  width: 200px;
}
.qr-code-header {
  font-size: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: bold;
}
.qr-code-subheader {
  font-size: 1rem;
}

.pointer-cursor {
  cursor: pointer;
}

.choices {
  margin-bottom: 0.5rem !important;
}

.toggle-div-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 16px;
}
.toggle-div-container .toggle-box {
  cursor: pointer;
  padding: 0.25rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  color: #234a3e;
  opacity: 0.5;
  text-decoration: none;
}
.toggle-div-container .toggle-box.selected {
  font-weight: bold;
  opacity: 1;
  background-color: #2D5F4F;
  color: #234a3e;
}

.dropdown-item:focus {
  background: transparent;
}
.dropdown-item.selected {
  background: #F8F5EE;
}

.pagination {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 0.5rem;
  color: #234a3e;
  border-radius: 0 0 0.5rem 0.5rem;
}
.pagination .pagination-controls {
  display: flex;
  gap: 0.5rem;
}
.pagination .pagination-controls .pagination-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  background: #F8F5EE;
  color: #234a3e;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}
.pagination .pagination-controls .pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination .pagination-controls .pagination-btn.active, .pagination .pagination-controls .pagination-btn:hover {
  background-color: #FFD700;
  border-color: #FFD700;
  color: hsl(0, 0%, 5%);
}

.stamp-card-status .progress {
  border-radius: 18px;
}
.stamp-card-status .progress .progress-bar {
  width: 100%;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(to top, #2D5F4F, #4ea489);
  height: 100%;
}

@media (max-width: 768px) {
  .steps-container {
    grid-template-columns: 1fr;
  }
  .steps-visual {
    order: -1;
  }
  .steps-visual img {
    max-height: 300px;
    object-fit: cover;
  }
}
.spark-ai-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background-color: #F2EDE2;
}
.spark-ai-section .spark-ai-container {
  background-color: hsla(160.8, 35%, 16%, 0.85) !important;
  color: #ffffff !important;
  border-radius: 2rem;
  padding: 4rem;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  isolation: isolate;
}
@media (max-width: 992px) {
  .spark-ai-section .spark-ai-container {
    padding: 2rem;
  }
}
.spark-ai-section .spark-glow {
  position: absolute;
  top: 50%;
  right: 25%;
  transform: translate(50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
  animation: pulseSimple 4s infinite alternate;
}
.spark-ai-section .spark-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 100px;
  color: #FFD700;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.spark-ai-section .spark-eyebrow i {
  animation: spin 6s linear infinite;
}
.spark-ai-section .spark-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .spark-ai-section .spark-title {
    font-size: 2.2rem;
  }
}
.spark-ai-section .spark-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
.spark-ai-section .spark-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.spark-ai-section .spark-features .spark-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
}
.spark-ai-section .spark-features .spark-feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}
.spark-ai-section .spark-features .spark-feature-item .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.spark-ai-section .spark-features .spark-feature-item .feature-icon.bg-success-glow {
  background: rgba(74, 222, 128, 0.15);
  color: #4ADE80;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
}
.spark-ai-section .spark-features .spark-feature-item .feature-icon.bg-warning-glow {
  background: rgba(255, 215, 0, 0.15);
  color: #FFD700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}
.spark-ai-section .spark-features .spark-feature-item .feature-icon.bg-info-glow {
  background: rgba(30, 136, 229, 0.15);
  color: #1E88E5;
  box-shadow: 0 0 20px rgba(30, 136, 229, 0.2);
}
.spark-ai-section .spark-features .spark-feature-item .feature-icon.bg-main-glow {
  background: rgba(45, 95, 79, 0.3);
  color: #4ea489;
  box-shadow: 0 0 20px rgba(45, 95, 79, 0.4);
}
.spark-ai-section .spark-features .spark-feature-item .feature-content h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.spark-ai-section .spark-features .spark-feature-item .feature-content p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}
.spark-ai-section .spark-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .spark-ai-section .spark-visual {
    height: auto;
    min-height: 400px;
    margin-top: 3rem;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem 1rem;
  }
}
.spark-ai-section .spark-visual .ai-core-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spark-ai-section .spark-visual .ai-core-rings {
  position: absolute;
  inset: -50px;
}
.spark-ai-section .spark-visual .ai-core-rings .ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(255, 215, 0, 0.3);
  border-radius: 50%;
}
.spark-ai-section .spark-visual .ai-core-rings .ring.ring-1 {
  animation: spin 20s linear infinite;
}
.spark-ai-section .spark-visual .ai-core-rings .ring.ring-2 {
  inset: 20px;
  border: 1px solid rgba(45, 95, 79, 0.3);
  animation: spin 15s linear infinite reverse;
}
.spark-ai-section .spark-visual .ai-core-rings .ring.ring-3 {
  inset: 40px;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  animation: spin 25s linear infinite;
}
.spark-ai-section .spark-visual .ai-core-orb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2D5F4F, #234a3e);
  box-shadow: 0 0 40px rgba(45, 95, 79, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}
.spark-ai-section .spark-visual .ai-core-orb .orb-icon {
  font-size: 3rem;
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}
.spark-ai-section .spark-visual .floating-insight {
  position: absolute;
  background: rgba(28, 84, 66, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1rem;
  width: 260px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  z-index: 5;
  animation: float 5s ease-in-out infinite alternate;
}
@media (max-width: 992px) {
  .spark-ai-section .spark-visual .floating-insight {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    animation: none !important;
  }
}
.spark-ai-section .spark-visual .floating-insight.insight-top-left {
  top: 5%;
  left: -15%;
  animation-delay: 0s;
}
.spark-ai-section .spark-visual .floating-insight.insight-top-right {
  top: 10%;
  right: -15%;
  animation-delay: -0.8s;
}
.spark-ai-section .spark-visual .floating-insight.insight-bottom-right {
  bottom: 10%;
  right: -10%;
  animation-delay: -1.5s;
}
.spark-ai-section .spark-visual .floating-insight.insight-bottom-left {
  bottom: -5%;
  left: 0;
  animation-delay: -3s;
}
.spark-ai-section .spark-visual .floating-insight .insight-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}
.spark-ai-section .spark-visual .floating-insight .insight-header i {
  font-size: 0.9rem;
}
.spark-ai-section .spark-visual .floating-insight .insight-body {
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.4;
}
.spark-ai-section .spark-visual .floating-insight .insight-body strong {
  color: #4ADE80;
  font-weight: 800;
  font-size: 1.1rem;
}
.spark-ai-section .spark-visual .floating-insight .insight-body strong.color-red {
  color: #FF5C5C;
}

.entity-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 350px));
  gap: 1rem;
  justify-content: center;
}

.profile-page .profile-wrapper {
  display: flex;
  justify-content: center;
}
.profile-page .profile-wrapper .profile-form {
  background: #F2EDE2;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.9s ease;
}
.profile-page .profile-wrapper .profile-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}
.profile-page .profile-wrapper .profile-form .form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #e5e7eb;
}
@media (max-width: 768px) {
  .profile-page .profile-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.preferences-container {
  max-width: 800px;
  margin: 3rem auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.preferences-container .form-group {
  margin-bottom: 1rem;
  flex: 1;
}
.preferences-container .preferences-header {
  margin-bottom: 2rem;
}
.preferences-container .preferences-header .preferences-title {
  font-size: 24px;
  font-weight: 700;
  color: #234a3e;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.preferences-container .preferences-header .preferences-subtitle {
  font-size: 14px;
  color: rgba(45, 95, 79, 0.7);
}
.preferences-container .preference-category {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.preferences-container .preference-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.preferences-container .preference-category .category-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(45, 95, 79, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.preferences-container .preference-category .category-title .category-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.preferences-container .preference-category .preference-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  cursor: pointer;
}
.preferences-container .preference-category .preference-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: 2px solid rgba(255, 255, 255, 0.5);
}
.preferences-container .preference-category .preference-item:last-child {
  margin-bottom: 0;
}
.preferences-container .preference-category .preference-item .preference-label-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.preferences-container .preference-category .preference-item .preference-label-group .preference-label {
  font-size: 14px;
  font-weight: 600;
  color: #234a3e;
}
.preferences-container .preference-category .preference-item .preference-label-group .preference-description {
  font-size: 12px;
  color: rgba(45, 95, 79, 0.7);
}
.preferences-container .preferences-actions {
  display: flex;
  justify-content: end;
  width: 100%;
  gap: 1rem;
}

@media (max-width: 768px) {
  .preferences-container {
    padding: 1.5rem 1rem;
  }
  .preferences-container .preference-item {
    padding: 0.75rem;
  }
  .preferences-container .preferences-actions {
    flex-direction: column;
    justify-content: end;
  }
  .preferences-container .preferences-actions .btn {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .search-bar-container .search-input-wrapper .search-input {
    font-size: 16px;
  }
  .search-bar-container .search-dropdown .dropdown-content .search-result {
    flex-wrap: wrap;
  }
  .search-bar-container .search-dropdown .dropdown-content .search-result .business-logo {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .search-bar-container .search-dropdown .dropdown-content .search-result .business-info {
    min-width: fit-content;
    margin-bottom: 0.5rem;
  }
  .search-bar-container .filter-panel {
    right: -8px;
    left: -8px;
    min-width: auto;
  }
}
.transaction-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 2rem;
}
.transaction-summary .summary-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(20px);
  animation: fadeInUp 0.7s ease;
  text-align: center;
}
.transaction-summary .summary-card .summary-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(to top, #2D5F4F, #4ea489);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  margin: 0 auto 12px;
}
.transaction-summary .summary-card .summary-value {
  font-size: 28px;
  font-weight: 800;
  color: #234a3e;
  margin-bottom: 4px;
}
.transaction-summary .summary-card .summary-label {
  font-size: 12px;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.transaction-summary .summary-card .summary-change {
  font-size: 11px;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 12px;
}
.transaction-summary .summary-card .summary-change.positive {
  color: #4ADE80;
  background: rgba(74, 222, 128, 0.1);
}
.transaction-summary .summary-card .summary-change.negative {
  color: #ef4444;
  background: rgba(255, 92, 92, 0.1);
}

@media (max-width: 768px) {
  .transaction-summary {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .transaction-summary .summary-card {
    padding: 16px;
  }
  .transaction-summary .summary-card .summary-value {
    font-size: 24px;
  }
}
.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  color: hsl(0, 0%, 5%) !important;
}

/* =========================================
   1. LAYOUT & PAGE WRAPPER
   ========================================= */
.single-business-landing {
  padding-bottom: 6rem;
}
.single-business-landing section {
  margin: 0 auto;
  padding: 4rem 1.5rem;
  max-width: 1180px;
  overflow: hidden;
}
.single-business-landing .business-bonuses::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 95, 79, 0.5), transparent);
}
@media (max-width: 992px) {
  .single-business-landing section {
    padding: 3.5rem 1.25rem;
  }
}
@media (max-width: 768px) {
  .single-business-landing section {
    padding: 3rem 1rem;
  }
}

/* =========================================
   2. SHARED COMPONENTS & UTILITIES
   ========================================= */
.profile-rank {
  cursor: pointer;
  text-align: center;
  overflow: visible !important;
}
.profile-rank .mobile {
  display: none;
}
@media (max-width: 992px) {
  .profile-rank .desktop {
    display: none;
  }
  .profile-rank .mobile {
    display: block;
  }
}
.profile-rank .nav-item-text {
  margin-bottom: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #234a3e;
}

.rank-badge {
  padding: 0.5rem 1rem;
  border-radius: 100vh;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #F8F5EE;
  background-color: rgba(45, 95, 79, 0.5) !important;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-input .fa-star:hover, .review-input .fa-star.selected {
  color: #FFD700;
}

/* =========================================
   6. MODALS
   ========================================= */
.modal-footer .btn-primary {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.warning-box {
  background-color: rgba(255, 215, 0, 0.1) !important;
  color: #234a3e !important;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.warning-box i {
  margin-top: 3px;
}

/* =========================================
   7. JOIN NOW (Upsell)
   ========================================= */
.join-now-section {
  padding: 4rem 1rem;
}
.join-now-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 95, 79, 0.5), transparent);
}
.join-now-section .row {
  align-items: center;
}
.join-now-section .join-now-card {
  background-color: hsla(160.8, 35%, 16%, 0.85) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}
.join-now-section .join-now-card:hover {
  transform: translateY(-5px);
}
.join-now-section .join-now-card .brand-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}
.join-now-section .join-now-card .brand-icon .logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 22px;
  background: #ffffff;
}
.join-now-section .join-now-card .brand-icon .logo-placeholder {
  width: 100%;
  height: 100%;
  background-color: #234a3e !important;
  color: #ffffff !important;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 800;
}
.join-now-section .join-now-card .join-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
  position: relative;
  z-index: 2;
}
.join-now-section .join-now-card .join-subtitle {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.join-now-section .join-now-card .join-subtitle strong {
  font-weight: 700;
}
.join-now-section .join-now-card .join-note {
  font-size: 0.9rem;
  color: rgba(35, 74, 62, 0.5);
  margin-top: 0.5rem;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.join-now-section .join-now-card .join-note:hover {
  color: #234a3e;
  text-decoration: underline;
}
@media (max-width: 576px) {
  .join-now-section {
    padding: 3rem 1rem;
  }
  .join-now-section .join-now-card {
    padding: 2.5rem 1.5rem;
  }
  .join-now-section .join-now-card .brand-icon {
    width: 72px;
    height: 72px;
  }
  .join-now-section .join-now-card .join-title {
    font-size: 1.85rem;
  }
}

/* =========================================
   8. ANIMATIONS
   ========================================= */
.qr-code-header {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.qr-wrapper {
  background: white;
  padding: 16px;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 0 40px rgba(45, 95, 79, 0.15);
  position: relative;
  overflow: hidden;
}
.qr-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: #2D5F4F;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.qr-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(45, 95, 79, 0.1) 0%, transparent 70%);
  animation: pulseGlowTranslate 3s infinite;
  pointer-events: none;
}
.qr-wrapper .qr-code {
  width: 200px;
  height: 200px;
  display: block;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
.qr-wrapper .scanner-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #2D5F4F;
  box-shadow: 0 0 4px #2D5F4F, 0 0 8px #2D5F4F;
  top: 0;
  left: 0;
  animation: scan-move 2.5s linear infinite;
  z-index: 2;
  opacity: 0.8;
}
.qr-wrapper .scanner-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(45, 95, 79, 0.2), transparent);
}

.coming-soon-page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #050505;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  color: #ffffff;
}
.coming-soon-page__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.coming-soon-page__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: floatDiagonal 10s ease-in-out infinite;
}
.coming-soon-page__glow--primary {
  top: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 95, 79, 0.8) 0%, rgba(45, 95, 79, 0) 70%);
  animation-delay: 0s;
}
.coming-soon-page__glow--secondary {
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(255, 215, 0, 0) 70%);
  animation-delay: -5s;
}
.coming-soon-page__grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}
.coming-soon-page__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 992px) {
  .coming-soon-page__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 4rem 1.5rem;
  }
}
.coming-soon-page__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 992px) {
  .coming-soon-page__content {
    align-items: center;
  }
}
.coming-soon-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: rgba(45, 95, 79, 0.1);
  border: 1px solid rgba(45, 95, 79, 0.3);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(10px);
  width: fit-content;
  box-shadow: 0 0 20px rgba(45, 95, 79, 0.2);
}
.coming-soon-page__badge .pulse {
  width: 8px;
  height: 8px;
  background-color: #FFD700;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  animation: pulse-gold 2s infinite;
}
.coming-soon-page__title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.coming-soon-page__title .text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.3));
}
@supports not (background-clip: text) {
  .coming-soon-page__title .text-gradient {
    color: #ffffff;
    background: none;
  }
}
.coming-soon-page__description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #a1a1aa;
  max-width: 540px;
  margin: 0;
}
.coming-soon-page__features {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}
@media (max-width: 992px) {
  .coming-soon-page__features {
    justify-items: center;
    text-align: left;
  }
}
.coming-soon-page__features .feature-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.coming-soon-page__features .feature-item .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  color: #2D5F4F;
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}
.coming-soon-page__features .feature-item:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(135deg, rgba(45, 95, 79, 0.2), rgba(45, 95, 79, 0.05));
  border-color: rgba(45, 95, 79, 0.4);
  box-shadow: 0 0 20px rgba(45, 95, 79, 0.3);
  color: #3d826c;
}
.coming-soon-page__features .feature-item .feature-text h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: #ffffff;
}
.coming-soon-page__features .feature-item .feature-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.coming-soon-page__card-wrapper {
  display: flex;
  justify-content: center;
  perspective: 1000px;
  padding: 1rem;
}
.coming-soon-page__card {
  width: 100%;
  max-width: 520px;
  padding: 3rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 40px 80px -20px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  overflow: hidden;
  position: relative;
}
.coming-soon-page__card::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 95, 79, 0.4) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.6;
}
.coming-soon-page__card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.8), 0 0 0 2px rgba(45, 95, 79, 0.3), 0 0 40px rgba(45, 95, 79, 0.2);
}
.coming-soon-page__card .card-header {
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.coming-soon-page__card .card-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.75rem 0;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(45, 95, 79, 0.5);
}
.coming-soon-page__card .card-header p {
  color: #a1a1aa;
  font-size: 1.05rem;
  margin: 0;
}
.coming-soon-page .coming-soon-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}
.coming-soon-page .coming-soon-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.coming-soon-page .coming-soon-form .form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-left: 0.25rem;
  letter-spacing: 0.02em;
}
.coming-soon-page .coming-soon-form .form-group .input-wrapper {
  position: relative;
}
.coming-soon-page .coming-soon-form .form-group .input-wrapper .input-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.1rem;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 2;
}
.coming-soon-page .coming-soon-form .form-group .input-wrapper .form-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3.25rem;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #ffffff;
  font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.coming-soon-page .coming-soon-form .form-group .input-wrapper .form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.coming-soon-page .coming-soon-form .form-group .input-wrapper .form-input:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.5);
}
.coming-soon-page .coming-soon-form .form-group .input-wrapper .form-input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.5);
  border-color: #2D5F4F;
  box-shadow: 0 0 0 4px rgba(45, 95, 79, 0.15), 0 0 20px rgba(45, 95, 79, 0.1);
}
.coming-soon-page .coming-soon-form .form-group .input-wrapper .form-input:focus + .input-icon {
  color: #2D5F4F;
  transform: translateY(-50%) scale(1.1);
  filter: drop-shadow(0 0 5px #2D5F4F);
}
.coming-soon-page .coming-soon-form .form-group .input-wrapper .form-input.is-invalid {
  border-color: #FF5C5C;
  background: rgba(255, 92, 92, 0.05);
}
.coming-soon-page .coming-soon-form .form-group .input-wrapper .form-input.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(255, 92, 92, 0.15);
}
.coming-soon-page .coming-soon-form .form-group .form-error {
  font-size: 0.85rem;
  color: #FF5C5C;
  margin-left: 0.5rem;
  background: rgba(255, 92, 92, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  width: fit-content;
  margin-top: 0.25rem;
}
.coming-soon-page .coming-soon-form .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.125rem;
  background: linear-gradient(135deg, #2D5F4F 0%, #254e41 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px -5px rgba(45, 95, 79, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.coming-soon-page .coming-soon-form .submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
  transform: skewX(-20deg);
}
.coming-soon-page .coming-soon-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(45, 95, 79, 0.5), 0 0 20px rgba(45, 95, 79, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #35705d 0%, #2D5F4F 100%);
}
.coming-soon-page .coming-soon-form .submit-btn:hover::before {
  left: 200%;
}
.coming-soon-page .coming-soon-form .submit-btn:hover i {
  transform: translateX(6px);
}
.coming-soon-page .coming-soon-form .submit-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px -5px rgba(45, 95, 79, 0.4);
}
.coming-soon-page .coming-soon-form .submit-btn i {
  transition: transform 0.3s ease;
}
.coming-soon-page .coming-soon-form .form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.coming-soon-page .coming-soon-form .form-footer i {
  font-size: 0.8rem;
  color: #FFD700;
}
.coming-soon-page .success-message {
  text-align: center;
  padding: 2.5rem 0;
  animation: fadeIn 0.6s ease-out;
}
.coming-soon-page .success-message .success-icon {
  width: 90px;
  height: 90px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #4ADE80;
  font-size: 2.5rem;
  border: 2px solid rgba(74, 222, 128, 0.2);
  box-shadow: 0 0 30px -5px rgba(74, 222, 128, 0.3);
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.coming-soon-page .success-message h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
}
.coming-soon-page .success-message p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin: 0;
}
.coming-soon-page .form-error-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 92, 92, 0.15);
  border: 1px solid rgba(255, 92, 92, 0.3);
  border-radius: 12px;
  color: #ff8f8f;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  backdrop-filter: blur(5px);
}
.coming-soon-page .form-error-alert i {
  font-size: 1.1rem;
}

.hub-hero-gamified {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.hub-hero-gamified::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 95, 79, 0.15), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hub-hero-gamified .hero-container {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  gap: 2rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  grid-template-areas: "identity power stats";
}
.hub-hero-gamified .hero-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
  border-radius: 32px;
}
@media (max-width: 1200px) {
  .hub-hero-gamified .hero-container {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "identity  stats" "power     power";
  }
}
@media (max-width: 768px) {
  .hub-hero-gamified .hero-container {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
  }
}
.hub-hero-gamified .hero-column-identity {
  grid-area: identity;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.hub-hero-gamified .hero-column-identity .profile-greeting .subtitle {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(45, 95, 79, 0.5);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hub-hero-gamified .hero-column-identity .profile-greeting h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}
.hub-hero-gamified .hero-column-identity .rank-media {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hub-hero-gamified .hero-column-identity .rank-media .rank-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(45, 95, 79, 0.2), rgba(45, 95, 79, 0.05));
  border: 1px solid rgba(45, 95, 79, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D5F4F;
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(45, 95, 79, 0.2);
}
.hub-hero-gamified .hero-column-identity .rank-media .rank-text {
  display: flex;
  flex-direction: column;
}
.hub-hero-gamified .hero-column-identity .rank-media .rank-text .label {
  font-size: 0.75rem;
  text-transform: uppercase;
}
.hub-hero-gamified .hero-column-identity .rank-media .rank-text .value {
  font-size: 1.1rem;
  font-weight: 700;
}
.hub-hero-gamified .hero-column-power {
  grid-area: power;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hub-hero-gamified .hero-column-power::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(45, 95, 79, 0.25), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.hub-hero-gamified .hero-column-power .power-circle {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: #234a3e !important;
}
.hub-hero-gamified .hero-column-power .power-circle::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #2D5F4F;
  border-left-color: rgba(45, 95, 79, 0.3);
  animation: spin 8s linear infinite;
}
.hub-hero-gamified .hero-column-power .power-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(45, 95, 79, 0.3);
}
.hub-hero-gamified .hero-column-power .power-circle:hover .points-value {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}
.hub-hero-gamified .hero-column-power .power-circle .points-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.hub-hero-gamified .hero-column-power .power-circle .points-value {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  transition: text-shadow 0.3s ease;
}
.hub-hero-gamified .hero-column-stats {
  grid-area: stats;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.hub-hero-gamified .hero-column-stats .stat-module {
  background-color: rgba(255, 255, 255, 0.03) !important;
  color: #234a3e !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.hub-hero-gamified .hero-column-stats .stat-module:hover {
  transform: translateX(-5px);
}
.hub-hero-gamified .hero-column-stats .stat-module:hover .stat-icon {
  transform: scale(1.1) rotate(-10deg);
}
.hub-hero-gamified .hero-column-stats .stat-module .stat-content {
  display: flex;
  flex-direction: column;
}
.hub-hero-gamified .hero-column-stats .stat-module .stat-content .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.hub-hero-gamified .hero-column-stats .stat-module .stat-content .value {
  font-size: 1.25rem;
  font-weight: 700;
}
.hub-hero-gamified .hero-column-stats .stat-module .stat-icon {
  font-size: 1.5rem;
  color: #2D5F4F;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.hub-hero-gamified .hero-column-stats .stat-module.transactions {
  border-left: 3px solid #2D5F4F;
}
.hub-hero-gamified .hero-column-stats .stat-module.spent {
  border-left: 3px solid #2D5F4F;
}

.hub-hero {
  padding-bottom: 4rem;
}
.hub-hero .hero-actions {
  gap: 3rem;
  margin-top: 3rem;
  margin-bottom: 0;
  justify-content: center;
  display: flex;
}
@media (max-width: 768px) {
  .hub-hero .hero-actions {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.hub-hero .stat-item {
  text-align: center;
}
.hub-hero .stat-item dt {
  color: rgba(45, 95, 79, 0.7);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.hub-hero .stat-item dd {
  font-size: 2.5rem;
  font-weight: 700;
  color: #234a3e;
  margin: 0;
}

.hub-features {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.hub-features .section-header {
  text-align: left;
  margin-bottom: 3rem;
  max-width: 100%;
}
.hub-features .section-header .section-title {
  margin-bottom: 0;
}
.hub-features .empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
}
.hub-features .empty-state .feature-icon {
  margin: 0 auto 1.5rem;
}

@keyframes shimmer {
  0% {
    transform: skewX(-20deg) translateX(-150%);
  }
  100% {
    transform: skewX(-20deg) translateX(250%);
  }
}
@media (max-width: 576px) {
  .looyal-place-card {
    padding: 1.25rem;
  }
}
.business-hero {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
  max-width: unset !important;
  padding-top: 0 !important;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--brand-main, #2D5F4F);
}
.hero-bg__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(1.1);
}
.hero-bg__gradient {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-bg__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  z-index: 2;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-glow__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  will-change: transform;
}
.hero-glow__orb--1 {
  width: 420px;
  height: 420px;
  background: var(--brand-main, #2D5F4F);
  top: -10%;
  right: -8%;
  animation: heroOrbFloat 14s ease-in-out infinite alternate;
}
.hero-glow__orb--2 {
  width: 300px;
  height: 300px;
  background: var(--brand-main, #2D5F4F);
  bottom: -5%;
  left: -5%;
  opacity: 0.15;
  animation: heroOrbFloat 18s ease-in-out infinite alternate-reverse;
}

@keyframes heroOrbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, -20px) scale(1.12);
  }
}
.hero-body {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.5rem;
  height: 100%;
  min-height: inherit;
  padding: 5rem 1.25rem 1.75rem;
}
@media (min-width: 768px) {
  .hero-body {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 5rem 2.5rem 2.5rem;
    gap: 2rem;
  }
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .hero-brand {
    gap: 1.5rem;
  }
}
.hero-brand__logo {
  flex-shrink: 0;
}
.hero-brand__logo img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) {
  .hero-brand__logo img {
    width: 88px;
    height: 88px;
    border-radius: 20px;
  }
}
.hero-brand__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.hero-brand__name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .hero-brand__name {
    font-size: 2.25rem;
  }
}
.hero-brand__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  width: fit-content;
  backdrop-filter: blur(6px);
}
.hero-brand__location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.15rem;
}
.hero-brand__location i {
  font-size: 0.7rem;
  opacity: 0.6;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .hero-panel {
    align-items: flex-end;
    min-width: 300px;
    max-width: 400px;
  }
}
.hero-panel__status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-panel__actions {
  width: 100%;
}
.hero-panel__actions .btn--hero {
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(var(--brand-main-rgb, 45, 95, 79), 0.35);
  transition: all 0.25s ease;
}
.hero-panel__actions .btn--hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--brand-main-rgb, 45, 95, 79), 0.45);
}
.hero-panel__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-panel__nav {
    justify-content: flex-end;
  }
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.status-chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.status-chip--open {
  background: rgba(74, 222, 128, 0.15);
  color: #4ADE80;
  border: 1px solid rgba(74, 222, 128, 0.25);
}
.status-chip--open .status-chip__dot {
  background: #4ADE80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}
.status-chip--closed {
  background: rgba(255, 92, 92, 0.15);
  color: #FF5C5C;
  border: 1px solid rgba(255, 92, 92, 0.25);
}
.status-chip--closed .status-chip__dot {
  background: #FF5C5C;
}
.status-chip__hours {
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 500;
}
.status-chip__hours i {
  margin-right: 0.15rem;
  font-size: 0.7rem;
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.25);
  font-size: 0.8rem;
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  backdrop-filter: blur(6px);
}
.hero-rating i {
  font-size: 0.7rem;
}
.hero-rating strong {
  color: #ffffff;
  font-weight: 700;
}
.hero-rating span {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  font-size: 0.75rem;
}
.hero-rating:hover {
  background: rgba(255, 215, 0, 0.25);
  transform: translateY(-1px);
  color: #FFD700;
  text-decoration: none;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
}
.hero-pill i {
  font-size: 0.7rem;
  color: #ffffff;
  transition: color 0.25s ease;
}
.hero-pill:hover, .hero-pill:focus {
  background: var(--brand-main, #2D5F4F);
  border-color: var(--brand-main, #2D5F4F);
  color: var(--brand-text-color, #ffffff);
  transform: translateY(-2px);
  text-decoration: none;
}
.hero-pill:hover i, .hero-pill:focus i {
  color: var(--brand-text-color, #ffffff);
}

.blog-page {
  background-color: #F2EDE2 !important;
  color: #234a3e !important;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.blog-hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}
.blog-hero p {
  color: rgba(45, 95, 79, 0.7);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
  padding-bottom: 80px;
  justify-content: center;
}

.blog-card {
  background-color: hsla(160.8, 35%, 16%, 0.85) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.blog-card:hover {
  transform: translateY(-5px);
  background-color: hsla(160.8, 50%, 22%, 0.85) !important;
  color: #ffffff !important;
}
.blog-card:hover .blog-card-image {
  transform: scale(1.05);
}
.blog-card:hover .blog-read-more {
  gap: 0.75rem;
}
@media (min-width: 992px) {
  .blog-card.featured {
    grid-column: span 2;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 400px;
  }
  .blog-card.featured .blog-card-image-wrapper {
    width: 50%;
    padding-top: 0;
    position: relative;
    flex-shrink: 0;
  }
  .blog-card.featured .blog-card-body {
    width: 50%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .blog-card.featured .blog-card-title {
    font-size: 2rem;
  }
}

.blog-card-link {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.blog-card-image-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
  width: 100%;
  background-color: hsla(160.8, 35%, 16%, 0.85) !important;
  color: #ffffff !important;
}

.blog-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(45, 95, 79, 0.7);
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-date i {
  color: #234a3e;
}

.blog-card-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #234a3e;
  line-height: 1.4;
}

.blog-card-excerpt {
  color: rgba(45, 95, 79, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  margin-top: auto;
  color: #234a3e;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s ease;
}

.article-header {
  padding: 60px 0 40px;
  text-align: center;
}

.article-meta {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background-color: #ffffff !important;
  color: #234a3e !important;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-family: "Outfit", sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.article-title {
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .article-title {
    font-size: 2rem;
  }
}

.article-image-container {
  padding: 0 1rem;
  margin-bottom: 4rem;
}

.article-image {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.article-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.article-content-wrapper hr {
  border-color: rgba(255, 255, 255, 0.5);
  opacity: 0.2;
}

.article-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #e0e0e0;
}
.article-body p {
  margin-bottom: 1.5rem;
}
.article-body h2 {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #234a3e;
}
.article-body h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #234a3e;
}
.article-body img {
  max-width: 100%;
  border-radius: 12px;
  margin: 2rem 0;
}
.article-body blockquote {
  border-left: 4px solid #2D5F4F;
  padding-left: 1.5rem;
  font-style: italic;
  color: rgba(45, 95, 79, 0.7);
  font-size: 1.25rem;
  margin: 2rem 0;
}
.article-body a {
  color: #2D5F4F;
  text-decoration: underline;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(45, 95, 79, 0.7);
  font-weight: 600;
  transition: all 0.2s;
  margin-bottom: 2rem;
}
.btn-back:hover {
  color: #234a3e;
  transform: translateX(-5px);
}

/*# sourceMappingURL=base.css.map */
