/* ============================================================
   PREMIUM SOCIAL MEDIA MARKETPLACE — STYLE.CSS
   Light Theme · Plus Jakarta Sans + DM Sans
   ============================================================ */

/* —————————————————————————————————————————————
   0. CUSTOM PROPERTIES
   ————————————————————————————————————————————— */
:root {
  /* Backgrounds */
  --bg-main: #FAFBFE;
  --bg-alt: #F1F3F9;
  --bg-card: #FFFFFF;

  /* Brand */
  --primary: #6C5CE7;
  --primary-light: #A29BFE;
  --primary-dark: #5A4BD1;
  --secondary: #0984E3;

  /* Accents */
  --accent-gold: #F0B429;
  --accent-green: #00B894;
  --accent-cyan: #00CEC9;
  --accent-pink: #E84393;

  /* Text */
  --text-main: #1A1A2E;
  --text-secondary: #636E82;
  --text-muted: #9CA3AF;

  /* Borders & Shadows */
  --border-color: #E8ECF4;
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.04);
  --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 8px 40px rgba(26, 26, 46, 0.12);
  --shadow-xl: 0 20px 60px rgba(26, 26, 46, 0.15);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6C5CE7, #0984E3);
  --gradient-instagram: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  --gradient-tiktok: linear-gradient(135deg, #000000, #25F4EE);
  --gradient-verified: linear-gradient(135deg, #3B82F6, #6366F1);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;

  /* Motion */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-main);
  overflow-x: hidden;
  min-height: 100vh;
}

::selection {
  background-color: var(--primary);
  color: #FFFFFF;
}

::-moz-selection {
  background-color: var(--primary);
  color: #FFFFFF;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  width: 100%;
}

/* —————————————————————————————————————————————
   2. BACKGROUND EFFECTS
   ————————————————————————————————————————————— */
.bg-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.glow-1 {
  width: 600px;
  height: 600px;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.08;
  animation: glowFloat1 20s ease-in-out infinite;
}

.glow-2 {
  width: 500px;
  height: 500px;
  bottom: 10%;
  left: -10%;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  opacity: 0.06;
  animation: glowFloat2 25s ease-in-out infinite;
}

.glow-3 {
  width: 400px;
  height: 400px;
  top: 40%;
  left: 30%;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: 0.06;
  animation: glowFloat3 22s ease-in-out infinite;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--border-color) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
}

@keyframes glowFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-40px, 30px) scale(1.05); }
  66%      { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes glowFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -40px) scale(1.08); }
  66%      { transform: translate(-20px, 20px) scale(0.92); }
}

@keyframes glowFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, 40px) scale(1.1); }
}

/* —————————————————————————————————————————————
   3. TYPOGRAPHY
   ————————————————————————————————————————————— */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  color: var(--text-main);
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 0.75rem;
  line-height: 1.7;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(108, 92, 231, 0.08);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* —————————————————————————————————————————————
   4. BUTTONS
   ————————————————————————————————————————————— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: var(--transition);
}

.btn:hover::after {
  background: rgba(255, 255, 255, 0.1);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
  background: var(--bg-alt);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--border-color);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: var(--radius-md);
}

