/* ==========================================================================
   Jake Replicas - Premium Luxury 1:1 Replicas Landing Page
   Modern Purple Glassmorphism & High-Converting Luxury Design
   ========================================================================== */

:root {
  /* Dark Theme Colors */
  --bg-dark: #0b0517;
  --bg-dark-card: rgba(22, 13, 41, 0.85);
  --bg-dark-glow: rgba(139, 92, 246, 0.25);
  
  /* Light Theme Colors (Lavender & White) */
  --bg-light: #f7f4fb;
  --bg-light-card: #ffffff;
  --border-light-card: rgba(124, 58, 237, 0.12);
  --shadow-light-card: 0 10px 30px rgba(124, 58, 237, 0.06);
  
  /* Brand Accent Colors */
  --purple-primary: #7c3aed;
  --purple-hover: #6d28d9;
  --purple-light: #f3e8ff;
  --purple-border: #ddd6fe;
  --purple-text: #6b21a8;
  --purple-gradient: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #c084fc 100%);
  
  --yellow-accent: #f59e0b;
  --yellow-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  --yellow-glow: rgba(245, 158, 11, 0.4);
  
  --whatsapp-color: #25d366;
  --whatsapp-dark: #128c7e;
  --whatsapp-gradient: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  --whatsapp-glow: rgba(37, 211, 102, 0.35);
  
  /* Text Colors */
  --text-dark-title: #ffffff;
  --text-dark-sub: #cbd5e1;
  --text-light-title: #1e1b4b;
  --text-light-sub: #475569;
  --text-muted: #94a3b8;
  
  /* Fonts & Radius */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  
  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-dark-sub);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sections */
.section {
  padding: 90px 0;
  position: relative;
}

.section-light {
  background-color: var(--bg-light);
  color: var(--text-light-sub);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-dark-sub);
  background-image: radial-gradient(circle at 50% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
}

/* Header Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 5, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
  padding: 14px 0;
  transition: var(--transition);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--purple-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.nav-links a:hover {
  color: #c084fc;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Badges & Section Tags */
.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-light .section-tag {
  background: var(--purple-light);
  border: 1px solid var(--purple-border);
  color: var(--purple-primary);
}

.section-dark .section-tag {
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 14px;
  text-align: center;
}

.section-light .section-title {
  color: var(--text-light-title);
}

.section-dark .section-title {
  color: var(--text-dark-title);
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.section-light .section-subtitle {
  color: var(--text-light-sub);
}

.section-dark .section-subtitle {
  color: var(--text-dark-sub);
}

/* ==========================================================================
   BUTTONS: Purple, Yellow & WhatsApp
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  user-select: none;
  white-space: nowrap;
}

.btn-purple {
  background: var(--purple-gradient);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.btn-purple:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.5);
}

.btn-yellow {
  background: var(--yellow-gradient);
  color: #1e1b4b;
  box-shadow: 0 8px 24px var(--yellow-glow);
}

.btn-yellow:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.6);
}

.btn-whatsapp {
  background: var(--whatsapp-gradient);
  color: #ffffff;
  box-shadow: 0 8px 24px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  padding-top: 155px;
  padding-bottom: 85px;
  background-color: var(--bg-dark);
  overflow: hidden;
  text-align: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image backdrop */
.hero-bg-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero_luxury_bg.jpg');
  background-size: cover;
  background-position: center 32%;
  background-repeat: no-repeat;
  opacity: 0.40;
  transform: scale(1.02);
  filter: contrast(1.08) brightness(0.92);
  pointer-events: none;
  z-index: 1;
}

/* Luxury purple & dark cinematic gradient overlays */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 38%, rgba(124, 58, 237, 0.22) 0%, rgba(11, 5, 23, 0.72) 58%, #0b0517 96%),
    linear-gradient(180deg, rgba(11, 5, 23, 0.75) 0%, rgba(11, 5, 23, 0.2) 35%, rgba(11, 5, 23, 0.65) 75%, #0b0517 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  background: rgba(124, 58, 237, 0.22);
  border: 1px solid rgba(192, 132, 252, 0.4);
  color: #f3e8ff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.25);
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.22;
  color: #ffffff;
  max-width: 950px;
  margin: 0 auto 22px auto;
  letter-spacing: -0.015em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero-title-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: none;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e2e8f0;
  max-width: 740px;
  margin: 0 auto 38px auto;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* Hero Trust Bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 16px 20px;
  background: rgba(22, 13, 41, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
}

.trust-item:hover {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
}

.trust-icon {
  width: 22px;
  height: 22px;
  color: #c084fc;
}

/* ==========================================================================
   PRODUCT GALLERY GRID (Light Section)
   ========================================================================== */

.category-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--purple-border);
  background: #ffffff;
  color: var(--text-light-sub);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--purple-primary);
  color: #ffffff;
  border-color: var(--purple-primary);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--bg-light-card);
  border: 1px solid var(--border-light-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple-primary);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.15);
}

