:root {
  --font-main: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;

  --color-bg: #050505;
  --color-bg-secondary: #0f0f0f;
  --color-text: #ffffff;
  --color-text-muted: #a0a0a0;

  --color-primary: #ff007f;
  /* Magenta/Fuchsia */
  --color-primary-dark: #cc0066;
  --color-secondary: #7000ff;
  /* Purple for gradient */

  --gradient-main: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-glow: radial-gradient(circle, rgba(255, 0, 127, 0.4) 0%, rgba(0, 0, 0, 0) 70%);

  --spacing-container: 1200px;
  --spacing-section: 6rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  /* Force enable selection */
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
}

body {
  font-family: var(--font-main);
  background-color: transparent;
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* --- 3D PERSPECTIVE SCENE --- */
.perspective-scene {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -999;
  /* Behind everything */
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, #1a0033 0%, #000000 60%);
}

.grid-floor {
  position: absolute;
  top: 50%;
  left: -50%;
  width: 200%;
  height: 100%;
  background-image:
    linear-gradient(to right, rgba(112, 0, 255, 0.4) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(112, 0, 255, 0.4) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: 50% 0%;
  animation: scrollGrid 2s linear infinite;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%);
}

.horizon-glow {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to bottom, rgba(255, 0, 127, 0.3), transparent);
  filter: blur(20px);
  z-index: -998;
}

@keyframes scrollGrid {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 50px;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--spacing-container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

.btn-primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 127, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

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

.btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

/* Custom File Input Upload Button */
.premium-file-input {
  width: 100%;
  color: #a0a0a0;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  padding: 0;
  background: rgba(25, 25, 25, 0.5);
  border: 1px dashed rgba(255, 0, 127, 0.4);
}

.premium-file-input:hover {
  border-color: var(--color-primary);
  background: rgba(255, 0, 127, 0.05);
}

.premium-file-input::file-selector-button {
  cursor: pointer;
  border: none;
  background: var(--gradient-main);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 6px 0 0 6px;
  margin-right: 1rem;
  font-family: var(--font-main);
  font-weight: 600;
  transition: opacity 0.3s;
}

.premium-file-input::file-selector-button:hover {
  opacity: 0.9;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo .accent {
  color: var(--color-primary);
}

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

.nav-links a {
  font-size: 0.9rem;
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--color-primary);
}

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

.lang-switch {
  display: flex;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  padding: 3px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
  background: transparent;
  border: none;
  color: #888;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-btn.active {
  background: var(--color-primary);
  color: white;
}

.lang-btn:hover:not(.active) {
  color: white;
}

/* User Menu */
.user-menu-container {
  position: relative;
  display: flex;
  align-items: center;
}

.user-icon-btn {
  color: white;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-primary);
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: -50px;
  /* Adjust to center or align right */
  width: 220px;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 1000;
  overflow: hidden;
}

/* Show Dropdown on Parent Hover (if logged in logic handled via JS class) */
.user-menu-container.logged-in:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  padding: 1rem;
  background: #1a1a1a;
  border-bottom: 1px solid #333;
}

.dropdown-items {
  padding: 0.5rem 0;
}

.dropdown-items li a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #ccc;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.dropdown-items li a:hover {
  background: rgba(255, 0, 127, 0.1);
  color: white;
  padding-left: 1.8rem;
  /* Slight slide effect */
}

.dropdown-items .divider {
  height: 1px;
  background: #333;
  margin: 0.5rem 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 2px;
  background-color: white;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 20%, rgba(112, 0, 255, 0.15) 0%, rgba(5, 5, 5, 0) 50%);
  z-index: -1;
}

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

.version-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 90%;
}

.cta-group {
  display: flex;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  perspective: 1000px;
}

.mockup-container {
  position: relative;
  width: 100%;
  height: 400px;
  /* Placeholder height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-3d {
  width: 100%;
  max-width: 500px;
  height: auto;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 10s infinite linear;
}

@keyframes rotateCube {
  0% {
    transform: rotateX(-15deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(-15deg) rotateY(360deg);
  }
}

.mockup-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a1a1a;
  /* Fallback */
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 0, 127, 0.2) 0%, transparent 60%);
  filter: blur(20px);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.6;
    scale: 1;
  }

  50% {
    opacity: 1;
    scale: 1.2;
  }
}

/* Features Grid */
.features {
  padding: var(--spacing-section) 0;
  background: var(--color-bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 0, 127, 0.3);
}

