/* ==========================================
   BigBerry Ranks
   Design: Dark theme, purple/cyan accents
   ========================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0b0d17;
  color: #e4e6f0;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ---------- BACKGROUND ANIMATION ---------- */
.bg-animation {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-orbe {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: bgOrbeFloat 20s ease-in-out infinite;
}

.bg-orbe--1 {
  width: 500px;
  height: 500px;
  background: rgba(124, 58, 237, 0.25);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.bg-orbe--2 {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.2);
  bottom: -10%;
  right: -5%;
  animation-delay: -5s;
}

.bg-orbe--3 {
  width: 350px;
  height: 350px;
  background: rgba(6, 182, 212, 0.15);
  top: 50%;
  left: 60%;
  animation-delay: -10s;
}

.bg-orbe--4 {
  width: 300px;
  height: 300px;
  background: rgba(168, 85, 247, 0.15);
  top: 20%;
  right: 10%;
  animation-delay: -15s;
}

@keyframes bgOrbeFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -40px) scale(1.1); }
  50% { transform: translate(-30px, 60px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.05); }
}

/* ---------- CUSTOM SCROLLBAR ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0b0d17; }
::-webkit-scrollbar-thumb { background: #2a2d45; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #7c3aed; }

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: #e4e6f0;
  border: 1.5px solid rgba(228, 230, 240, 0.2);
}
.btn--outline:hover {
  border-color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
  transform: translateY(-2px);
}

.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ---------- SECTION ---------- */
.section {
  padding: 5rem 0;
  position: relative;
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section__tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  background: rgba(124, 58, 237, 0.12);
  color: #a78bfa;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section__title span { background: linear-gradient(135deg, #7c3aed, #3b82f6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.section__desc {
  color: #9498b0;
  font-size: 1.05rem;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}