.product-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
  background: #f1f5f9;
}

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

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(124, 58, 237, 0.9);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-light-title);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-spec {
  font-size: 0.82rem;
  color: var(--text-light-sub);
  margin-bottom: 14px;
}

.product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}

.product-status {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--whatsapp-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--whatsapp-color);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--whatsapp-color);
}

.btn-card-inquire {
  background: var(--purple-light);
  color: var(--purple-primary);
  border: 1px solid var(--purple-border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-card-inquire:hover {
  background: var(--purple-primary);
  color: #ffffff;
}

/* ==========================================================================
   TRANSPARENCY & PROCESS SECTION
   ========================================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.process-card {
  background: #ffffff;
  border: 1px solid var(--border-light-card);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-light-card);
  transition: var(--transition);
  position: relative;
  text-align: center;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple-primary);
}

.step-num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--purple-primary);
  background: var(--purple-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.process-icon {
  width: 48px;
  height: 48px;
  background: var(--purple-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: 0 auto 18px auto;
}

.process-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-light-title);
  margin-bottom: 8px;
}

.process-desc {
  font-size: 0.88rem;
  color: var(--text-light-sub);
  line-height: 1.5;
}

.transparency-banner {
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.transparency-banner-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--purple-text);
}

/* ==========================================================================
   VIDEO INSPECTION SECTION
   ========================================================================== */

.video-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.video-tab-btn {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--purple-border);
  background: #ffffff;
  color: var(--text-light-sub);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.video-tab-btn:hover, .video-tab-btn.active {
  background: var(--purple-primary);
  color: #ffffff;
  border-color: var(--purple-primary);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.video-card {
  background: #ffffff;
  border: 1px solid var(--border-light-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
}

.video-player-wrap {
  position: relative;
  width: 100%;
  padding-top: 68%; /* Responsive video aspect ratio */
  background: #07030e;
  overflow: hidden;
  cursor: pointer;
}

.video-player-wrap video.qc-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: var(--purple-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
  transition: var(--transition);
  pointer-events: none;
  z-index: 2;
}

.video-player-wrap:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-player-wrap.playing .video-play-btn {
  opacity: 0;
  visibility: hidden;
}

.duration-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  pointer-events: none;
  z-index: 2;
}

.video-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-cat-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--purple-primary);
  background: var(--purple-light);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.video-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text-light-title);
  margin-bottom: 8px;
  line-height: 1.35;
}

.video-desc {
  font-size: 0.84rem;
  color: var(--text-light-sub);
  margin-bottom: 16px;
  line-height: 1.45;
}

/* ==========================================================================
   WHY CHOOSE US (Dark Section)
   ========================================================================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.feature-card {
  background: rgba(22, 13, 41, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow-accent);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-accent);
  margin-bottom: 18px;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-dark-sub);
  line-height: 1.5;
}

/* ==========================================================================
   QUALITY TIERS SECTION
   ========================================================================== */

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.tier-card {
  background: #ffffff;
  border: 1px solid var(--border-light-card);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow-light-card);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.tier-card.featured {
  border: 2px solid var(--purple-primary);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.2);
  transform: scale(1.03);
  z-index: 2;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple-gradient);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
}

.tier-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-light-title);
  margin-bottom: 8px;
}

.tier-subtitle {
  font-size: 0.88rem;
  color: var(--text-light-sub);
  margin-bottom: 24px;
}

.tier-features {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-features li {
  font-size: 0.92rem;
  color: var(--text-light-title);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tier-features svg {
  width: 18px;
  height: 18px;
  color: var(--purple-primary);
  flex-shrink: 0;
}

.tier-btn {
  margin-top: auto;
  width: 100%;
}

/* ==========================================================================
   SECURE PAYMENT SYSTEM SECTION (Dark Section)
   ========================================================================== */

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.payment-card {
  background: rgba(22, 13, 41, 0.7);
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.payment-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 132, 252, 0.6);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.25);
}

.payment-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35) 0%, rgba(168, 85, 247, 0.15) 100%);
  border: 1px solid rgba(192, 132, 252, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.2);
}

.payment-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.payment-card-desc {
  font-size: 0.86rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 18px;
}

.payment-tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.payment-badge {
  background: rgba(124, 58, 237, 0.22);
  border: 1px solid rgba(192, 132, 252, 0.35);
  color: #e9d5ff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.payment-security-banner {
  background: rgba(22, 13, 41, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  backdrop-filter: blur(12px);
}

.payment-security-banner .security-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
  font-size: 0.95rem;
  max-width: 720px;
}

.payment-security-banner .security-info svg {
  color: #22c55e;
  flex-shrink: 0;
}

/* ==========================================================================
   CUSTOMER REVIEWS & CHAT PROOFS (Light Section with Swiper)
   ========================================================================== */

.reviews-swiper {
  width: 100%;
  padding: 10px 10px 50px 10px;
  overflow: hidden;
  position: relative;
}

.chat-proof-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 8px 4px;
}

