@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #05070f;
  --bg-panel: #0a1221;
  --bg-card: rgba(11, 17, 33, 0.92);
  --purple-500: #8b5cf6;
  --purple-400: #a78bfa;
  --purple-300: #d8b4fe;
  --text: #f8fbff;
  --text-dim: #9fb3d8;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --radius-lg: 24px;
  --radius-sm: 14px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.14), transparent 18%), radial-gradient(circle at 85% 25%, rgba(59, 130, 246, 0.12), transparent 15%), #030810;
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  overflow-x: hidden;
  line-height: 1.5;
}

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

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.bg-grid,
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.bg-grid {
  background-image: radial-gradient(circle at 18% 18%, rgba(139, 92, 246, 0.16), transparent 20%), radial-gradient(circle at 75% 22%, rgba(59, 130, 246, 0.14), transparent 18%), linear-gradient(180deg, rgba(3, 7, 18, 0.96), rgba(3, 7, 18, 1));
}

.bg-glow {
  background: radial-gradient(circle at 82% 12%, rgba(139, 92, 246, 0.2), transparent 18%), radial-gradient(circle at 12% 78%, rgba(59, 130, 246, 0.14), transparent 14%);
  filter: blur(2px);
}

/* ==================================
   NEW PILL NAVIGATION
   ================================== */
header {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  padding: 16px 0 0;
  width: 100%;
}

.nav-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 40px;
  border-radius: 9999px;
  background: rgba(10, 15, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 1000px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  z-index: 10;
}
.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links-center {
  display: none;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  flex: 1;
  justify-content: center;
  max-width: 600px;
}

@media (min-width: 1024px) {
  .nav-links-center {
    display: flex;
  }
}

.nav-links-center a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: none;
  transition: var(--transition);
}

.nav-links-center a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-links-center a.active {
  background: linear-gradient(90deg, var(--purple-500), var(--purple-400));
  color: #fff;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
}

.nav-links-center svg {
  width: 16px;
  height: 16px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  color: var(--text-dim);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.nav-icon-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-customer {
  display: none;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 20px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, var(--purple-500), var(--purple-400));
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
  transition: var(--transition);
}

@media (min-width: 1024px) {
  .btn-customer {
    display: flex;
  }
}

/* Navbar Language Selector */
.nav-lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  color: var(--text-dim);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
  position: relative;
}

.nav-lang-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(15, 20, 35, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 6px;
  min-width: 160px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
}

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

.nav-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.nav-lang-option:hover {
  background: rgba(139, 92, 246, 0.15);
}

.nav-lang-option img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}

.btn-customer:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* ==================================
   PRODUCT CARDS V3 (3D / ANIMATED)
   ================================== */
.products-section {
  padding-top: 140px;
  padding-bottom: 80px;
}

.products-grid-3d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.product-card-3d {
  position: relative;
  background: rgba(15, 20, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
}

.product-card-3d::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product-card-3d:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 20px 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
}

.product-card-3d:hover::before {
  opacity: 1;
}

.product-header {
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.product-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 20px;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 16px 0;
}

.product-features {
  flex-grow: 1;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.product-features h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple-300);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.product-features li {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-400);
  box-shadow: 0 0 10px var(--purple-500);
}

.product-pricing {
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.product-pricing h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple-300);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: var(--transition);
}

.price-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.price-row.best-value {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}

.price-row.best-value .duration {
  color: var(--purple-300);
  font-weight: 700;
}

.price-row .duration {
  color: var(--text-dim);
}

.price-row .cost {
  color: #fff;
  font-weight: 700;
}

.btn-buy-full {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--purple-500), var(--purple-400));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.25);
}

.btn-buy-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

/* ==================================
   UTILITIES
   ================================== */
