/* ============================================================
   FEMS.CSS — Family Expense Management System
   ============================================================ */

/* ══ FEMS HERO ══ */
.fems-hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #06060e 0%,
    #0d0d1a 60%,
    #0a0a1b 100%
  );
}
.fems-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(
      rgba(99,102,241,0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(99,102,241,0.04) 1px,
      transparent 1px
    );
  background-size: 64px 64px;
  z-index: 0;
}
.fems-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}
.fems-orb-1 {
  width: 500px; height: 500px;
  background: rgba(99,102,241,0.3);
  top: -150px; left: -150px;
  animation: orbFloat 10s
    ease-in-out infinite;
}
.fems-orb-2 {
  width: 350px; height: 350px;
  background: rgba(139,92,246,0.2);
  bottom: -80px; right: 5%;
  animation: orbFloat 12s
    ease-in-out infinite reverse;
}
.fems-orb-3 {
  width: 200px; height: 200px;
  background: rgba(99,102,241,0.15);
  top: 40%; right: 15%;
  animation: orbFloat 8s
    ease-in-out infinite;
}
.fems-hero .container {
  position: relative;
  z-index: 1;
}

/* ── Hero Badge ── */
.fems-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.1);
  border: 1px solid
    rgba(99,102,241,0.25);
  color: #818cf8;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: fadeSlideDown
    0.6s ease both;
}
.fems-live-dot {
  width: 7px; height: 7px;
  background: #6366f1;
  border-radius: 50%;
  box-shadow: 0 0 8px #6366f1;
  animation: pulseDot 1.5s
    ease-in-out infinite;
}