/* —————————————————————————————————————————————
   5. NAVBAR
   ————————————————————————————————————————————— */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(250, 251, 254, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 251, 254, 0.95);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mark-circle {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mark-circle-1 {
  background: linear-gradient(135deg, #6c5ce7 0%, #8e2de2 100%);
  left: 2px;
  top: 4px;
  z-index: 1;
  opacity: 0.95;
  box-shadow: 0 4px 10px rgba(108, 92, 231, 0.2);
}

.mark-circle-2 {
  background: linear-gradient(135deg, #00b894 0%, #00d2ff 100%);
  right: 2px;
  bottom: 4px;
  z-index: 2;
  opacity: 0.9;
  box-shadow: 0 4px 10px rgba(0, 184, 148, 0.15);
}

.logo:hover .mark-circle-1 {
  transform: translate(-3px, -1px) scale(1.06);
}

.logo:hover .mark-circle-2 {
  transform: translate(3px, 1px) scale(1.06);
}

.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 750;
  color: var(--text-main);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
}

.logo-text span {
  font-weight: 850;
  background: linear-gradient(135deg, #6c5ce7 0%, #00b894 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 2px;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  font-weight: 600;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a i.dropdown-arrow {
  font-size: 0.7rem;
  transition: var(--transition);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: var(--bg-card);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: rgba(108, 92, 231, 0.05);
  color: var(--primary);
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  color: var(--primary);
}

.nav-dropdown:hover > a i.dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.menu-toggle:hover {
  background: rgba(108, 92, 231, 0.06);
}

.menu-toggle i {
  font-size: 1.65rem;
  color: var(--text-main);
}

.menu-toggle span {
  display: block;
  height: 2.5px;
  background: var(--text-main);
  border-radius: 4px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* —————————————————————————————————————————————
   6. HERO SECTION
   ————————————————————————————————————————————— */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 6.5rem 0 3rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(108, 92, 231, 0.08);
  color: var(--primary);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(108, 92, 231, 0.12);
}

.badge-premium i {
  font-size: 0.85rem;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 500px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-indicators {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--bg-card);
  margin-left: -8px;
}

.avatar-group img:first-child {
  margin-left: 0;
}

.avatar-more {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: -8px;
  border: 2.5px solid var(--bg-card);
}

.trust-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.trust-text strong {
  color: var(--text-main);
  font-weight: 700;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

.glass-card.mockup-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 50px rgba(108, 92, 231, 0.08), 0 5px 15px rgba(0, 0, 0, 0.02);
  padding: 2.25rem 2rem;
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 2;
  border-radius: var(--radius-2xl);
  transition: var(--transition);
}

.glass-card.mockup-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(108, 92, 231, 0.12), 0 10px 20px rgba(0, 0, 0, 0.03);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.mockup-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.mockup-info {
  flex: 1;
}

.mockup-info .username {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.mockup-info .category {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 3px;
}

.mockup-verified {
  background: var(--gradient-verified);
  color: #FFFFFF;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(26, 26, 46, 0.06);
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
  margin-bottom: 1.75rem;
}

.mockup-stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.mockup-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 4px;
}

.mockup-action {
  background: var(--gradient-primary);
  color: #FFFFFF;
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(108, 92, 231, 0.2);
}

.mockup-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(108, 92, 231, 0.3);
}

.mockup-price {
  text-align: center;
  margin-top: 1rem;
}

.mockup-price .price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.mockup-price .price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Floating badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-xl);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: var(--transition);
}

.floating-badge:hover {
  transform: translateY(-3px) scale(1.03);
}

.floating-badge i {
  font-size: 1.15rem;
}

.fb-1 {
  top: 15%;
  left: -40px;
  animation: float 6s ease-in-out infinite;
}

.fb-1 i { color: var(--accent-green); }

.fb-2 {
  bottom: 25%;
  right: -30px;
  animation: float 6s ease-in-out infinite 2s;
}

.fb-2 i { color: var(--accent-gold); }

.fb-3 {
  bottom: 5%;
  left: 10%;
  animation: float 6s ease-in-out infinite 4s;
}

.fb-3 i { color: var(--primary); }

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

/* —————————————————————————————————————————————
   7. ACCOUNTS SECTION
   ————————————————————————————————————————————— */
.accounts-section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.accounts-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.25);
}

.accounts-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.account-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(26, 26, 46, 0.05);
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.02);
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  gap: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: visible;
}

.account-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(108, 92, 231, 0.06), 0 5px 15px rgba(0, 0, 0, 0.01);
  border-color: rgba(108, 92, 231, 0.15);
}

.card-cover {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 46, 0.03);
}

.card-cover::before, .card-cover::after {
  display: none;
}

/* Platform specific soft backgrounds & icon colors */
.card-cover.instagram {
  background: rgba(225, 48, 108, 0.06);
  border-color: rgba(225, 48, 108, 0.1);
}
.card-cover.instagram i {
  color: #E1306C;
}

.card-cover.tiktok {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}
.card-cover.tiktok i {
  color: #000000;
}