.gradient {
  background: linear-gradient(90deg, var(--purple-400), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Cheat-like enhancements - more human-made */
.rough-border {
  border: 2px solid rgba(139, 92, 246, 0.4);
  border-radius: 4px;
  background: rgba(15, 20, 35, 0.7);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3),
              0 4px 8px rgba(0, 0, 0, 0.2);
}

.terminal-text {
  font-family: 'Courier New', monospace;
  color: #f0f0f0;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.raw-button {
  background: #2d3748;
  border: 1px solid #1a1a1a;
  color: #e5e7eb;
  padding: 8px 12px;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.1s ease;
}

.raw-button:hover {
  background: #374151;
  border-color: #6b7280;
  color: #d1d5db;
}

.raw-button:active {
  background: #1f2937;
  transform: translateY(1px);
}

/* ==================================
   EXISTING SECTIONS
   ================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(90deg, var(--purple-500), var(--purple-400));
  color: #fff;
  box-shadow: 0 18px 45px rgba(139, 92, 246, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.btn:hover {
  transform: translateY(-1px);
}

section {
  padding: 140px 0 80px;
  position: relative;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 120px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
  animation: fadeInUp 0.9s ease both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  background: rgba(139, 92, 246, 0.08);
  color: var(--purple-300);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.9rem, 5vw, 4.8rem);
  line-height: 1.02;
  font-weight: 900;
  margin-bottom: 24px;
  max-width: 12ch;
}

.hero-text {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  animation: float 8s ease-in-out infinite;
}

.hero-card {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg, rgba(8, 12, 24, 0.95), rgba(12, 17, 36, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.18), transparent 30%);
  pointer-events: none;
}

.hero-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.14);
  color: var(--purple-300);
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-card-img {
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.hero-card h2 {
  font-size: 2.25rem;
  margin-bottom: 10px;
  line-height: 1.05;
}

.hero-card p {
  color: var(--text-dim);
  margin-bottom: 22px;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-card-footer .price {
  font-size: 1.65rem;
  font-weight: 900;
}

.trending {
  padding-top: 60px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: clamp(2.25rem, 3vw, 3.5rem);
  font-weight: 900;
  line-height: 1.02;
}

.section-header p {
  color: var(--text-dim);
  max-width: 700px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 24px;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.category-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 22px;
  text-align: center;
  transition: var(--transition);
  color: inherit;
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.25);
}

.category-card h4 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.category-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.cta-banner {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.14), rgba(139, 92, 246, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 60px;
}

.cta-copy h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-copy p {
  color: var(--text-dim);
  max-width: 560px;
}

.why-choose {
  padding: 80px 0 120px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.28);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.16);
  color: var(--purple-300);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin: 0;
}

.feature-card p {
  color: var(--text-dim);
  line-height: 1.75;
}

.footer {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: var(--text-dim);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* ==================================
   STATUS PAGE
   ================================== */
.status-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
}

.status-item-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
}

.status-item h3 {
  font-size: 1.1rem;
  margin: 0;
}

.status-item p {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin: 0;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

/* ==================================
   ANIMATIONS
   ================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 1080px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
  .category-list {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .hero-title {
    font-size: clamp(2.6rem, 9vw, 3.8rem);
  }
  .products-grid,
  .category-list,
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================
   NEW UI COMPONENTS (v4)
   ================================== */

/* TrustPilot & Badges */
.trustpilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.trustpilot-badge .stars {
  color: #00b67a;
  display: flex;
  gap: 2px;
}

.trustpilot-badge .score {
  color: #fff;
}

/* Buttons */
.btn-glow {
  background: linear-gradient(90deg, var(--purple-500), var(--purple-400));
  color: #fff;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-glow:hover {
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
  transform: translateY(-2px);
}

.btn-buy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: var(--transition);
  text-decoration: none;
}

.btn-buy-icon:hover {
  background: var(--purple-500);
  transform: translateX(4px);
}

/* ==================================
   EDNER-STYLE PRODUCT SQUARES
   ================================== */
.products-grid-square {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-square {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  text-decoration: none;
  background: #000;
  transform-style: preserve-3d;
}

.product-square:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.product-square img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-square:hover img {
  transform: scale(1.05);
}

.product-square-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
  transition: opacity 0.4s;
  pointer-events: none;
}

.product-square:hover .product-square-overlay {
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, rgba(0,0,0,0.6) 100%);
}

.product-ribbon {
  position: absolute;
  top: 20px;
  left: -32px;
  transform: rotate(-45deg);
  background: linear-gradient(90deg, var(--purple-500), var(--purple-400));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 0;
  width: 140px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.4);
  z-index: 10;
}

.product-status {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 10;
}

.product-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulseDot 2s infinite;
}