/* ── Hero Title ── */
.fems-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(
    2.2rem, 5.5vw, 3.8rem
  );
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 22px;
  animation: fadeSlideUp
    0.7s 0.1s ease both;
}
.fems-accent {
  background: linear-gradient(
    135deg, #6366f1, #818cf8
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero Sub ── */
.fems-hero-sub {
  font-size: 1.05rem;
  color: rgba(232,232,255,0.6);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px;
  animation: fadeSlideUp
    0.7s 0.2s ease both;
}

/* ── Key Points ── */
.fems-key-points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeSlideUp
    0.7s 0.25s ease both;
}
.fkp-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(99,102,241,0.1);
  border: 1px solid
    rgba(99,102,241,0.2);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #818cf8;
}
.fkp-icon {
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* ── Hero Stats ── */
.fems-hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  animation: fadeSlideUp
    0.7s 0.3s ease both;
}
.fems-stat .fems-stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.fems-stat .fems-stat-val em {
  color: #6366f1;
  font-style: normal;
}
.fems-stat .fems-stat-lbl {
  font-size: 11px;
  color: rgba(232,232,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ── Hero Buttons ── */
.fems-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  animation: fadeSlideUp
    0.7s 0.4s ease both;
}
.btn-fems-primary {
  background: linear-gradient(
    135deg, #6366f1, #4f46e5
  );
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px
    rgba(99,102,241,0.4);
  transition: all 0.3s;
}
.btn-fems-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px
    rgba(99,102,241,0.55);
  color: #fff;
}
.btn-fems-ghost {
  background: rgba(255,255,255,0.05);
  border: 1px solid
    rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.btn-fems-ghost:hover {
  background: rgba(99,102,241,0.1);
  border-color: rgba(99,102,241,0.4);
  color: #818cf8;
}
.fems-free-note {
  font-size: 12px;
  color: rgba(232,232,255,0.4);
  font-weight: 600;
  margin: 0;
}
.fems-free-note i {
  color: #6366f1;
  margin-right: 4px;
}

/* ══ DASHBOARD PREVIEW ══ */
.fems-dashboard-preview {
  position: relative;
  padding: 20px;
}
.fdp-card {
  background: #0f0f1f;
  border: 1px solid
    rgba(99,102,241,0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 64px
    rgba(0,0,0,0.6);
  position: relative;
  z-index: 2;
}
.fdp-header {
  background: rgba(0,0,0,0.4);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid
    rgba(255,255,255,0.06);
}
.fdp-dots {
  display: flex;
  gap: 6px;
}
.fdp-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.fdp-dot.red { background: #ff5f56; }
.fdp-dot.yellow { background: #ffbd2e; }
.fdp-dot.green { background: #27c93f; }
.fdp-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-left: 8px;
}
.fdp-body { padding: 18px; }

/* ── Balance Row ── */
.fdp-balance-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.fdp-bal-card {
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid
    rgba(255,255,255,0.06);
}
.fdp-bal-green {
  background: rgba(76,175,80,0.08);
  border-color: rgba(76,175,80,0.15);
}
.fdp-bal-red {
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.15);
}
.fdp-bal-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.fdp-bal-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2px;
}
.fdp-bal-val {
  font-size: 15px;
  font-weight: 800;
}
.fdp-green { color: #4caf50; }
.fdp-red { color: #ef4444; }

/* ── Chart ── */
.fdp-chart {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid
    rgba(255,255,255,0.05);
}
.fdp-chart-lbl {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.fdp-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.fdp-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}
.fdp-bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  transition: height 0.5s ease;
}
.fdp-bar[data-color="green"] {
  background: rgba(76,175,80,0.6);
}
.fdp-bar[data-color="red"] {
  background: rgba(239,68,68,0.6);
}
.fdp-bar[data-color="purple"],
.fdp-bar-active {
  background: rgba(99,102,241,0.8);
}
.fdp-bar-wrap span {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
}

/* ── Transactions ── */
.fdp-txns { margin-bottom: 12px; }
.fdp-txn-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fdp-txn-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid
    rgba(255,255,255,0.04);
}
.fdp-txn-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.fdp-txn-income {
  background: rgba(76,175,80,0.15);
  color: #4caf50;
}
.fdp-txn-expense {
  background: rgba(239,68,68,0.15);
  color: #ef4444;
}
.fdp-txn-info { flex: 1; }
.fdp-txn-name {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.fdp-txn-date {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
}
.fdp-txn-amt {
  font-size: 12px;
  font-weight: 800;
}
.fdp-income-amt { color: #4caf50; }
.fdp-expense-amt { color: #ef4444; }

/* ── Members ── */
.fdp-members { margin-top: 12px; }
.fdp-mem-lbl {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.fdp-mem-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.fdp-mem-chip {
  background: rgba(99,102,241,0.12);
  border: 1px solid
    rgba(99,102,241,0.25);
  color: #818cf8;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
}
.chip-admin {
  background: rgba(240,180,41,0.12);
  border-color: rgba(240,180,41,0.25);
  color: #f0b429;
}
.fdp-mem-add {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px dashed
    rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
}

/* ── Floating Cards ── */
.fdp-float {
  position: absolute;
  background: rgba(15,15,31,0.95);
  border: 1px solid
    rgba(99,102,241,0.3);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px
    rgba(0,0,0,0.5);
  z-index: 3;
  animation: floatTag 4s
    ease-in-out infinite;
}
.fdp-float-1 {
  top: 10px; right: 0px;
  animation-delay: 0s;
}
.fdp-float-2 {
  bottom: 20px; left: 0px;
  animation-delay: -2s;
}
.fdp-float-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.fdp-float-val {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}
.fdp-float-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}

/* ══ TRUST BAR ══ */
.fems-trust-bar {
  background: rgba(15,15,31,0.9);
  border-top: 1px solid
    rgba(99,102,241,0.1);
  border-bottom: 1px solid
    rgba(99,102,241,0.1);
  padding: 16px 0;
  backdrop-filter: blur(10px);
}
.fems-trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.fems-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(232,232,255,0.5);
}
.fems-trust-item i { color: #6366f1; }

/* ══ FEATURES SECTION ══ */
.fems-features-section {
  padding: 100px 0;
  background: #080808;
}
.fems-feat-card {
  background: #0f0f1f;
  border: 1px solid
    rgba(99,102,241,0.1);
  border-radius: 20px;
  padding: 30px 26px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.fems-feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(
    90deg, transparent,
    #6366f1, transparent
  );
  opacity: 0;
  transition: 0.3s;
}
.fems-feat-card:hover {
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px
    rgba(0,0,0,0.4);
}
.fems-feat-card:hover::before {
  opacity: 1;
}
.fems-feat-card-highlight {
  background: linear-gradient(
    160deg, #0f0f2a, #1a1a4e
  );
  border-color: rgba(99,102,241,0.25);
}
.fems-feat-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.ffi-green {
  background: rgba(76,175,80,0.12);
  color: #4caf50;
  border: 1px solid rgba(76,175,80,0.2);
}
.ffi-purple {
  background: rgba(99,102,241,0.12);
  color: #818cf8;
  border: 1px solid
    rgba(99,102,241,0.2);
}
.ffi-gold {
  background: rgba(240,180,41,0.12);
  color: #f0b429;
  border: 1px solid
    rgba(240,180,41,0.2);
}
.ffi-blue {
  background: rgba(59,130,246,0.12);
  color: #60a5fa;
  border: 1px solid
    rgba(59,130,246,0.2);
}
.ffi-orange {
  background: rgba(249,115,22,0.12);
  color: #fb923c;
  border: 1px solid
    rgba(249,115,22,0.2);
}
.ffi-teal {
  background: rgba(20,184,166,0.12);
  color: #2dd4bf;
  border: 1px solid
    rgba(20,184,166,0.2);
}
.fems-feat-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.fems-feat-card p {
  font-size: 13px;
  color: rgba(232,232,255,0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}
.fems-feat-list {
  list-style: none;
  padding: 0; margin: 0;
}
.fems-feat-list li {
  font-size: 12px;
  color: rgba(232,232,255,0.5);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.fems-feat-list li i {
  color: #6366f1;
  font-size: 10px;
  flex-shrink: 0;
}

/* ══ HOW IT WORKS ══ */
.fems-how-section {
  padding: 100px 0;
  background: #0d0d1a;
}
.fems-step-card {
  background: #0f0f1f;
  border: 1px solid
    rgba(99,102,241,0.12);
  border-radius: 20px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.3s;
  text-align: center;
}
.fems-step-card:hover {
  border-color: rgba(99,102,241,0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px
    rgba(0,0,0,0.4);
}
.fems-step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(99,102,241,0.12);
  line-height: 1;
  margin-bottom: 14px;
}
.fems-step-icon {
  width: 56px; height: 56px;
  background: rgba(99,102,241,0.1);
  border: 1px solid
    rgba(99,102,241,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #818cf8;
  margin: 0 auto 16px;
}
.fems-step-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.fems-step-card p {
  font-size: 13px;
  color: rgba(232,232,255,0.5);
  line-height: 1.65;
  margin: 0;
}

/* ══ PRICING ══ */
.fems-pricing-section {
  padding: 100px 0;
  background: #080808;
}
.fems-price-card {
  background: #0f0f1f;
  border: 1px solid
    rgba(99,102,241,0.12);
  border-radius: 22px;
  padding: 36px 30px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}
.fems-price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px
    rgba(0,0,0,0.4);
}
.fems-price-card-popular {
  background: linear-gradient(
    160deg, #0f0f2a, #1a1a4e
  );
  border-color: rgba(99,102,241,0.3);
  box-shadow: 0 8px 40px
    rgba(99,102,241,0.15);
}
.fems-popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg, #6366f1, #4f46e5
  );
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px
    rgba(99,102,241,0.4);
}
.fems-price-top {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid
    rgba(255,255,255,0.06);
}
.fems-price-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}
.fpi-green {
  background: rgba(76,175,80,0.12);
  color: #4caf50;
  border: 1px solid rgba(76,175,80,0.2);
}
.fpi-purple {
  background: rgba(99,102,241,0.12);
  color: #818cf8;
  border: 1px solid
    rgba(99,102,241,0.2);
}
.fpi-gold {
  background: rgba(240,180,41,0.12);
  color: #f0b429;
  border: 1px solid
    rgba(240,180,41,0.2);
}
.fems-plan-name {
  font-size: 1rem;
  font-weight: 800;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.fems-plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.fems-plan-price span {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.price-purple { color: #818cf8; }
.price-gold { color: #f0b429; }
.fems-plan-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.fems-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.fems-plan-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid
    rgba(255,255,255,0.04);
}
.fems-plan-list li.included {
  color: rgba(232,232,255,0.75);
}
.fems-plan-list li.included i {
  color: #4caf50;
  font-size: 11px;
  flex-shrink: 0;
}
.fems-plan-list li.not-included {
  color: rgba(232,232,255,0.25);
  text-decoration: line-through;
}
.fems-plan-list li.not-included i {
  color: rgba(239,68,68,0.4);
  font-size: 11px;
  flex-shrink: 0;
}
.btn-fems-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-fems-plan-ghost {
  background: rgba(255,255,255,0.05);
  border: 1px solid
    rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}
.btn-fems-plan-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.btn-fems-plan-primary {
  background: linear-gradient(
    135deg, #6366f1, #4f46e5
  );
  color: #fff;
  box-shadow: 0 8px 24px
    rgba(99,102,241,0.4);
}
.btn-fems-plan-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px
    rgba(99,102,241,0.5);
  color: #fff;
}
.btn-fems-plan-gold {
  background: linear-gradient(
    135deg, #f0b429, #d97706
  );
  color: #000;
  box-shadow: 0 8px 24px
    rgba(240,180,41,0.3);
}
.btn-fems-plan-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px
    rgba(240,180,41,0.4);
  color: #000;
}

/* ══ FAQ ══ */
.fems-faq-section {
  padding: 100px 0;
  background: #0d0d1a;
}
.fems-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fems-faq-item {
  background: #0f0f1f;
  border: 1px solid
    rgba(99,102,241,0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
.fems-faq-item.open {
  border-color: rgba(99,102,241,0.3);
}
.fems-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  transition: 0.3s;
}
.fems-faq-q:hover {
  color: #818cf8;
}
.fems-faq-q i {
  color: #6366f1;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.fems-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.fems-faq-a p {
  padding: 0 22px 18px;
  font-size: 13.5px;
  color: rgba(232,232,255,0.55);
  line-height: 1.75;
  margin: 0;
}

/* ══ CTA ══ */
.fems-cta-section {
  padding: 100px 0;
  background: #080808;
}
.fems-cta-inner {
  background: linear-gradient(
    145deg, #0d0d2a,
    #1a1a5e 60%, #0d0d2a
  );
  border: 1px solid
    rgba(99,102,241,0.2);
  border-radius: 28px;
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fems-cta-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(
    circle,
    rgba(99,102,241,0.2),
    transparent 70%
  );
  pointer-events: none;
}
.fems-cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(
    1.8rem, 4.5vw, 2.8rem
  );
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.fems-cta-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.fems-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
}
.fems-cta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  position: relative;
}
.fems-cta-note i {
  color: #6366f1;
  margin-right: 4px;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 991px) {
  .fems-hero {
    padding: 40px 0 60px;
  }
  .fems-dashboard-preview {
    margin-top: 40px;
    padding: 10px;
  }
  .fdp-float { display: none; }
  .fems-cta-inner {
    padding: 50px 24px;
  }
  .fems-feat-card {
    padding: 24px 20px;
  }
  .fems-price-card {
    padding: 30px 22px;
  }
}
@media (max-width: 576px) {
  .fems-hero-btns {
    flex-direction: column;
  }
  .btn-fems-primary,
  .btn-fems-ghost {
    justify-content: center;
  }
  .fems-hero-stats { gap: 20px; }
  .fems-key-points { gap: 8px; }
  .fems-cta-btns {
    flex-direction: column;
  }
  .btn-fems-primary,
  .btn-wa {
    justify-content: center;
  }
  .fdp-balance-row {
    grid-template-columns: 1fr;
  }
  .fems-hero-title {
    font-size: 2rem;
  }
}

/* ══ OFFER BANNER ══ */
.fems-offer-banner {
  background: linear-gradient(
    135deg, #dc2626, #b91c1c
  );
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 32px;
  overflow: hidden;
  position: relative;
}
.fems-offer-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent,
    transparent 10px,
    rgba(255,255,255,0.03) 10px,
    rgba(255,255,255,0.03) 20px
  );
}
.fob-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.fob-tag {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.fob-title {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
  font-family: 'Syne', sans-serif;
}
.fob-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.fob-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.fob-unit {
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  min-width: 52px;
}
.fob-num {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
  font-family: 'Syne', sans-serif;
}
.fob-lbl {
  font-size: 9px;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fob-sep {
  font-size: 20px;
  font-weight: 900;
  color: rgba(255,255,255,0.5);
}

/* ══ BEST VALUE CARD ══ */
.fems-best-card {
  background: linear-gradient(
    135deg, #7c3aed, #4f46e5
  );
  border: 3px solid #fbbf24;
  border-radius: 24px;
  padding: 32px 28px;
  margin-bottom: 32px;
  position: relative;
  box-shadow: 0 16px 48px
    rgba(79,70,229,0.35);
}
.fbc-hot-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fbbf24;
  color: #78350f;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 20px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 12px
    rgba(251,191,36,0.4);
}
.fbc-plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.fbc-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.fbc-price {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  font-family: 'Syne', sans-serif;
  line-height: 1;
}
.fbc-orig {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  font-weight: 600;
}
.fbc-save-tag {
  display: inline-block;
  background: #fbbf24;
  color: #78350f;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.fbc-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}
.fbc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.fbc-features li {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 6px 0;
  border-bottom: 1px solid
    rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.fbc-features li:last-child {
  border-bottom: none;
}
.fbc-features li i {
  color: #fbbf24;
  font-size: 12px;
  flex-shrink: 0;
}
.fbc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: #fff;
  color: #4f46e5;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: all 0.3s;
  font-family: 'Outfit', sans-serif;
}
.fbc-btn:hover {
  background: #fbbf24;
  color: #78350f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px
    rgba(251,191,36,0.4);
}

/* ══ OFFER TAG ON CARDS ══ */
.fems-offer-tag {
  position: absolute;
  top: -12px;
  right: 16px;
  background: linear-gradient(
    135deg, #dc2626, #b91c1c
  );
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px
    rgba(220,38,38,0.4);
}

/* ══ ORIG PRICE ON CARDS ══ */
.fems-orig-price {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  font-weight: 600;
  margin-bottom: 2px;
}

/* ══ EXTRA MEMBER NOTE ══ */
.fems-extra-mem {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  margin-top: 4px;
}

/* ══ GOLD PLAN PRICE ══ */
.price-gold {
  background: linear-gradient(
    135deg, #d97706, #f0b429
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══ GOLD PLAN BTN ══ */
.btn-fems-plan-gold {
  background: linear-gradient(
    135deg, #d97706, #f0b429
  ) !important;
  color: #000 !important;
  border: none !important;
}
.btn-fems-plan-gold:hover {
  box-shadow: 0 8px 24px
    rgba(240,180,41,0.4) !important;
  transform: translateY(-2px);
  color: #000 !important;
}

/* ══ MEMBER NOTE ══ */
.fems-member-note {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.fems-member-note i {
  color: #818cf8;
}
.fems-member-note strong {
  color: rgba(255,255,255,0.6);
}

/* ══ HERO — Free Note UPDATE ══ */
.fems-free-note {
  display: none !important;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 576px) {
  .fob-inner {
    flex-direction: column;
    text-align: center;
  }
  .fob-timer {
    justify-content: center;
  }
  .fems-best-card {
    padding: 28px 18px;
  }
  .fbc-price {
    font-size: 32px;
  }
}