.card-cover.verified {
  background: rgba(59, 130, 246, 0.06);
  border-color: rgba(59, 130, 246, 0.1);
}
.card-cover.verified i {
  color: #3B82F6;
}

.card-cover.youtube { background: rgba(255, 0, 0, 0.05); border-color: rgba(255, 0, 0, 0.1); }
.card-cover.youtube i { color: #FF0000; }

.card-cover.twitter { background: rgba(29, 161, 242, 0.05); border-color: rgba(29, 161, 242, 0.1); }
.card-cover.twitter i { color: #1DA1F2; }

.card-cover.facebook { background: rgba(24, 119, 242, 0.05); border-color: rgba(24, 119, 242, 0.1); }
.card-cover.facebook i { color: #1877F2; }

.card-cover.telegram { background: rgba(0, 136, 204, 0.05); border-color: rgba(0, 136, 204, 0.1); }
.card-cover.telegram i { color: #0088cc; }

.card-cover.spotify { background: rgba(29, 185, 84, 0.05); border-color: rgba(29, 185, 84, 0.1); }
.card-cover.spotify i { color: #1DB954; }

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

.card-badge {
  position: absolute;
  top: -8px;
  left: -8px;
  background: var(--gradient-primary);
  color: #FFFFFF;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(108, 92, 231, 0.2);
}

.card-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  gap: 2rem;
}

.card-details-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.account-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 750;
  letter-spacing: 0.06em;
  background: rgba(108, 92, 231, 0.06);
  display: inline-flex;
  align-self: flex-start;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0;
}

.account-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
}

.username {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.account-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

.account-features {
  list-style: none;
  margin: 0.25rem 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.account-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.account-features li i {
  color: var(--primary);
  font-size: 0.95rem;
  width: auto;
  flex-shrink: 0;
}

.price-row {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: right;
}

.price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.price-old {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.4rem;
  font-weight: 400;
}

.price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.action-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0;
}

.action-buttons .btn {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.account-card .action-buttons .btn-outline {
  background: rgba(108, 92, 231, 0.05);
  color: var(--primary);
  border: 1px solid rgba(108, 92, 231, 0.08);
}

.account-card .action-buttons .btn-outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.account-card .action-buttons .btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.1);
}

.account-card .action-buttons .btn-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.2);
  transform: translateY(-1px);
}

/* —————————————————————————————————————————————
   8. RESPONSIVE MEDIA QUERIES FOR LIST CARDS
   ————————————————————————————————————————————— */
@media (max-width: 992px) {
  .account-card {
    padding: 1.25rem 1.5rem;
    gap: 1.5rem;
  }
  
  .price-row {
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .accounts-grid {
    gap: 1rem;
  }

  .account-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-areas:
      "logo header"
      "features features"
      "pricerow pricerow";
    padding: 1.25rem;
    gap: 0.85rem;
  }

  .card-cover {
    grid-area: logo;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
  }

  .card-body {
    grid-area: header;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0.25rem;
    width: 100%;
  }

  .card-details-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
  }

  .account-category {
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
  }

  .username {
    font-size: 1.15rem;
  }

  .account-features {
    grid-area: features;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0.25rem 0 0 0;
    padding-left: 0.25rem;
  }

  .account-features li {
    font-size: 0.82rem;
    gap: 6px;
  }

  .account-features li i {
    font-size: 0.85rem;
  }

  .price-row {
    grid-area: pricerow;
    border-top: 1px solid rgba(26, 26, 46, 0.05);
    padding-top: 0.85rem;
    margin-top: 0.25rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    text-align: left;
  }

  .price {
    font-size: 1.45rem;
  }

  .action-buttons {
    display: flex;
    gap: 0.5rem;
    width: auto;
    margin: 0;
  }

  .action-buttons .btn {
    padding: 0.55rem 0.85rem;
    font-size: 0.8rem;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .price-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .action-buttons {
    width: 100%;
  }

  .action-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 0.65rem 0.5rem;
  }
}

/* —————————————————————————————————————————————
   8. BENTO GRID SECTION
   ————————————————————————————————————————————— */