.product-status span {
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.product-title-price {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  z-index: 10;
  min-width: max-content;
  white-space: nowrap;
}

.product-square:hover .product-title-price {
  transform: translateY(-4px);
}

.product-title-price .title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.product-title-price .price {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple-400);
}

.product-title-price .price span {
  color: var(--text-dim);
  font-weight: 500;
}

.product-explore {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #fff;
  color: #000;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 10;
}

.product-explore svg {
  width: 14px;
  height: 14px;
}

.product-square:hover .product-explore {
  opacity: 1;
  transform: translateY(0);
}

.btn-white {
  background: #fff;
  color: #000;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

/* Badges */
.badge-accent {
  background: rgba(139, 92, 246, 0.15);
  color: var(--purple-300);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.badge-popular {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.badge-undetected {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseDot 2s infinite;
}

/* Product Card Images & Inner Layout */
.card-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  aspect-ratio: 16/9;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.3);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-3d:hover .product-card-img {
  transform: scale(1.05);
}

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.card-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.price-amount span {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* Categories Square Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.cat-square {
  position: relative;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  text-decoration: none;
}

.cat-square:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cat-square img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.cat-square:hover img {
  transform: scale(1.1);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 15, 0.1), rgba(5, 7, 15, 0.9));
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
}

.cat-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: auto;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cat-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Bento Grid Features */
.features-grid-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.bento-featured {
  background: rgba(15, 20, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.bento-img-mask {
  height: 240px;
  background: rgba(139, 92, 246, 0.1);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-img-mask::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(15, 20, 35, 0.6));
}

.bento-content {
  padding: 32px;
}

.bento-content h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.bento-content p {
  color: var(--text-dim);
  font-size: 1.05rem;
}

.bento-small-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

.bento-card {
  background: rgba(15, 20, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.15);
  color: var(--purple-400);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.bento-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.bento-card p {
  color: var(--text-dim);
}

/* Account CTA */
.cta-accounts {
  position: relative;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(59, 130, 246, 0.8));
  border-radius: 32px;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 60px;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.cta-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.stat .num {
  font-size: 2rem;
  font-weight: 900;
  display: block;
}

.stat .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Affiliate Flex Layout */
.affiliate-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
}

.affiliate-text {
  flex: 1;
}

.affiliate-pill {
  display: inline-flex;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.affiliate-text h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.affiliate-text p {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  max-width: 500px;
}

.affiliate-image {
  flex: 1;
  position: relative;
}

.aff-img-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.aff-img-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 32px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.aff-img-wrapper img {
  width: 100%;
  max-width: 400px;
  animation: float 6s ease-in-out infinite;
}

/* Testimonials Carousel */
.testimonials-section {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  width: max-content;
  animation: track-scroll 40s linear infinite;
  padding-bottom: 20px;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes track-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 12px)); }
}