.chat-proof-img-wrap {
  width: 100%;
  max-width: 330px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: var(--transition);
}

.chat-proof-img-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.18);
  border-color: var(--purple-primary);
}

.chat-proof-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.reviews-swiper .swiper-pagination {
  bottom: 12px;
}

.reviews-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  opacity: 1;
  transition: var(--transition);
}

.reviews-swiper .swiper-pagination-bullet-active {
  background: var(--purple-primary);
  width: 24px;
  border-radius: var(--radius-pill);
}

.reviews-swiper .swiper-button-prev,
.reviews-swiper .swiper-button-next {
  color: var(--purple-primary);
  background: rgba(255, 255, 255, 0.95);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.reviews-swiper .swiper-button-prev:hover,
.reviews-swiper .swiper-button-next:hover {
  background: var(--purple-primary);
  color: #ffffff;
}

.reviews-swiper .swiper-button-prev:after,
.reviews-swiper .swiper-button-next:after {
  font-size: 16px;
  font-weight: 800;
}

/* ==========================================================================
   CATALOGUE ACCESS BANNER (Dark Section)
   ========================================================================== */

.catalogue-banner {
  background: radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.3) 0%, rgba(14, 6, 27, 0.95) 70%);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.catalogue-title {
  font-size: 2.6rem;
  line-height: 1.25;
}

.catalogue-checklist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 24px 0 36px 0;
  flex-wrap: wrap;
  font-size: 1rem;
  font-weight: 700;
  color: #e9d5ff;
}

.btn-catalogue-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  box-sizing: border-box;
  padding: 18px 40px;
  font-size: 1.05rem;
  font-weight: 800;
  white-space: normal;
  text-align: center;
  word-break: break-word;
  line-height: 1.35;
}

/* ==========================================================================
   FAQ ACCORDION SECTION (Light Section)
   ========================================================================== */

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light-card);
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light-title);
  cursor: pointer;
  text-align: left;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--purple-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-light-sub);
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer-section {
  background: #07030e;
  border-top: 1px solid rgba(139, 92, 246, 0.15);
  padding: 60px 0 40px 0;
  text-align: center;
}

.footer-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 24px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition-bounce);
}

.floating-whatsapp:hover {
  transform: scale(1.12);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .product-grid, .process-grid, .video-grid, .feature-grid, .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-section {
    padding-top: 130px;
    padding-bottom: 70px;
    min-height: auto;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .tiers-grid {
    grid-template-columns: 1fr;
  }
  .tier-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  /* Mobile 1 Row 2 Columns for Product Gallery per User Requirement */
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  
  .product-card {
    border-radius: var(--radius-sm);
  }

  .product-info {
    padding: 12px 10px;
  }

  .product-title {
    font-size: 0.86rem;
    line-height: 1.25;
    margin-bottom: 4px;
  }

  .product-spec {
    font-size: 0.72rem;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .product-badge {
    font-size: 0.66rem;
    padding: 3px 8px;
    top: 6px;
    left: 6px;
  }

  .product-card-footer {
    padding-top: 6px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .product-status {
    font-size: 0.72rem;
    justify-content: center;
  }

  .btn-card-inquire {
    width: 100%;
    text-align: center;
    padding: 6px 8px;
    font-size: 0.76rem;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  /* Enforce 2-column mobile layout for gallery */
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .process-grid, .feature-grid, .payment-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .hero-section {
    padding-top: 110px;
    padding-bottom: 50px;
    min-height: auto;
  }

  .hero-title {
    font-size: 1.85rem;
    letter-spacing: -0.01em;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    margin-bottom: 26px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .nav-links {
    display: none;
  }

  .catalogue-banner {
    padding: 36px 16px;
    border-radius: var(--radius-lg);
  }

  .catalogue-title {
    font-size: 1.75rem;
  }

  .catalogue-checklist {
    font-size: 0.88rem;
    gap: 14px;
    margin: 18px 0 24px 0;
  }

  /* Prevent Catalogue CTA button from overflowing on mobile */
  .btn-catalogue-cta {
    width: 100%;
    max-width: 100%;
    padding: 14px 14px;
    font-size: 0.92rem;
    letter-spacing: 0.2px;
    box-sizing: border-box;
  }

  .btn-catalogue-cta span {
    line-height: 1.3;
    word-break: break-word;
  }

  .transparency-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px 16px;
  }

  .transparency-banner .btn {
    width: 100%;
  }

  .payment-security-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px 16px;
  }

  .payment-security-banner .btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .product-grid {
    gap: 8px;
  }

  .product-info {
    padding: 8px 6px;
  }

  .product-title {
    font-size: 0.8rem;
  }

  .product-spec {
    font-size: 0.68rem;
  }

  .btn-catalogue-cta {
    font-size: 0.84rem;
    padding: 12px 10px;
    gap: 8px;
  }

  .btn-catalogue-cta svg {
    width: 18px;
    height: 18px;
  }
}
