/* Video Hub Landing Page CSS - Dark & Dynamic Aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #0a0406;
  --bg-card: #140a0e;
  --bg-card-hover: #1c0e14;
  --bg-glass: rgba(26, 12, 18, 0.7);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 174, 0, 0.3);
  
  --color-gold: #ffbe2e;
  --color-yellow: #ffe359;
  --color-orange: #ff7d1a;
  --color-red: #ff3e24;
  --color-green: #10b981;
  --color-purple: #a855f7;
  
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 62, 36, 0.15), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(255, 190, 46, 0.08), transparent 30%),
    radial-gradient(circle at 20% 70%, rgba(168, 85, 247, 0.06), transparent 35%);
  color: #f1f5f9;
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Container */
.container {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 16px 80px 16px;
  width: 100%;
}

@media (min-width: 768px) {
  .container {
    max-width: 740px;
    padding: 0 24px 60px 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1140px;
    padding: 0 32px 80px 32px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1240px;
  }
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-highlight {
  color: var(--color-gold);
  background: linear-gradient(135deg, #FFE359 0%, #FFAE00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

.dot-online {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-green);
  box-shadow: 0 0 8px var(--color-green);
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Hero Section */
.hero-card {
  background: linear-gradient(180deg, rgba(30, 14, 20, 0.8) 0%, rgba(15, 7, 10, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 24px 18px;
  margin-top: 16px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.hero-sale-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 62, 36, 0.15);
  border: 1px solid rgba(255, 62, 36, 0.4);
  color: #ff8577;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.title-line-1 {
  color: #fff6ea;
  display: block;
}

.title-line-2 {
  background: linear-gradient(180deg, #FFF099 0%, #FFC82E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.title-line-3 {
  background: linear-gradient(180deg, #FF9E2E 0%, #FF3E24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-subtitle {
  color: #cbd5e1;
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.45;
  max-width: 540px;
  margin: 0 auto 24px auto;
  font-weight: 400;
}

/* Primary CTA Button */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 340px;
  padding: 16px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #FFC82E 0%, #FF6B00 100%);
  color: #0b0500;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 130, 0, 0.4);
  transition: all 0.25s ease;
  text-decoration: none;
  margin-bottom: 24px;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 130, 0, 0.6);
  background: linear-gradient(135deg, #FFD452 0%, #FF7A14 100%);
}

/* Deal Ending Soon Box */
.timer-card {
  background: radial-gradient(circle at 50% 0%, rgba(255, 180, 0, 0.15), rgba(15, 8, 11, 0.8));
  border: 1.5px solid rgba(255, 190, 46, 0.5);
  border-radius: 20px;
  padding: 16px;
  margin: 0 auto 20px auto;
  max-width: 380px;
  box-shadow: 0 0 20px rgba(255, 174, 0, 0.15);
}

.timer-header {
  color: #FFC82E;
  font-family: var(--font-heading);
  font-size: clamp(11px, 3vw, 14px);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.timer-display {
  font-family: var(--font-heading);
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Trust Pills */
.trust-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-item {
  font-size: 13px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

/* Hero Stats Counter Bar */
.hero-stats-bar {
  background: linear-gradient(90deg, rgba(80, 10, 20, 0.5) 0%, rgba(50, 15, 10, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.stat-label {
  font-size: 11px;
  color: #a0aec0;
  font-weight: 500;
  margin-top: 2px;
}

/* Section Headings */
.section-title-wrap {
  text-align: center;
  margin: 40px 0 20px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.section-subtitle {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 400;
}

/* Demo Preview Gallery */
.demo-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 36px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 380px) {
  .demo-preview-grid {
    gap: 6px;
  }
}

@media (min-width: 768px) {
  .demo-preview-grid {
    gap: 20px;
  }
}

.demo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--bg-card);
  cursor: pointer;
  aspect-ratio: 4 / 5;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.demo-card:hover {
  transform: scale(1.03);
  border-color: var(--color-gold);
}

.demo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.demo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.demo-play-btn {
  background: rgba(255, 190, 46, 0.9);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Plans Grid */
.plans-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 640px) {
  .plans-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .plans-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
  }
}

/* Plan Card Base */
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Corner Ribbons */
.ribbon-banner {
  position: absolute;
  padding: 4px 30px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.ribbon-top-left {
  left: -28px;
  top: 14px;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, #FFE359 0%, #FFAE00 100%);
}

.ribbon-top-right {
  right: -28px;
  top: 14px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #FFE359 0%, #FFAE00 100%);
}

/* Special Bestseller / VIP Plan Borders */
.plan-card.bestseller {
  border: 1.5px solid rgba(255, 190, 46, 0.5);
  box-shadow: 0 0 25px rgba(255, 174, 0, 0.12);
}

.plan-card.vip-elite {
  border: 1.5px solid rgba(255, 190, 46, 0.6);
  box-shadow: 0 0 30px rgba(255, 130, 0, 0.18);
  background: linear-gradient(180deg, #180c10 0%, #0d0508 100%);
}

/* Card Header Components */
.plan-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.plan-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.discount-badge {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-green);
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
}

.plan-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 4.5vw, 26px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: clamp(34px, 7vw, 44px);
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
}

.plan-original-price {
  color: #64748b;
  font-size: clamp(12px, 3vw, 14px);
  text-decoration: line-through;
  font-weight: 500;
}

.plan-period {
  color: #94a3b8;
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 500;
}

/* Features Checklist */
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(12.5px, 2.8vw, 14px);
  color: #e2e8f0;
  font-weight: 500;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.18);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.check-icon.gold {
  background: rgba(255, 190, 46, 0.2);
  color: var(--color-gold);
}

/* Plan Card Buttons */
.btn-plan-action {
  width: 100%;
  padding: 13px 18px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: clamp(13.5px, 3.2vw, 15px);
  font-weight: 800;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.btn-dark-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.btn-dark-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-vibrant-orange {
  background: linear-gradient(135deg, #FF6B00 0%, #FF2E00 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 60, 0, 0.35);
}

.btn-vibrant-orange:hover {
  background: linear-gradient(135deg, #FF7D1A 0%, #FF451A 100%);
  box-shadow: 0 10px 25px rgba(255, 60, 0, 0.5);
  transform: translateY(-1px);
}

.btn-gold-glow {
  background: linear-gradient(135deg, #FFC82E 0%, #FF8500 100%);
  color: #0b0500;
  box-shadow: 0 8px 22px rgba(255, 160, 0, 0.4);
}

.btn-gold-glow:hover {
  background: linear-gradient(135deg, #FFD452 0%, #FF9514 100%);
  box-shadow: 0 10px 28px rgba(255, 160, 0, 0.6);
  transform: translateY(-1px);
}

.bottom-plan-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 16px;
  border-radius: 50px;
  background: linear-gradient(90deg, #FF3E24 0%, #FF8500 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 62, 36, 0.3);
}

/* Instant Delivery Card */
.delivery-assurance-card {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 20px;
  padding: 20px;
  margin: 28px 0;
  display: flex;
  gap: 16px;
  align-items: center;
}

@media (max-width: 480px) {
  .delivery-assurance-card {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
}

.delivery-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.delivery-title {
  color: var(--color-green);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.delivery-desc {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.4;
}

/* Buyer Reviews Section */
.reviews-score-card {
  text-align: center;
  margin-bottom: 24px;
}

.big-rating {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
}

.stars-row {
  color: var(--color-gold);
  font-size: 18px;
  margin: 6px 0;
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 640px) {
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

.review-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 16px;
}

.review-user-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.review-user-name {
  font-weight: 700;
  color: #f1f5f9;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-badge {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-green);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.review-text {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.45;
}

/* Modern FAQ Accordion Styling */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(192, 132, 252, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.faq-item.active {
  border-color: rgba(255, 190, 46, 0.5);
  background: linear-gradient(180deg, rgba(28, 14, 20, 0.9) 0%, rgba(18, 9, 13, 0.95) 100%);
  box-shadow: 0 8px 25px rgba(255, 174, 0, 0.12);
}

.faq-question-btn {
  width: 100%;
  padding: 16px 18px;
  background: transparent;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  outline: none;
  font-family: inherit;
}

.faq-question-btn * {
  pointer-events: none;
}

.faq-question-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gold);
  background: rgba(255, 190, 46, 0.1);
  border: 1px solid rgba(255, 190, 46, 0.2);
  padding: 2px 10px;
  border-radius: 50px;
  width: fit-content;
}

.faq-question-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.35;
}

.faq-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, color 0.3s ease;
}

.faq-chevron {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-wrap {
  transform: rotate(180deg);
  background: rgba(255, 190, 46, 0.15);
  color: var(--color-gold);
  border-color: rgba(255, 190, 46, 0.3);
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer-wrapper {
  max-height: 400px;
}

.faq-answer-content {
  padding: 12px 18px 18px 18px;
  color: #cbd5e1;
  font-size: 13.5px;
  line-height: 1.6;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.faq-answer-content strong {
  color: #ffffff;
}

/* Modal Styling */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #14090d;
  border: 1px solid rgba(255, 190, 46, 0.3);
  border-radius: 24px;
  max-width: 440px;
  width: 100%;
  padding: 24px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 62, 36, 0.25);
  color: #ff3e24;
  border-color: rgba(255, 62, 36, 0.4);
}

.modal-header {
  text-align: center;
  margin-bottom: 20px;
  padding-right: 30px;
  padding-left: 30px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.selected-plan-badge {
  display: inline-block;
  background: rgba(255, 190, 46, 0.15);
  color: var(--color-gold);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 6px;
}

/* Form elements */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  outline: none;
}

.form-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(255, 190, 46, 0.2);
}

/* Payment Options */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.pm-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.pm-item.active {
  border-color: var(--color-gold);
  background: rgba(255, 190, 46, 0.1);
  color: var(--color-gold);
}

/* Lightbox Modal */
.lightbox-modal-content {
  max-width: 600px;
  padding: 12px;
  background: #000;
}

.lightbox-img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* Toast Notifications */
.sales-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(20, 10, 14, 0.95);
  border: 1px solid var(--color-gold);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 90;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: calc(100vw - 80px);
}

@media (max-width: 480px) {
  .sales-toast {
    left: 12px;
    bottom: 16px;
    padding: 10px 12px;
    max-width: calc(100vw - 80px);
  }
}

.sales-toast.show {
  transform: translateY(0);
}

.toast-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.toast-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.toast-sub {
  font-size: 11px;
  color: #94a3b8;
}

/* Traditional Standard Footer Styling */
.site-footer {
  background: linear-gradient(180deg, #12080c 0%, #080305 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding: 40px 0 24px 0;
  width: 100%;
}

.footer-container {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .footer-container {
    max-width: 680px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
  margin-bottom: 28px;
}

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

.footer-col-brand {
  grid-column: 1 / -1;
  text-align: left;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
  margin-bottom: 4px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-about-text {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.footer-trust-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 500;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.footer-col-title::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-gold);
  margin-top: 4px;
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-list li a {
  color: #94a3b8;
  font-size: 12.5px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links-list li a:hover {
  color: var(--color-gold);
  transform: translateX(3px);
}

.footer-link-disabled {
  color: #64748b;
  font-size: 12.5px;
  cursor: not-allowed;
  opacity: 0.6;
  user-select: none;
  display: inline-block;
  pointer-events: none;
}

.footer-small-text {
  color: #94a3b8;
  font-size: 12px;
  margin-bottom: 8px;
}

.footer-payments-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.pay-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.footer-18-pill {
  font-size: 11.5px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pill-18 {
  background: var(--color-red);
  color: #fff;
  font-weight: 900;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 4px;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 11.5px;
  color: #64748b;
}

.footer-copyright strong {
  color: #cbd5e1;
}

/* Floating Fixed Back To Top Corner Icon Button */
.floating-back-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 15, 22, 0.95) 0%, rgba(15, 7, 10, 0.98) 100%);
  border: 1.5px solid rgba(255, 190, 46, 0.5);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 95;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 174, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  outline: none;
}

.floating-back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-back-top:hover {
  transform: translateY(-4px) scale(1.08);
  border-color: var(--color-gold);
  background: linear-gradient(135deg, #FFC82E 0%, #FF8500 100%);
  color: #0b0500;
  box-shadow: 0 12px 30px rgba(255, 160, 0, 0.6);
}

.floating-back-top:active {
  transform: translateY(0) scale(0.95);
}

/* Instant UPI Payment Gateway Styling */
.gateway-header {
  margin-bottom: 16px;
  padding-right: 36px;
  padding-top: 4px;
}

.gateway-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 6px;
}

.gateway-secure-tag {
  font-size: 11px;
  color: #10b981;
  font-weight: 700;
}

.gateway-timer {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: var(--color-gold);
  background: rgba(255, 190, 46, 0.1);
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid rgba(255, 190, 46, 0.2);
}

.gateway-amount-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Dynamic QR Card */
.qr-container-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  margin-bottom: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.qr-code-wrapper {
  width: 180px;
  height: 180px;
  margin: 0 auto 10px auto;
  position: relative;
  border: 3px solid #000;
  border-radius: 14px;
  padding: 8px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.upi-qr-img {
  width: 100%;
  height: 100%;
  display: block;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.qr-hint-text {
  color: #0b0500;
  font-size: 12px;
  font-weight: 700;
}

.btn-download-qr {
  margin-top: 8px;
  background: rgba(16, 185, 129, 0.12);
  color: #0d8a5f;
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-download-qr:hover {
  background: #10b981;
  color: #ffffff;
}

/* 1-Click Mobile UPI App Buttons */
.upi-apps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.upi-app-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 8px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.upi-app-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.upi-app-btn:hover svg {
  transform: scale(1.12);
}

.upi-app-btn:hover,
.upi-app-btn:focus {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.upi-app-btn:active {
  transform: translateY(0) scale(0.96);
}

.gpay-btn {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.2) 0%, rgba(52, 168, 83, 0.18) 100%);
  border-color: rgba(66, 133, 244, 0.5);
  color: #60a5fa;
}

.gpay-btn:hover {
  background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.5);
}

.phonepe-btn {
  background: linear-gradient(135deg, rgba(95, 37, 159, 0.28) 0%, rgba(147, 51, 234, 0.22) 100%);
  border-color: rgba(147, 51, 234, 0.55);
  color: #c084fc;
}

.phonepe-btn:hover {
  background: linear-gradient(135deg, #5f259f 0%, #9333ea 100%);
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.5);
}

.paytm-btn {
  background: linear-gradient(135deg, rgba(0, 185, 245, 0.22) 0%, rgba(0, 47, 108, 0.3) 100%);
  border-color: rgba(0, 185, 245, 0.55);
  color: #38bdf8;
}

.paytm-btn:hover {
  background: linear-gradient(135deg, #00b9f5 0%, #002f6c 100%);
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 185, 245, 0.5);
}

/* UPI Copy Box */
.upi-copy-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.btn-copy-upi {
  background: rgba(255, 190, 46, 0.15);
  color: var(--color-gold);
  border: 1px solid rgba(255, 190, 46, 0.3);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy-upi:hover {
  background: var(--color-gold);
  color: #000;
}

/* Verifying Spinner */
.bank-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 190, 46, 0.2);
  border-top: 4px solid var(--color-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Mobile Ultra-Responsive Fine-Tuning (< 480px) */
@media (max-width: 480px) {
  .header {
    padding: 12px 0;
  }

  .logo {
    font-size: 22px;
  }

  .badge-pill {
    padding: 4px 8px;
    font-size: 11px;
  }

  .hero-card {
    padding: 18px 12px;
    border-radius: 18px;
    margin-top: 10px;
  }

  .hero-sale-tag {
    padding: 4px 10px;
    font-size: 11px;
    margin-bottom: 12px;
  }

  .hero-title {
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .btn-cta-primary {
    padding: 14px 18px;
    font-size: 16px;
    margin-bottom: 16px;
  }

  .timer-card {
    padding: 12px 10px;
  }

  .hero-stats-bar {
    padding: 12px 6px;
    gap: 4px;
    border-radius: 14px;
  }

  .stat-num {
    font-size: 19px;
  }

  .stat-label {
    font-size: 9.5px;
  }

  .plan-card {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .plan-title {
    font-size: 21px;
  }

  .plan-price {
    font-size: 34px;
  }

  .plan-features {
    gap: 9px;
    margin-bottom: 18px;
  }

  .plan-feature-item {
    font-size: 12.5px;
  }

  .btn-plan-action {
    padding: 12px 14px;
    font-size: 13px;
  }

  .review-item {
    padding: 12px;
    border-radius: 14px;
  }

  .review-text {
    font-size: 12px;
  }

  .faq-question-btn {
    padding: 14px 12px;
  }

  .faq-question-title {
    font-size: 13px;
  }

  .faq-answer-content {
    padding: 10px 12px 14px 12px;
    font-size: 12px;
  }

  .site-footer {
    padding: 28px 0 16px 0;
  }

  .footer-col-title {
    font-size: 12.5px;
    margin-bottom: 8px;
  }

  .footer-links-list li a,
  .footer-link-disabled {
    font-size: 11.5px;
  }

  .qr-code-wrapper {
    width: 140px;
    height: 140px;
  }

  .modal-content {
    padding: 16px 12px;
    border-radius: 18px;
  }

  .modal-title {
    font-size: 18px;
  }
}