.bento-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.bento-grid {
  display: grid;
  grid-template-areas:
    'large large tall'
    'sq1   sq2   tall'
    'wide  wide  wide';
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1.5rem;
}

.bento-item {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(108, 92, 231, 0.15);
}

.bento-large  { grid-area: large; }
.bento-tall   { grid-area: tall; display: flex; flex-direction: column; justify-content: center; }
.bento-sq1    { grid-area: sq1; }
.bento-sq2    { grid-area: sq2; }
.bento-wide   { grid-area: wide; }

.bento-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.bento-icon.green  { background: rgba(0, 184, 148, 0.1); color: var(--accent-green); }
.bento-icon.blue   { background: rgba(9, 132, 227, 0.1); color: var(--secondary); }
.bento-icon.gold   { background: rgba(240, 180, 41, 0.1); color: var(--accent-gold); }
.bento-icon.pink   { background: rgba(232, 67, 147, 0.1); color: var(--accent-pink); }
.bento-icon.cyan   { background: rgba(0, 206, 201, 0.1); color: var(--accent-cyan); }

.bento-graphic {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 8rem;
  opacity: 0.04;
  color: var(--primary);
  line-height: 1;
  pointer-events: none;
}

.bento-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.bento-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.bento-list {
  margin-top: 1rem;
}

.bento-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.bento-list li i {
  color: var(--accent-green);
  font-size: 0.8rem;
}

/* —————————————————————————————————————————————
   9. FAQ SECTION
   ————————————————————————————————————————————— */
.faq-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(108, 92, 231, 0.15);
}

.faq-item.active {
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-main);
  transition: var(--transition);
  user-select: none;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* —————————————————————————————————————————————
   10. FOOTER
   ————————————————————————————————————————————— */