.testimonial-card {
  width: 380px;
  background: rgba(15, 20, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.test-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-info div h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.user-info div p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.test-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.stars {
  color: #fbbf24;
  display: flex;
  gap: 4px;
}

.stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card > p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Overrides for new elements */
@media (max-width: 1080px) {
  .features-grid-bento {
    grid-template-columns: 1fr;
  }
  .cta-accounts {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
  .cta-stats {
    justify-content: center;
  }
  .affiliate-flex {
    flex-direction: column;
  }
}

/* ==================================
   CHECKOUT PAGE
   ================================== */
.checkout-section {
  padding-top: 140px;
  padding-bottom: 80px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: flex-start;
}

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

.checkout-main {
  background: rgba(15, 20, 35, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.plan-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-card h4 {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.plan-card .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.plan-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
}

.plan-card.selected {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--purple-500);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.payment-methods {
  margin-top: 40px;
}

.payment-methods h3 {
  margin-bottom: 20px;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.method-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.method-btn svg {
  width: 32px;
  height: 32px;
  color: var(--purple-400);
}

.method-btn:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--purple-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}

.method-btn.selected {
  background: rgba(139, 92, 246, 0.15);
  border-color: var(--purple-500);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.checkout-sidebar {
  background: rgba(15, 20, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.checkout-sidebar .image-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-sidebar .image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.3);
}

.product-info-v2 {
  padding: 32px;
}

.product-price-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 24px 0;
}

.product-price-v2 .label {
  color: var(--text-dim);
  font-weight: 600;
}

.product-price-v2 .amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--purple-400);
}
/* ==================================
   NEW CATEGORY & PRODUCT CARDS
   ================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.cat-card {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  background: #000;
  text-decoration: none;
}

.cat-card:hover {
  border-color: rgba(139, 92, 246, 0.5); /* var(--purple-500) */
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card:hover img {
  transform: scale(1.05);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.cat-badge-top {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cat-badge-bottom {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s;
}

.cat-card:hover .cat-badge-bottom {
  transform: translateY(-4px);
}

.cat-explore {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #fff;
  color: #000;
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.cat-card:hover .cat-explore {
  opacity: 1;
  transform: translateY(0);
}

/* New Product Card Layout */
.prod-card {
  background: #0a0f1c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.prod-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.prod-img-box {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: rgba(0,0,0,0.5);
  overflow: hidden;
}

.prod-img-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.prod-card:hover .prod-img-box img {
  transform: scale(1.05);
}

.prod-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.badge-v3 {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.badge-v3.emerald { border-color: rgba(16, 185, 129, 0.3); color: #10b981; background: rgba(16, 185, 129, 0.1); }
.badge-v3.red { border-color: rgba(239, 68, 68, 0.3); color: #ef4444; background: rgba(239, 68, 68, 0.1); }
.badge-v3.purple { border-color: rgba(139, 92, 246, 0.3); color: #8b5cf6; background: rgba(139, 92, 246, 0.1); }

.prod-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prod-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.prod-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.prod-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prod-price span {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
}

.prod-price .amt {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--purple-400);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.prod-btn {
  background: var(--purple-500);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.prod-btn:hover {
  background: var(--purple-400);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}
/* ==================================
   BLOG, SUPPORT & FAQ PAGES
   ================================== */
.page-header {
  text-align: center;
  margin-bottom: 60px;
}
.page-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.page-header p {
  color: var(--text-dim);
  font-size: 1.1rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  background: #0a0f1c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.blog-card:hover {
  border-color: var(--purple-500);
  transform: translateY(-4px);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-content h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-card-content p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 24px;
  flex: 1;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.support-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.support-card.primary {
  background: rgba(88, 101, 242, 0.08);
  border-color: rgba(88, 101, 242, 0.25);
  grid-column: 1 / -1;
}
@media (min-width: 768px) {
  .support-card.primary {
    grid-column: 1;
    grid-row: 1 / 3;
  }
}
.support-step {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.support-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.support-card.primary h2 {
  font-size: 2rem;
}
.support-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.faq-section {
  margin-bottom: 40px;
}
.faq-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.3);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

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

.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-dim);
  line-height: 1.6;
  font-size: 1rem;
  display: none;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================================
   LOGIN PAGE
   ================================== */
.login-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.login-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.back-to-store {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  padding: 8px 16px;
  border-radius: 99px;
}

.back-to-store:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.back-to-store svg {
  transition: transform 0.3s ease;
}

.back-to-store:hover svg {
  transform: translateX(-4px);
}

.language-selector {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-select {
  appearance: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  padding: 8px 40px 8px 16px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  min-width: 130px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

.lang-select:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}

.lang-select:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.lang-select option {
  background: #0a1221;
  color: #fff;
  padding: 8px 12px;
}

.lang-flag-display {
  width: 28px;
  height: 20px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.login-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.login-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.login-form {
  width: 100%;
}

.form-group {
  margin-bottom: 24px;
}

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

.form-group input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: var(--transition);
  box-sizing: border-box;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus {
  outline: none;
  border-color: var(--purple-500);
  background: rgba(139, 92, 246, 0.05);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.btn-next {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(90deg, var(--purple-500), var(--purple-400));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.btn-next svg {
  transition: transform 0.3s ease;
}

.btn-next:hover svg {
  transform: translateX(4px);
}

.login-footer {
  text-align: center;
  margin-top: 24px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.login-footer a {
  color: var(--purple-400);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.login-footer a:hover {
  color: var(--purple-300);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .login-nav {
    padding: 20px;
  }
  
  .login-box {
    padding: 20px;
  }
  
  .login-title {
    font-size: 2rem;
  }
}