.header.scrolled {
  background: rgba(11, 13, 23, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(124, 58, 237, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav__logo {
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
}
.nav__logo i { color: #7c3aed; }
.nav__logo span { color: #3b82f6; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__list {
  display: flex;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #9498b0;
  border-radius: 8px;
  transition: all 0.25s ease;
}
.nav__link:hover, .nav__link.active-link {
  color: #fff;
  background: rgba(124, 58, 237, 0.1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__auth-btn,
.nav__search-btn, .nav__cart-btn {
  background: transparent;
  border: none;
  color: #9498b0;
  font-size: 1.15rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
}
.nav__search-btn:hover, .nav__cart-btn:hover {
  color: #fff;
  background: rgba(124, 58, 237, 0.1);
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(4px, -4px);
}

.nav__toggle, .nav__close {
  display: none;
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    background: rgba(11, 13, 23, 0.98);
    backdrop-filter: blur(20px);
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    gap: 1.5rem;
    align-items: stretch;
  }
  .nav__menu.show-menu { right: 0; }
  .nav__list { flex-direction: column; gap: 0.25rem; }
  .nav__link { padding: 0.8rem 1rem; font-size: 1rem; }
  .nav__toggle { display: block; }
  .nav__close { display: block; position: absolute; top: 1.2rem; right: 1.5rem; font-size: 1.6rem; }
  .nav__actions { justify-content: flex-start; }
}

/* ==========================================
   SEARCH OVERLAY
   ========================================== */
.search-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(11, 13, 23, 0.95);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.search-overlay__content {
  width: 100%;
  max-width: 550px;
  padding: 0 1.5rem;
}

.search-overlay__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  float: right;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.search-overlay__close:hover { opacity: 1; }

.search-overlay__form {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  clear: both;
}

.search-overlay__input {
  flex: 1;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1.5px solid rgba(124, 58, 237, 0.25);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1.1rem;
  outline: none;
  transition: border-color 0.3s;
}
.search-overlay__input:focus { border-color: #7c3aed; }
.search-overlay__input::placeholder { color: #5a5d7a; }

.search-overlay__submit {
  padding: 0 1.25rem;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  color: #fff;
  font-size: 1.1rem;
}

.search-overlay__results {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.search-overlay__result-item {
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  color: #e4e6f0;
  transition: background 0.2s;
  cursor: pointer;
}
.search-overlay__result-item:hover { background: rgba(124, 58, 237, 0.12); }
.search-overlay__result-item span { color: #9498b0; font-size: 0.85rem; }

/* ==========================================
   CART SLIDEOUT
   ========================================== */
.cart-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart {
  position: fixed;
  top: 0; right: -400px;
  width: 400px;
  max-width: 100vw;
  height: 100%;
  background: #12142a;
  z-index: 1600;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}
.cart.active { right: 0; }

.cart__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart__header h3 { font-size: 1.2rem; display: flex; align-items: center; gap: 0.5rem; }

.cart__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.cart__close:hover { opacity: 1; }

.cart__items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart__empty { text-align: center; color: #5a5d7a; margin-top: 2rem; }

.cart__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
}
.cart__item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cart__item-info { flex: 1; }
.cart__item-name { font-weight: 600; font-size: 0.95rem; }
.cart__item-price { color: #a78bfa; font-size: 0.85rem; }
.cart__item-remove {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 1rem;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.cart__item-remove:hover { opacity: 1; }

.cart__footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cart__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cart__checkout-btn { width: 100%; justify-content: center; }

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 3rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124, 58, 237, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(59, 130, 246, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(124, 58, 237, 0.06), transparent);
  z-index: 0;
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__content { order: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(124, 58, 237, 0.12);
  color: #a78bfa;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero__title span { background: linear-gradient(135deg, #7c3aed, #3b82f6, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero__subtitle {
  font-size: 1.1rem;
  color: #9498b0;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
}

.hero__stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: #5a5d7a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero visual cards */
.hero__visual {
  order: 2;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__card {
  position: absolute;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: float 6s ease-in-out infinite;
}
.hero__card i { font-size: 2.5rem; }
.hero__card--1 {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}
.hero__card--2 {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  bottom: 25%;
  right: 25%;
  animation-delay: 2s;
}
.hero__card--3 {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  top: 30%;
  left: 5%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: #5a5d7a;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: bounce-down 2s infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 968px) {
  .hero__container { grid-template-columns: 1fr; text-align: center; }
  .hero__content { order: 2; }
  .hero__visual { order: 1; min-height: 300px; }
  .hero__title { font-size: 2.5rem; }
  .hero__subtitle { margin: 0 auto 2rem; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__card--1 { top: 0; right: 10%; }
  .hero__card--2 { bottom: 15%; right: 15%; }
  .hero__card--3 { top: 20%; left: 5%; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .hero__stats { gap: 1.5rem; }
  .hero__stat-num { font-size: 1.4rem; }
  .hero__card { padding: 1rem 1.5rem; font-size: 0.9rem; }
  .hero__card i { font-size: 1.8rem; }
}

/* ==========================================
   RANKS CATALOG
   ========================================== */
.ranks { background: #0b0d17; }

.ranks__tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.ranks__tab {
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  background: transparent;
  color: #9498b0;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.25s;
}
.ranks__tab:hover { border-color: rgba(124, 58, 237, 0.4); color: #fff; }
.ranks__tab.active {
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  border-color: transparent;
  color: #fff;
}

.ranks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.rank-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.rank-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.35s;
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(59,130,246,0.08));
}
.rank-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.rank-card:hover::before { opacity: 1; }

.rank-card.popular {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.08);
}
.rank-card.popular .rank-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.rank-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  z-index: 1;
}

.rank-card__tier { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 0.25rem; position: relative; z-index: 1; }
.rank-card__name { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.75rem; position: relative; z-index: 1; }

.rank-card__price {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.rank-card__price span { font-size: 0.9rem; font-weight: 400; color: #5a5d7a; }

.rank-card__perks {
  text-align: left;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative; z-index: 1;
}
.rank-card__perk {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #9498b0;
}
.rank-card__perk i { color: #22c55e; font-size: 0.75rem; width: 16px; }

.rank-card .btn { width: 100%; justify-content: center; position: relative; z-index: 1; }

/* VIP tier */
.rank-card--vip .rank-card__icon,
.rank-card--vip.cart__item-icon,
.rank-card--vip.checkout__summary-icon { background: linear-gradient(135deg, #06b6d4, #0891b2); color: #fff; }
.rank-card--vip .rank-card__tier { color: #22d3ee; }

/* VIP+ tier */
.rank-card--vip-plus .rank-card__icon,
.rank-card--vip-plus.cart__item-icon,
.rank-card--vip-plus.checkout__summary-icon { background: linear-gradient(135deg, #14b8a6, #0d9488); color: #fff; }
.rank-card--vip-plus .rank-card__tier { color: #2dd4bf; }

/* MVP tier */
.rank-card--mvp .rank-card__icon,
.rank-card--mvp.cart__item-icon,
.rank-card--mvp.checkout__summary-icon { background: linear-gradient(135deg, #a855f7, #7c3aed); color: #fff; }
.rank-card--mvp .rank-card__tier { color: #c084fc; }

/* MVP+ tier */
.rank-card--mvp-plus .rank-card__icon,
.rank-card--mvp-plus.cart__item-icon,
.rank-card--mvp-plus.checkout__summary-icon { background: linear-gradient(135deg, #ec4899, #db2777); color: #fff; }
.rank-card--mvp-plus .rank-card__tier { color: #f472b6; }

/* Elite tier (MVP++) */
.rank-card--elite .rank-card__icon,
.rank-card--elite.cart__item-icon,
.rank-card--elite.checkout__summary-icon { background: linear-gradient(135deg, #f59e0b, #ef4444); color: #fff; }
.rank-card--elite .rank-card__tier { color: #fbbf24; }

/* ==========================================
   FEATURES
   ========================================== */
.features {
  background: rgba(255,255,255,0.02);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.features__card {
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(30px);
}
.features__card.reveal {
  opacity: 1;
  transform: translateY(0);
}
.features__card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.features__card.reveal:hover { transform: translateY(-5px); }

.features__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(59,130,246,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #a78bfa;
  margin-bottom: 1.25rem;
}

.features__card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.features__card p {
  color: #9498b0;
  font-size: 0.92rem;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials__slider {
  overflow: hidden;
  max-width: 650px;
  margin: 0 auto;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  text-align: center;
}
.testimonial-card__stars {
  color: #f59e0b;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.testimonial-card__text {
  font-size: 1.05rem;
  color: #c8cae0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.testimonial-card__name { font-weight: 600; }
.testimonial-card__role { font-size: 0.8rem; color: #5a5d7a; }

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #fff;
  font-size: 1rem;
  transition: all 0.25s;
}
.testimonials__btn:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: #7c3aed;
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}
.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  transition: all 0.25s;
  padding: 0;
}
.testimonials__dot.active { background: #7c3aed; width: 24px; border-radius: 4px; }

/* ==========================================
   FAQ
   ========================================== */
.faq__grid {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.active { border-color: rgba(124, 58, 237, 0.3); }

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: #e4e6f0;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: color 0.3s;
}
.faq-item__question:hover { color: #a78bfa; }
.faq-item__question i {
  transition: transform 0.3s;
  color: #5a5d7a;
  font-size: 0.85rem;
}
.faq-item.active .faq-item__question i { transform: rotate(180deg); color: #7c3aed; }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: #9498b0;
  font-size: 0.93rem;
  line-height: 1.7;
}
.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(124,58,237,0.12), transparent),
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(59,130,246,0.08), transparent);
  text-align: center;
}

.cta-banner__content {
  max-width: 550px;
  margin: 0 auto;
}
.cta-banner__content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-banner__content h2 span { background: linear-gradient(135deg, #7c3aed, #3b82f6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-banner__content p {
  color: #9498b0;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact__item i {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(124,58,237,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  font-size: 1.1rem;
}
.contact__item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.contact__item p, .contact__item a { font-size: 0.88rem; color: #9498b0; transition: color 0.2s; }
.contact__item a:hover { color: #a78bfa; }

.contact__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.contact__social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9498b0;
  font-size: 1.1rem;
  transition: all 0.25s;
}
.contact__social-link:hover {
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  color: #fff;
  transform: translateY(-2px);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact__input, .contact__textarea {
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.contact__input:focus, .contact__textarea:focus { border-color: #7c3aed; }
.contact__input::placeholder, .contact__textarea::placeholder { color: #5a5d7a; }

@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form-row { grid-template-columns: 1fr; }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #080a14;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__logo {
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer__logo i { color: #7c3aed; }
.footer__logo span { color: #3b82f6; }

.footer__brand p { color: #5a5d7a; font-size: 0.9rem; max-width: 280px; }

.footer__col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #fff;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul a {
  color: #5a5d7a;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer__col ul a:hover { color: #a78bfa; }

.footer__col--newsletter p { color: #5a5d7a; font-size: 0.88rem; margin-bottom: 1rem; }

.footer__newsletter {
  display: flex;
  gap: 0.5rem;
}
.footer__input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}
.footer__input:focus { border-color: #7c3aed; }
.footer__input::placeholder { color: #5a5d7a; }

.footer__btn {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  color: #fff;
  transition: opacity 0.2s;
}
.footer__btn:hover { opacity: 0.9; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 1.5rem 0;
  text-align: center;
  color: #5a5d7a;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ==========================================
   AUTH MODAL
   ========================================== */
.modal--auth { max-width: 440px; }

.auth__tabs {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.auth__tab {
  flex: 1;
  padding: 0.65rem 1rem;
  border: none;
  background: transparent;
  color: #5a5d7a;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s;
}
.auth__tab.active {
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  color: #fff;
}

.auth__form { display: flex; flex-direction: column; gap: 1rem; }

.auth__form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #c8cae0;
}

.auth__submit { width: 100%; justify-content: center; }

.auth__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
  color: #5a5d7a;
  font-size: 0.82rem;
}
.auth__divider::before,
.auth__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.auth__social { display: flex; gap: 0.75rem; }
.auth__social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  color: #e4e6f0;
  font-weight: 500;
  font-size: 0.88rem;
  transition: all 0.25s;
}
.auth__social-btn:hover { border-color: rgba(124, 58, 237, 0.4); background: rgba(124,58,237,0.08); }
.auth__social-btn i { font-size: 1.1rem; }

/* ==========================================
   CHECKOUT MODAL
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 520px;
  max-width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  background: #12142a;
  border-radius: 24px;
  z-index: 2100;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  border: 1px solid rgba(255,255,255,0.06);
}
.modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.modal__header h2 { font-size: 1.2rem; display: flex; align-items: center; gap: 0.5rem; }
.modal__header h2 i { color: #22c55e; }

.modal__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.modal__close:hover { opacity: 1; }

.modal__body { padding: 2rem; }

/* Steps */
.checkout__steps {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.checkout__step {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255,255,255,0.04);
  color: #5a5d7a;
  transition: all 0.3s;
}
.checkout__step.active { background: linear-gradient(135deg, #7c3aed, #3b82f6); color: #fff; }

.checkout__step-content h3 { margin-bottom: 1rem; font-size: 1.1rem; }

.hidden { display: none; }

.checkout__summary-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  margin-bottom: 1rem;
}
.checkout__summary-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.checkout__summary-info { flex: 1; }
.checkout__summary-name { font-weight: 600; }
.checkout__summary-price { color: #a78bfa; }

.checkout__btn-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.checkout__btn-row .btn { flex: 1; justify-content: center; }

.checkout__payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.checkout__payment-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.2s;
}
.checkout__payment-option:hover { border-color: rgba(124, 58, 237, 0.3); }
.checkout__payment-option:has(input:checked) {
  border-color: #7c3aed;
  background: rgba(124, 58, 237, 0.08);
}
.checkout__payment-option input { accent-color: #7c3aed; }
.checkout__payment-option i { font-size: 1.5rem; width: 32px; text-align: center; }

/* ==========================================
   TOAST
   ========================================== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  background: #12142a;
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: #e4e6f0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  transform: translateY(calc(100% + 3rem));
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 3000;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast i { color: #22c55e; font-size: 1.2rem; }

/* ==========================================
   PAGE BANNER (inner pages)
   ========================================== */
.page-banner {
  padding: 8rem 0 3rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(124,58,237,0.1), transparent),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(59,130,246,0.06), transparent);
}
.page-banner__title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.page-banner__title span { background: linear-gradient(135deg, #7c3aed, #3b82f6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-banner__subtitle {
  color: #9498b0;
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-banner { padding: 6rem 0 2rem; }
  .page-banner__title { font-size: 2rem; }
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 900;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4); }

/* ==========================================
   SCROLL REVEAL ANIMATION
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .section__title { font-size: 1.8rem; }
  .ranks__grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
}

/* ==========================================
   PLACEHOLDER RANK IMAGES (gradient icons)
   ========================================== */
.rank-icon-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  color: #fff;
}