.footer {
  background: #1A1A2E;
  color: #FFFFFF;
  padding-top: 4rem;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand .logo {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.footer-brand .logo .logo-text {
  color: #FFFFFF;
}

.footer-brand .logo .logo-text span {
  background: linear-gradient(135deg, #a29bfe 0%, #55efc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin: 1rem 0;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: #FFFFFF;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-newsletter h4 {
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: #FFFFFF;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 0.9rem;
  min-width: 0;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
  padding: 0.75rem 1.25rem;
  background: var(--gradient-primary);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.payment-methods img {
  height: 24px;
  opacity: 0.7;
  transition: var(--transition);
}

.payment-methods img:hover {
  opacity: 1;
}

.payment-methods i {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.payment-methods i:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

/* —————————————————————————————————————————————
   11. FLOATING WHATSAPP BUTTON
   ————————————————————————————————————————————— */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp .wa-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.floating-whatsapp .wa-text {
  font-weight: 600;
  font-size: 0.9rem;
}

.floating-whatsapp .wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: #25D366;
  z-index: -1;
  animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* —————————————————————————————————————————————
   12. SCROLL REVEAL ANIMATION
   ————————————————————————————————————————————— */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* —————————————————————————————————————————————
   13. UTILITY CLASSES
   ————————————————————————————————————————————— */
.text-center   { text-align: center; }
.text-left     { text-align: left; }
.text-right    { text-align: right; }
.text-primary  { color: var(--primary); }
.text-muted    { color: var(--text-muted); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-3 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }

.bg-light-alt {
  background-color: var(--bg-alt);
}

.d-flex        { display: flex; }
.align-center  { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1         { gap: 0.5rem; }
.gap-2         { gap: 1rem; }
.gap-3         { gap: 1.5rem; }

.w-100 { width: 100%; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* —————————————————————————————————————————————
   14. PAGE-SPECIFIC STYLES
   ————————————————————————————————————————————— */

/* --- Page Header (for inner pages) --- */
.page-header {
  padding: 8rem 0 3rem;
  text-align: center;
  background: var(--bg-alt);
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .separator {
  color: var(--text-muted);
}

.breadcrumb .current {
  color: var(--text-main);
  font-weight: 600;
}

/* --- Content Section --- */
.content-section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--text-main);
  background: var(--bg-card);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-info-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.contact-info-card h3 {
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-item .info-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-item .info-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* --- Product Detail Page --- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-image-area {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.product-image-area .main-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.product-image-area .image-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--text-muted);
  background: var(--bg-alt);
}

.product-info-area {
  position: sticky;
  top: 100px;
}

.product-info-area .product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.product-info-area h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.product-info-area .product-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.product-info-area .product-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.product-details-list {
  margin-bottom: 1.5rem;
}

.product-details-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.product-details-list li:last-child {
  border-bottom: none;
}

.product-details-list .label {
  color: var(--text-secondary);
}

.product-details-list .value {
  font-weight: 600;
  color: var(--text-main);
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.product-actions .btn {
  flex: 1;
}

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-grid img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.about-grid .about-text h2 {
  margin-bottom: 1rem;
}

.about-grid .about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card .value-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.value-card h4 {
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Stats Bar / Counter --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-item .stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* --- Testimonials / Reviews --- */
.testimonial-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 2px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  padding: 4rem;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-banner .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* —————————————————————————————————————————————
   15. RESPONSIVE DESIGN
   ————————————————————————————————————————————— */

/* ---- 1200px and below ---- */
@media (max-width: 1200px) {
  .accounts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-content {
    gap: 3rem;
  }

  h1 {
    font-size: 3rem;
  }
}

/* ---- 992px and below ---- */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-text p {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-indicators {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    max-width: 380px;
    margin: 0 auto;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .bento-grid {
    grid-template-areas:
      'large large'
      'sq1   sq2'
      'tall  tall'
      'wide  wide';
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-info-area {
    position: static;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner {
    padding: 3rem 2rem;
  }
}

/* ---- 768px and below ---- */
@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .accounts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Navbar mobile */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    border-top: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    padding: 0 0 0 1rem;
    min-width: auto;
    display: none;
    background: transparent;
  }

  .nav-dropdown .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  /* Bento */
  .bento-grid {
    grid-template-areas:
      'large'
      'sq1'
      'sq2'
      'tall'
      'wide';
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .payment-methods {
    justify-content: center;
  }

  /* Values */
  .values-grid {
    grid-template-columns: 1fr;
  }

  /* Floating WA */
  .floating-whatsapp .wa-text {
    display: none;
  }

  .floating-whatsapp {
    padding: 0.85rem;
    border-radius: 50%;
  }

  /* Page header */
  .page-header {
    padding: 7rem 0 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  /* Product */
  .product-actions {
    flex-direction: column;
  }

  /* CTA */
  .cta-banner {
    padding: 2.5rem 1.5rem;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  /* Stats */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item .stat-number {
    font-size: 2rem;
  }
}

/* ---- 480px and below ---- */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

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

  .hero {
    min-height: auto;
    padding: 6rem 0 3rem;
  }

  .hero-visual {
    display: none;
  }

  .card-cover {
    height: 120px;
  }

  .card-body {
    padding: 1.25rem;
  }

  .price {
    font-size: 1.4rem;
  }

  .action-buttons {
    flex-direction: column;
  }

  .action-buttons .btn {
    width: 100%;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .accounts-section,
  .bento-section,
  .faq-section {
    padding: 4rem 0;
  }

  .bento-item {
    padding: 1.5rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.25rem 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }

  .stat-item .stat-number {
    font-size: 1.6rem;
  }

  .floating-whatsapp {
    bottom: 1rem;
    right: 1rem;
  }

  .btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
  }

  .glass-card.mockup-card {
    padding: 1.5rem;
  }
}

/* ---- 375px and below ---- */
@media (max-width: 375px) {
  .container {
    padding: 0 0.75rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .badge-premium {
    font-size: 0.72rem;
  }
}

/* —————————————————————————————————————————————
   EXTRA: SMOOTH SCROLLBAR (Webkit)
   ————————————————————————————————————————————— */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* —————————————————————————————————————————————
   EXTRA: LOADING / SKELETON STATES
   ————————————————————————————————————————————— */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-alt) 25%,
    var(--border-color) 50%,
    var(--bg-alt) 75%
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeletonShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* —————————————————————————————————————————————
   PRODUCT DETAIL PAGE - EXTENDED STYLES
   ————————————————————————————————————————————— */
.product-showcase-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(26, 26, 46, 0.05);
  box-shadow: 0 10px 40px rgba(26, 26, 46, 0.03);
}

.product-showcase-card .card-cover {
  height: 200px !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  border-bottom: 1px solid rgba(26, 26, 46, 0.03);
}

.product-showcase-card .card-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.8;
  z-index: 0;
}

/* Rich platform-specific gradients for showcase card */
.product-showcase-card .card-cover.instagram { background: linear-gradient(135deg, rgba(240, 148, 51, 0.15) 0%, rgba(220, 39, 67, 0.1) 50%, rgba(188, 24, 136, 0.15) 100%); }
.product-showcase-card .card-cover.tiktok    { background: linear-gradient(135deg, rgba(37, 244, 238, 0.12) 0%, rgba(250, 250, 250, 0.8) 50%, rgba(254, 44, 85, 0.12) 100%); }
.product-showcase-card .card-cover.youtube   { background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(204, 0, 0, 0.05) 100%); }
.product-showcase-card .card-cover.verified  { background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%); }

.product-showcase-card .card-cover i {
  font-size: 3.5rem !important;
  background: #FFFFFF !important;
  width: 90px !important;
  height: 90px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 12px 30px rgba(26, 26, 46, 0.12) !important;
  border: 4px solid #ffffff !important;
  z-index: 1;
  transition: var(--transition);
}

.product-showcase-card:hover .card-cover i {
  transform: scale(1.05) rotate(3deg);
}

.product-showcase-body {
  padding: 2.5rem 2rem;
  text-align: center;
}

.product-showcase-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 750;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(108, 92, 231, 0.06);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

.product-showcase-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.verified-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(59, 130, 246, 0.08);
  color: #3B82F6;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.85rem;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.05);
}

.verified-badge-large i {
  font-size: 1.15rem;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(26, 26, 46, 0.04);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(26, 26, 46, 0.01);
}

.trust-badge-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(108, 92, 231, 0.1);
}

.trust-badge-item i {
  font-size: 1.5rem;
  color: var(--primary);
  background: rgba(108, 92, 231, 0.05);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.trust-badge-item span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.product-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.product-info-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(108, 92, 231, 0.08);
  color: var(--primary);
}

.product-tag.featured {
  background: rgba(240, 180, 41, 0.1);
  color: var(--accent-gold);
}

.product-title-main {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.06), rgba(9, 132, 227, 0.06));
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.product-price-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.product-features-list {
  margin-bottom: 2rem;
}

.product-features-list h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.product-features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.product-features-list li:last-child {
  border-bottom: none;
}

.product-features-list li i {
  font-size: 1.15rem;
  color: var(--accent-green);
  flex-shrink: 0;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.product-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(0, 184, 148, 0.06);
  border: 1px solid rgba(0, 184, 148, 0.15);
  border-radius: var(--radius-lg);
}

.product-guarantee i {
  font-size: 1.5rem;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.product-guarantee strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.product-guarantee p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.related-products {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

/* —————————————————————————————————————————————
   CTA SECTION
   ————————————————————————————————————————————— */
.cta-section {
  padding: 5rem 0;
}

.cta-card {
  background: linear-gradient(135deg, #6c5ce7 0%, #3b82f6 100%);
  border-radius: var(--radius-2xl);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(108, 92, 231, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.cta-card .cta-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: center;
  pointer-events: none;
}

.cta-card .cta-glow-1 {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.cta-card .cta-glow-2 {
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, transparent 75%);
  filter: blur(30px);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-buttons .btn-primary {
  background: #ffffff;
  color: var(--primary);
  border: 1px solid #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-buttons .btn-primary:hover {
  background: #f3f3ff;
  border-color: #f3f3ff;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  border: 1px solid #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-buttons .btn-whatsapp:hover {
  background: #20ba5a;
  border-color: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.cta-buttons .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-buttons .btn-outline:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--primary) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* —————————————————————————————————————————————
   ABOUT PAGE - EXTENDED STYLES
   ————————————————————————————————————————————— */
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-icon-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
}

.about-icon-card .main-icon {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: block;
}

.about-platforms {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.about-platforms i {
  font-size: 2rem;
  opacity: 0.5;
  transition: var(--transition);
}

.about-platforms i:hover {
  opacity: 1;
  transform: scale(1.2);
}

.about-intro-text h2 {
  margin-bottom: 1.5rem;
}

.about-intro-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.value-card .value-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem;
  background: rgba(108, 92, 231, 0.08);
  color: var(--primary);
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stats-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.stats-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.stats-item .stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.35rem;
  display: block;
}

.stats-item .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Section Badge */
.section-badge {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  background: rgba(108, 92, 231, 0.08);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

/* —————————————————————————————————————————————
   RESPONSIVE - EXTENDED STYLES
   ————————————————————————————————————————————— */
@media (max-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-info-card {
    position: static;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-card {
    padding: 3rem 2rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .trust-badges-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .product-info-card {
    padding: 1.75rem;
  }

  .product-price-value {
    font-size: 1.8rem;
  }

  .product-title-main {
    font-size: 1.4rem;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}

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

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

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

  .product-info-card {
    padding: 1.25rem;
  }

  .cta-card {
    padding: 2.5rem 1.5rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }
}

/* —————————————————————————————————————————————
   PRICE COMPARISON WIDGET
   ————————————————————————————————————————————— */
.price-comparison-widget {
  margin-top: 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.market-value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.market-value-row del {
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 600;
}

.advantage-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  background: rgba(0, 184, 148, 0.04);
  border: 1px dashed rgba(0, 184, 148, 0.3);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.advantage-box:hover {
  background: rgba(0, 184, 148, 0.07);
  border-color: rgba(0, 184, 148, 0.5);
}

.advantage-label {
  font-size: 0.95rem;
  font-weight: 750;
  color: #00b894;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.advantage-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #00b894;
}

/* —————————————————————————————————————————————
   PROCESS TIMELINE WIDGET
   ————————————————————————————————————————————— */
.process-widget {
  background: var(--bg-card);
  border: 1px solid rgba(26, 26, 46, 0.05);
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.02);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-top: 1.5rem;
}

.process-widget h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(108, 92, 231, 0.1);
  z-index: 0;
}

.process-step {
  display: flex;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.06);
  color: var(--primary);
  border: 2px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(108, 92, 231, 0.05);
  flex-shrink: 0;
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: var(--primary);
  color: #FFFFFF;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
}

.step-content h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* —————————————————————————————————————————————
   PREMIUM RECEIPT SUMMARY WIDGET
   ————————————————————————————————————————————— */
.premium-receipt {
  background: #ffffff;
  border: 1px solid rgba(26, 26, 46, 0.05);
  box-shadow: 0 15px 45px rgba(26, 26, 46, 0.03);
  border-radius: var(--radius-2xl);
  padding: 2.25rem 2rem;
  width: 100%;
}

.receipt-items {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.receipt-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(26, 26, 46, 0.03);
  gap: 1rem;
}

.receipt-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.item-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
}

.item-label i {
  font-size: 1.15rem;
  color: var(--primary-light);
}

.item-value {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: right;
  word-break: break-word;
  max-width: 65%;
}

.receipt-total-block {
  border-top: 2px solid var(--border-color);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* IBAN Copy Wrapper */
.iban-copy-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  width: 100%;
}

.iban-copy-wrapper strong {
  color: var(--primary);
  font-size: 1.05rem;
  font-family: monospace;
  letter-spacing: 0.5px;
  word-break: break-all;
}

.iban-copy-wrapper .btn {
  padding: 0.35rem 0.75rem !important;
  font-size: 0.75rem !important;
  border-radius: 6px !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  width: auto !important;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .iban-copy-wrapper {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0.75rem;
    padding: 1rem;
  }
  .iban-copy-wrapper strong {
    text-align: center;
    font-size: 1rem;
  }
  .iban-copy-wrapper .btn {
    width: 100% !important;
    justify-content: center;
  }
}

/* —————————————————————————————————————————————
   CONTACT CHANNELS PAGE STYLES
   ————————————————————————————————————————————— */
.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.channel-card {
  background: var(--bg-card);
  border: 1px solid rgba(26, 26, 46, 0.05);
  box-shadow: 0 15px 45px rgba(26, 26, 46, 0.03);
  border-radius: var(--radius-2xl);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.channel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(26, 26, 46, 0.06);
  border-color: rgba(108, 92, 231, 0.1);
}

.channel-card:hover::before {
  opacity: 1;
}

.whatsapp-channel:hover {
  border-color: rgba(37, 211, 102, 0.2);
}

.whatsapp-channel::before {
  background: linear-gradient(90deg, #25d366, #128c7e);
}

.channel-icon-wrapper {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.whatsapp-channel .channel-icon-wrapper {
  background: rgba(37, 211, 102, 0.08);
  color: #25D366;
}

.email-channel .channel-icon-wrapper {
  background: rgba(108, 92, 231, 0.08);
  color: var(--primary);
}

.channel-card:hover .channel-icon-wrapper {
  transform: scale(1.08) rotate(3deg);
}

.channel-card h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.channel-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.channel-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.meta-tag {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.meta-tag.online {
  background: rgba(0, 184, 148, 0.08);
  color: var(--accent-green);
}

.meta-tag.online i {
  font-size: 0.5rem;
  animation: pulse 1.5s infinite;
}

.meta-tag.speed {
  background: rgba(26, 26, 46, 0.04);
  color: var(--text-secondary);
}

.meta-tag.email-address {
  background: rgba(108, 92, 231, 0.06);
  color: var(--primary);
}

@media (max-width: 768px) {
  .contact-channels-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Premium IBAN Card */
.iban-card-premium {
  background: var(--bg-card);
  border: 1px solid rgba(108, 92, 231, 0.15);
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.04);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition);
}

.iban-card-premium:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 35px rgba(108, 92, 231, 0.07);
}

.iban-card-premium .iban-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.iban-card-premium .iban-header span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.iban-card-premium .iban-header .copy-badge {
  background: rgba(108, 92, 231, 0.06);
  border: 1px solid rgba(108, 92, 231, 0.2);
  color: var(--primary);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.iban-card-premium .iban-header .copy-badge:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.iban-card-premium .iban-number {
  font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  word-spacing: 6px;
  user-select: all;
  margin-top: 0.25rem;
  line-height: 1;
}

@media (max-width: 480px) {
  .iban-card-premium .iban-number {
    font-size: 1rem;
    letter-spacing: 0.5px;
    word-spacing: 2px;
  }
}

/* —————————————————————————————————————————————
   EXTRA: REDUCED MOTION PREFERENCE
   ————————————————————————————————————————————— */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* —————————————————————————————————————————————
   CATEGORY TABS COMPONENT (HOMEPAGE)
   ————————————————————————————————————————————— */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem auto 3rem;
  max-width: 950px;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: var(--text-secondary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.03);
}

.tab-btn i {
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.tab-btn:hover {
  background: var(--bg-main);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(108, 92, 231, 0.08);
}

.tab-btn:hover i {
  transform: scale(1.1);
}

.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.2);
}

.tab-btn.active i {
  color: #FFFFFF !important;
}

/* Tab filter animation */
.account-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.account-card.hidden {
  opacity: 0;
  transform: scale(0.9) translateY(15px);
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: none;
}

@media (max-width: 768px) {
  .category-tabs {
    gap: 0.5rem;
    margin: 1.5rem auto 2.5rem;
    padding: 0 1rem;
  }
  .tab-btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.85rem;
  }
}

.card-cover {
  overflow: visible !important;
}

.card-cover .category-flag {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 1.15rem;
  background: #FFFFFF;
  padding: 3px 5px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(26, 26, 46, 0.06);
  line-height: 1;
  z-index: 2;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.account-card:hover .category-flag {
  transform: scale(1.2) rotate(8deg);
}