.icon-box {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Value Prop */
.value-prop {
  padding: var(--spacing-section) 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: 30px 30px;
  /* Optional subtle grid */
}

.value-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Efficiency */
.efficiency {
  padding: var(--spacing-section) 0;
}

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

/* Alternating order for variety if multiple blocks, single here */
.efficiency-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.efficiency-text p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.ui-card {
  background: transparent;
  height: auto;
  border-radius: 20px;
  /* border: 1px solid rgba(255, 255, 255, 0.1); remove border if image has its own frame, keeping it safe for now */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.ui-preview-img {
  width: 100%;
  height: auto;
  display: block;
}

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

.highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 10px;
  border-left: 3px solid var(--color-primary);
}

.h-icon {
  font-size: 1.5rem;
}

/* Partners */
.partners {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #080808;
}

.partners-label {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partners-carousel {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.6;
}

.partner-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}

/* Pricing */
.pricing {
  padding: var(--spacing-section) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

/* Subtle background glow for pricing */
.pricing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(112, 0, 255, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.main-pricing {
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(255, 0, 127, 0.5);
  border-radius: 30px;
  max-width: 450px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 40px rgba(255, 0, 127, 0.1);
  overflow: hidden;
}

.pricing-header {
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(to bottom, rgba(255, 0, 127, 0.1), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin: 1rem 0 0.5rem;
}

.sub-price {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.pricing-body {
  padding: 2rem 2rem 3rem;
}

.annual-fee {
  display: flex;
  justify-content: space-between;
  background: rgba(0, 255, 0, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 255, 0, 0.2);
}

.fee-label {
  font-weight: 600;
}

.fee-value {
  font-weight: 700;
  color: #4ade80;
}

.pricing-features li {
  margin-bottom: 1rem;
  display: flex;
  gap: 10px;
}

.pricing-faq {
  text-align: center;
  margin-top: 2rem;
  color: var(--color-text-muted);
}

.full-width {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

/* Resellers */
.resellers {
  padding: var(--spacing-section) 0;
  text-align: center;
}

.reseller-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.reseller-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  width: 180px;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.reseller-badge.active {
  border-color: var(--color-primary);
  background: rgba(255, 0, 127, 0.05);
  animation: pulse-badge 2s infinite ease-in-out;
}

@keyframes pulse-badge {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.4);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 0 20px 0 rgba(255, 0, 127, 0.2);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 127, 0);
  }
}

a.reseller-badge {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.reseller-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
}

.reseller-badge .flag {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.reseller-badge .country {
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.reseller-badge .domain {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.reseller-badge .status {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  background: var(--color-primary);
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
}

/* Contact */
.contact {
  padding: var(--spacing-section) 0;
  background: var(--color-bg-secondary);
}

.contact-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
}

.contact-form-wrapper h2 {
  margin-bottom: 2rem;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  font-family: var(--font-main);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

.info-item .icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
  max-width: 600px;
  width: 90%;
  z-index: 10000;
  transition: all 0.5s;
}

.cookie-banner.hidden {
  transform: translate(-50%, 100px);
  opacity: 0;
  pointer-events: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
}

.cookie-content p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 0;
}

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

.cookie-link {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: underline;
}

/* Scroll Animations */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.visible {
  opacity: 1;
  transform: none;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 2.8rem;
  }

  .nav-container {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .logo {
    font-size: 1.2rem;
    white-space: nowrap;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .nav-actions .btn-primary {
    display: none;
    /* Hide Acheter button in header to save space on mobile */
  }

  .nav-links {
    position: fixed;
    top: 60px;
    /* Reduced to fit mobile header height better */
    left: 0;
    width: 100%;
    background: #050505;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    clip-path: circle(0px at 100% 0px);
    transition: all 0.5s ease-in-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow-y: auto;
    max-height: calc(100vh - 60px);
  }

  .nav-links.active {
    clip-path: circle(150% at 100% 0px);
  }

  /* Display mobile specific links */
  .mobile-only {
    display: block !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 0.5rem;
  }

  .hero-content,
  .efficiency-layout,
  .features-grid,
  .benefits-list,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .menu-toggle {
    display: flex;
    margin-left: 0.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .cart-drawer {
    width: 90%;
    max-width: none;
  }
}

.mobile-only {
  display: none;
}

/* Cart Styles (New) */
.cart-icon-container {
  position: relative;
  cursor: pointer;
  color: white;
  padding: 8px;
  transition: color 0.3s;
}

.cart-icon-container:hover {
  color: var(--color-primary);
}

.cart-count-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--color-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Drawer */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible !important;
  z-index: 10000 !important;
  display: flex !important;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #111;
  z-index: 9999;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #222;
}

.cart-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cart-item p {
  color: #888;
  font-size: 0.9rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-actions button {
  background: #333;
  border: none;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  cursor: pointer;
}

.cart-item-actions button.remove-btn {
  background: #ff007f33;
  color: #ff007f;
}

.cart-footer {
  padding: 1.5rem;
  background: #1a1a1a;
  border-top: 1px solid #333;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cart-empty {
  text-align: center;
  color: #666;
  margin-top: 2rem;
}

/* Video Demo Section */
.video-demo {
  padding: 4rem 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.video-demo .container {
  text-align: center;
}

.video-demo .section-desc {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.video-container video {
  max-width: 650px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(255, 0, 102, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container video:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 48px rgba(255, 0, 102, 0.25) !important;
}

/* FAQ Section */
.faq-section {
  padding: var(--spacing-section) 0;
  background: #080808;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-5px);
  border-color: rgba(255, 0, 127, 0.2);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: white;
}

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

/* Footer */
footer {
  background: #020202;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: var(--color-text-muted);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

/* Notification Toast */
.notification-toast {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: #111;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid #333;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
}

.notification-toast.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.notification-toast.success {
  border-color: #00ff88;
  color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
}

.notification-toast.error {
  border-color: #ff0055;
  color: #ff0055;
  background: rgba(255, 0, 85, 0.1);
}

/* Blog Styles (Restored) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  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%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 0, 85, 0.5);
}

.blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.blog-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.3;
}

.blog-desc {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  margin-top: auto;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.read-more:hover {
  color: var(--color-primary);
  gap: 12px;
}

/* Single Post Styles */
.post-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  max-width: 800px;
  margin: 0 auto;
}

.post-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.post-meta {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  width: 45%;
}

.nav-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.nav-label {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.nav-title {
  color: #fff;
  font-weight: bold;
}

/* Software Details Section */
.software-details {
  padding: var(--spacing-section) 0;
  background: var(--color-bg);
  position: relative;
}

.details-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.details-eyebrow {
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

.details-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.lead-text {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.sub-text {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.details-list {
  list-style: none;
  padding: 0;
}

.premium-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 10px;
}

.premium-list li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: bold;
}

.details-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
}

.btn-premium-pink {
  background: var(--color-primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(255, 0, 127, 0.3);
  transition: all 0.3s ease;
}

.btn-premium-pink:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 0, 127, 0.5);
  background: var(--color-primary-dark);
}

.container-narrow {
  max-width: 1000px;
  margin: 0 auto;
}

.details-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 3rem 0;
}

@media (max-width: 768px) {

  .details-header-grid,
  .details-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.details-header-grid .header-right {
  display: flex;
  align-items: center;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: #bbb;
  border-left: 3px solid var(--color-primary);
  padding-left: 1.5rem;
  line-height: 1.6;
  max-width: 90%;
}

/* Footer Payment Icons */
.footer-payment-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  align-items: center;
}

.footer-payment-icons img,
.footer-payment-icons svg {
  height: 30px;
  /* Reduced slightly to prevent layout break */
  width: auto;
  filter: grayscale(100%) opacity(0.7) brightness(1.5);
  /* Monochrome, lightened for dark bg */
  transition: all 0.3s ease;
  margin-right: 10px;
}

.footer-payment-icons img:hover,
.footer-payment-icons svg:hover {
  filter: none;
  /* Full color on hover */
  opacity: 1;
  transform: translateY(-2px);
}

.footer-payment-icons svg:hover {
  fill: #fff;
  opacity: 1;
  transform: translateY(-2px);
}

/* Specific Brand Colors on Hover */
.footer-payment-icons .icon-visa:hover {
  fill: #1a73e8;
}

.footer-payment-icons .icon-mastercard:hover {
  fill: #eb001b;
}

/* Partial fill logic needed for SVG, simple fill is ok for mono */
.footer-payment-icons .icon-paypal:hover {
  fill: #003087;
}

.footer-payment-icons .icon-stripe:hover {
  fill: #635bff;
}

/* -------------------------------- */
/* TRIAL SECTION STYLES             */
/* -------------------------------- */
.trial-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.trial-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.trial-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  /* Gold */
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.trial-text h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.trial-text p {
  color: #bbb;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.trial-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.trial-features li {
  font-size: 1rem;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trial-features li::before {
  content: "✔️";
  color: #00ff88;
}

.trial-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.btn-glow {
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-glow:hover {
  box-shadow: 0 0 40px rgba(255, 0, 127, 0.7);
  transform: translateY(-2px);
}

.trial-note {
  font-size: 0.85rem;
  color: #666;
}

.shield-icon {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
  animation: floatShield 6s ease-in-out infinite;
}

.shield-icon svg {
  width: 100%;
  height: auto;
}

@keyframes floatShield {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 900px) {
  .trial-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trial-actions {
    align-items: center;
  }

  .trial-text p {
    margin: 0 auto 2rem;
  }
}

/* --- PRICING GRID LAYOUT FIX (FINAL) --- */
.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    /* Tighter gap */
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: nowrap;
    /* Force side-by-side */
  }

  .pricing-card {
    flex: 1 1 300px;
    /* Grow/shrink, base 300px */
    max-width: 380px;
    /* COMPACT WIDTH */
    min-width: 280px;
    display: flex;
    flex-direction: column;
    /* Ensure no other overrides */
    width: auto !important;
    margin: 0 !important;
  }

  @media (max-width: 768px) {
    .pricing-grid {
      flex-direction: column;
      align-items: center;
      flex-wrap: wrap;
    }

    .pricing-card {
      width: 100% !important;
      max-width: 450px;
    }
  }

  /* -------------------------------- */
  /* CART DRAWER STYLES               */
  /* -------------------------------- */
  .cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
  }

  .cart-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90%;
    height: 100%;
    background: #111;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid #333;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .cart-drawer.open {
    transform: translateX(0);
  }

  .cart-header {
    padding: 1.5rem;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cart-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #fff;
  }

  .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
  }

  .close-btn:hover {
    color: var(--color-primary);
  }

  .cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .cart-item-details h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
    color: #fff;
  }

  .cart-item-details p {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
  }

  .cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .cart-item-actions button {
    background: #333;
    border: none;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cart-item-actions span {
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
    color: #fff;
  }

  .cart-item-actions .remove-btn {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    margin-left: 10px;
    font-size: 1.2rem;
    line-height: 1;
  }

  .cart-item-actions .remove-btn:hover {
    background: #ff4444;
    color: white;
  }

  .cart-footer {
    padding: 1.5rem;
    background: #1a1a1a;
    border-top: 1px solid #333;
  }

  .cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
  }

  .cart-empty {
    text-align: center;
    color: #888;
    margin-top: 2rem;
  }

  /* Badge CSS */
  .cart-icon-container {
    position: relative;
    cursor: pointer;
    padding: 8px;
  }

  .cart-count-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid #050505;
  }

/* Gallery Slider */
.gallery-slider {
  padding: 4rem 0;
  background-color: #050505;
  overflow: hidden;
}

.slider-track-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.slider-track-container::before,
.slider-track-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.slider-track-container::before {
  left: 0;
  background: linear-gradient(to right, #050505 0%, transparent 100%);
}

.slider-track-container::after {
  right: 0;
  background: linear-gradient(to left, #050505 0%, transparent 100%);
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scrollTrack 80s linear infinite;
  gap: 2rem;
}

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

.slider-track img {
  height: 250px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.slider-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--color-primary);
}

@keyframes scrollTrack {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 1rem));
  }
}

@media (max-width: 768px) {
  .slider-track img {
    height: 180px;
  }
}

/* Lightbox Styles */
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  animation: zoomIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 100000;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--color-primary);
  text-decoration: none;
}

@keyframes zoomIn {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

/* WhatsApp Community Section */
.whatsapp-community {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, #050505 100%);
  border-top: 1px solid rgba(37, 211, 102, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  position: relative;
  z-index: 10;
}

.whatsapp-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.whatsapp-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whatsapp-icon-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background: rgba(37, 211, 102, 0.15);
  border-radius: 50%;
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
  animation: pulse-whatsapp 2s infinite ease-in-out;
}

.whatsapp-icon-big {
  color: #25D366;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  margin-top: 1.5rem;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #128C7E;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  transform: translateY(-3px);
  color: white;
}

/* Testimonials Alignment Fix */
.customer-feedback > div > div {
  display: flex !important;
  flex-direction: column !important;
  height: 100%;
}
.customer-feedback > div > div > p {
  flex-grow: 1;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* GTranslate Widget Custom Premium Styling */


/* Force dark mode and neon aesthetic onto the floating wrapper */


/* Hover glow effect for the main button */


/* Style the dropdown menu items */




/* Hover on language rows */


/* Hide footers on auth pages to prevent flex layout breaks */
body.auth-page footer {
  display: none !important;
}