

:root {
  /* Deep dark theme */
  --bg-color: #050505;
  --bg-color-light: #111216; /* For subtle contrast without glass */
  --text-color: #d1d5db; /* Increased readability contrast */
  --heading-color: #ffffff;
  
  /* Accents */
  --accent-color: #45a29e; /* Neon Cyan */
  --accent-blue: #2563eb; /* Deep Electric Blue for beauty and depth */
  --accent-glow: rgba(69, 162, 158, 0.4);
  --accent-blue-glow: rgba(37, 99, 235, 0.4);
  --secondary-accent: #66fcf1;
  --gradient-text: linear-gradient(90deg, #ffffff 10%, #66fcf1 60%, #2563eb 100%);
  
  /* Glassmorphism settings */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  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: 80px 80px;
  background-attachment: fixed;
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Background Glow */
body::before {
  content: '';
  position: fixed;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(69, 162, 158, 0.06) 40%, rgba(5, 5, 5, 0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}
body::after {
  content: '';
  position: fixed;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(102, 252, 241, 0.08) 0%, rgba(37, 99, 235, 0.05) 50%, rgba(5, 5, 5, 0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--heading-color);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 { font-size: 3.5rem; letter-spacing: -1px; }
h2 { font-size: 2.5rem; letter-spacing: -0.5px; }
h3 { font-size: 1.5rem; }

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

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--secondary-accent);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

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

.glass-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: 1px;
}
.logo span {
  color: var(--accent-color);
}
.logo-icon {
  width: 36px;
  height: 36px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 6px rgba(102, 252, 241, 0.4));
  transition: var(--transition);
}
.logo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.logo:hover .logo-icon {
  transform: scale(1.08) rotate(3deg);
  filter: drop-shadow(0 0 10px rgba(102, 252, 241, 0.7));
}
.header-slogan {
  font-size: 0.75rem;
  color: #8b9bb4;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 16px;
  font-family: var(--font-main);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  max-width: 180px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .header-slogan {
    display: none;
  }
}

/* Navigation */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.8;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--secondary-accent);
  transition: var(--transition);
  box-shadow: 0 0 8px var(--accent-glow);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  opacity: 1;
}

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

.burger-menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.burger-menu span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--heading-color);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}

.btn-primary {
  background: var(--accent-color);
  color: #000;
  border: none;
  box-shadow: 0 4px 20px var(--accent-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: all 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--secondary-accent);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 252, 241, 0.4);
}

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

.btn-outline:hover {
  border-color: var(--accent-color);
  background: rgba(69, 162, 158, 0.1);
  color: var(--secondary-accent);
  transform: translateY(-2px);
}

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

.hero-video-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.4;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.2) 0%, rgba(5,5,5,1) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  color: #d1d5db;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

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

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

/* Cards (Services) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-text);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
  border-color: rgba(102, 252, 241, 0.25);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(102, 252, 241, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 2rem;
  color: #9cb3c9;
}

.link-arrow {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.link-arrow:hover {
  gap: 12px;
  color: var(--secondary-accent);
}

/* Trust / Features Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.trust-item {
  padding: 2rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.03);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: var(--transition);
}

.trust-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(69, 162, 158, 0.3);
}

.trust-icon {
  font-size: 2rem;
  color: var(--accent-color);
}

.trust-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.trust-content p {
  font-size: 0.95rem;
  color: #8b9bb4;
}

/* Cases Grid (Before/After alternative) */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.case-card {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(37, 99, 235, 0.08);
}

.case-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.6s ease;
}

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

.case-info {
  padding: 1.5rem;
}

.case-info h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* Brands Preview */
.brands-preview {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0.6;
  padding: 2rem 0;
}

/* Forms */
.form-container {
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

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

.form-control {
  width: 100%;
  padding: 1.2rem;
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--heading-color);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(69, 162, 158, 0.2);
  background-color: rgba(0, 0, 0, 0.6);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a0aab2' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(102, 252, 241, 0.1);
  border: 1px solid rgba(102, 252, 241, 0.2);
  border-radius: 20px;
  color: var(--secondary-accent);
  font-size: 0.85rem;
  justify-content: center;
  margin-top: 1rem;
  width: 100%;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 1.5rem;
  text-align: center;
}

/* Footer */
.footer {
  background-color: rgba(0,0,0,0.8);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer h4 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer p, .footer a {
  color: #9cb3c9;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.footer a:hover {
  color: var(--secondary-accent);
}

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

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero {
    padding: 140px 0 80px;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links a {
    font-size: 1.5rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
}

/* ==================================
   E-Commerce & Catalog
   ================================== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(69, 162, 158, 0.3);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.product-header {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 1rem;
}

.product-title {
  font-size: 1.25rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-accent);
}

.product-desc {
  font-size: 0.9rem;
  color: #8b9bb4;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

.qty-btn {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  border-radius: 4px;
  width: 35px;
  height: 35px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}

.qty-btn:hover {
  background: var(--accent-color);
  color: #000;
}

.qty-input {
  width: 50px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 600;
}

.add-to-cart-btn {
  width: 100%;
}

.ask-ai-btn {
  margin-top: 0.5rem;
  width: 100%;
  font-size: 0.85rem;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ask-ai-btn:hover {
  background: rgba(69, 162, 158, 0.1);
  border-color: var(--accent-color);
  color: var(--secondary-accent);
}

/* ==================================
   AI Assistant Modal
   ================================== */
.ai-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ai-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ai-modal-content {
  background: #111216;
  width: 90%;
  max-width: 400px;
  border-radius: 16px;
  border: 1px solid var(--accent-color);
  box-shadow: 0 0 30px rgba(69, 162, 158, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-modal-overlay.active .ai-modal-content {
  transform: translateY(0) scale(1);
}

.ai-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-modal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}

.ai-modal-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
}

.ai-modal-close:hover {
  opacity: 1;
  color: var(--accent-color);
}

.ai-chat-body {
  padding: 1.5rem;
  min-height: 200px;
  max-height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ai-message {
  background: rgba(69, 162, 158, 0.1);
  padding: 1rem;
  border-radius: 12px;
  border-top-left-radius: 0;
  align-self: flex-start;
  max-width: 85%;
  font-size: 0.9rem;
  color: #d1d5db;
}

.ai-chat-input-area {
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 10px;
}

.ai-chat-input-area input {
  flex-grow: 1;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 0.8rem 1rem;
  color: #fff;
  font-family: var(--font-main);
}

.ai-chat-input-area input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.ai-chat-input-area button {
  background: var(--accent-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

/* ==================================
   WOW Enhancements
   ================================== */

/* Particles canvas in hero */
#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Promo strip below header */
.promo-strip {
  background: linear-gradient(90deg, rgba(69,162,158,0.15), rgba(102,252,241,0.2), rgba(69,162,158,0.15));
  border-bottom: 1px solid rgba(102,252,241,0.2);
  padding: 10px 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--secondary-accent);
  position: relative;
  z-index: 999;
  letter-spacing: 0.5px;
  animation: shimmerStrip 4s infinite linear;
  background-size: 200% 100%;
}
@keyframes shimmerStrip {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Stats / Counters section */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg-color) 0%, rgba(69,162,158,0.04) 50%, var(--bg-color) 100%);
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}
.stats-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

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

.stat-item {
  padding: 2rem 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #8b9bb4;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .stat-number { font-size: 2.5rem; }
}

/* Before / After Slider */
.before-after-section {
  padding: 100px 0;
  background: var(--bg-color-light);
}

.before-after-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  border: 1px solid var(--glass-border);
  aspect-ratio: 16/9;
  background: #111;
}

.before-after-before,
.before-after-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.before-after-before img,
.before-after-after img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.before-after-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s linear;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--secondary-accent);
  z-index: 10;
  box-shadow: 0 0 20px rgba(102,252,241,0.6);
  cursor: col-resize;
}

.slider-handle::before,
.slider-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--secondary-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(102,252,241,0.5);
}
.slider-handle::before { left: -18px; }
.slider-handle::after  { left: -18px; background: transparent; border: 3px solid var(--secondary-accent); box-shadow: none; width: 50px; height: 50px; left: -23px; }

.slider-label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.7);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 5;
}
.slider-label-before { left: 16px; color: #a0aab2; border: 1px solid rgba(255,255,255,0.1); }
.slider-label-after  { right: 16px; color: var(--secondary-accent); border: 1px solid rgba(102,252,241,0.3); }

.before-after-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.ba-tab {
  padding: 0.5rem 1.4rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
  color: #a0aab2;
  background: transparent;
  transition: var(--transition);
  font-family: var(--font-main);
}
.ba-tab.active,
.ba-tab:hover {
  border-color: var(--accent-color);
  color: var(--secondary-accent);
  background: rgba(69,162,158,0.1);
}

/* Floating WhatsApp button */
.float-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.float-chat-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,99,235,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: chatPulse 2.5s infinite;
  cursor: pointer;
  border: none;
  color: #fff;
  z-index: 1000;
}
.chat-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid var(--bg-color);
  display: none;
}
.float-chat-btn svg { color: #fff; }
.float-chat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,99,235,0.7);
  animation: none;
}
@keyframes chatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,99,235,0.5); }
  50%       { box-shadow: 0 4px 35px rgba(37,99,235,0.8), 0 0 0 10px rgba(37,99,235,0.1); }
}

/* ====================================================
   LIVE CHAT WIDGET
   ==================================================== */
.chat-widget-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 380px;
  height: 500px;
  background: rgba(10, 12, 16, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  z-index: 2000;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.chat-widget-container.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.chat-header {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-title-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 0.9rem;
}
.chat-info {
  display: flex;
  flex-direction: column;
}
.chat-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
.chat-status {
  font-size: 0.75rem;
  color: #10B981;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #10B981;
  border-radius: 50%;
}
.chat-close-btn {
  background: transparent;
  border: none;
  color: #8b9bb4;
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-close-btn:hover {
  color: #fff;
}
.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.4;
  word-wrap: break-word;
}
.chat-msg.user {
  align-self: flex-end;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-msg.admin {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-bottom-left-radius: 4px;
}
.chat-msg.system {
  align-self: center;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
  text-align: center;
  font-size: 0.8rem;
  border-radius: 8px;
  max-width: 90%;
}
.chat-footer {
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 8px;
  background: rgba(5, 5, 5, 0.3);
}
.chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
}
.chat-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.08);
}
.chat-send-btn {
  background: var(--accent-blue);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-send-btn:hover {
  opacity: 0.9;
}
.chat-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.float-phone-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px var(--accent-glow);
  transition: transform 0.3s ease;
  text-decoration: none;
}
.float-phone-btn svg { color: #000; }
.float-phone-btn:hover { transform: scale(1.1); }

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: #6b7280; }
.breadcrumb a:hover { color: var(--accent-color); }
.breadcrumb .bc-sep { opacity: 0.4; }
.breadcrumb .bc-current { color: #a0aab2; }

/* Product card badge/ribbon */
.product-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.badge-hit    { background: rgba(102,252,241,0.15); color: var(--secondary-accent); border: 1px solid rgba(102,252,241,0.3); }
.badge-new    { background: rgba(99,102,241,0.15);  color: #818cf8; border: 1px solid rgba(99,102,241,0.3); }
.badge-sale   { background: rgba(239,68,68,0.15);   color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.badge-pro    { background: rgba(234,179,8,0.15);   color: #facc15; border: 1px solid rgba(234,179,8,0.3); }

/* Catalog filter bar */
.catalog-filters {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
  color: #a0aab2;
  background: transparent;
  transition: var(--transition);
  font-family: var(--font-main);
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--accent-color);
  color: var(--secondary-accent);
  background: rgba(69,162,158,0.1);
}

/* Category hero card (catalog hub) */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}
.cat-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid var(--glass-border);
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.cat-card-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  border-radius: 0;
  opacity: 0.45;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.cat-card:hover .cat-card-bg {
  opacity: 0.6;
  transform: scale(1.05);
}
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5,5,5,0.95) 100%);
}
.cat-card-body {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.cat-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(69,162,158,0.15);
  border: 1px solid rgba(69,162,158,0.3);
  margin-bottom: 1rem;
  color: var(--secondary-accent);
}
.cat-card h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.cat-card p  { font-size: 0.9rem; color: #8b9bb4; margin-bottom: 1.2rem; }
.cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary-accent);
  font-weight: 600;
  font-size: 0.9rem;
}
.cat-card.featured {
  border-color: rgba(102,252,241,0.25);
  box-shadow: 0 0 30px rgba(69,162,158,0.1);
}

/* Urgency / offer block */
.urgency-block {
  background: linear-gradient(135deg, rgba(69,162,158,0.08), rgba(102,252,241,0.04));
  border: 1px solid rgba(102,252,241,0.15);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 4rem;
}
.urgency-text h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.urgency-text p  { font-size: 0.9rem; color: #8b9bb4; margin: 0; }
.urgency-countdown {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.cd-unit {
  text-align: center;
  min-width: 54px;
  padding: 0.5rem;
  background: rgba(0,0,0,0.4);
  border-radius: 8px;
  border: 1px solid rgba(102,252,241,0.15);
}
.cd-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary-accent);
  line-height: 1;
}
.cd-label { font-size: 0.65rem; color: #6b7280; text-transform: uppercase; letter-spacing: 1px; }
.cd-sep { font-size: 1.4rem; color: var(--secondary-accent); font-weight: 800; }

/* Review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  padding: 1.8rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: rgba(69,162,158,0.2);
  background: rgba(255,255,255,0.03);
}
.review-stars { color: #facc15; font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.review-text  { font-size: 0.95rem; color: #a0aab2; margin-bottom: 1rem; font-style: italic; }
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #000;
  flex-shrink: 0;
}
.review-name  { font-weight: 600; color: var(--heading-color); font-size: 0.9rem; }
.review-car   { font-size: 0.8rem; color: #6b7280; }

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #000;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.process-step h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.9rem; color: #8b9bb4; }

/* ====================================================
   CART DRAWER & BONUS SYSTEM
   ==================================================== */

#aw-cart-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
#aw-cart-overlay.open { opacity: 1; pointer-events: all; }

#aw-cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw); z-index: 950;
  background: #0f1117; border-left: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.32s cubic-bezier(.4,0,.2,1);
  font-family: 'Inter', sans-serif;
}
#aw-cart-drawer.open { transform: translateX(0); }
body.cart-open { overflow: hidden; }

.acd-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 20px 16px; border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.acd-title { font-size: 1.1rem; font-weight: 700; color: #fff; font-family: 'Outfit', sans-serif; }
.acd-count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-color); color: #fff; font-size: 0.72rem; font-weight: 700;
  margin-left: 8px; vertical-align: middle;
}
.acd-close {
  background: rgba(255,255,255,0.06); border: none; color: #fff;
  width: 32px; height: 32px; border-radius: 8px; cursor: pointer;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.acd-close:hover { background: rgba(255,255,255,0.12); }

.acd-bonus-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: rgba(69,162,158,0.08);
  border-bottom: 1px solid rgba(69,162,158,0.12); flex-shrink: 0;
  font-size: 0.82rem;
}
.acd-bonus-icon { color: var(--accent-color); font-size: 1rem; }
#acd-bonus-bal { color: #a0aab2; flex: 1; }
.acd-bonus-earn {
  background: rgba(34,197,94,0.15); color: #22c55e;
  padding: 2px 8px; border-radius: 50px; font-size: 0.72rem; font-weight: 700;
}

.acd-items {
  flex: 1; overflow-y: auto; padding: 12px 20px;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.acd-empty { color: #5a6580; font-size: 0.9rem; text-align: center; margin: 40px 0; line-height: 1.6; }
.acd-item {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 8px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.acd-item-body { min-width: 0; }
.acd-item-name { font-size: 0.85rem; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acd-item-price { font-size: 0.75rem; color: #5a6580; margin-top: 2px; }
.acd-item-ctrl { display: flex; align-items: center; gap: 4px; }
.acd-qty {
  width: 26px; height: 26px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1); background: none; color: #fff;
  cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.acd-qty:hover { background: rgba(255,255,255,0.08); }
.acd-qty-num { min-width: 18px; text-align: center; font-size: 0.85rem; color: #fff; }
.acd-del { background: none; border: none; color: #5a6580; cursor: pointer; font-size: 0.8rem; padding: 4px; transition: color 0.15s; }
.acd-del:hover { color: #ef4444; }
.acd-item-subtotal { font-size: 0.85rem; font-weight: 600; color: #fff; text-align: right; white-space: nowrap; }

.acd-upsell { padding: 12px 20px; border-top: 1px solid rgba(255,255,255,0.05); flex-shrink: 0; }
.acd-upsell-title { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: #5a6580; margin-bottom: 10px; font-weight: 600; }
.acd-up-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05); margin-bottom: 6px;
}
.acd-up-name { flex: 1; font-size: 0.8rem; color: #a0aab2; }
.acd-up-price { font-size: 0.8rem; color: #fff; font-weight: 600; white-space: nowrap; }
.acd-up-btn {
  width: 26px; height: 26px; border-radius: 6px; border: none;
  background: var(--accent-color); color: #fff; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.15s;
}
.acd-up-btn:hover { background: var(--accent-hover); }

.acd-footer { padding: 16px 20px; border-top: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; }
.acd-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.acd-total-row span:first-child { font-size: 0.9rem; color: #a0aab2; }
.acd-total-sum { font-size: 1.3rem; font-weight: 700; color: #fff; }
.acd-earn-row { margin-bottom: 14px; }
.acd-earn-label { font-size: 0.75rem; color: #22c55e; font-weight: 600; }

.acd-order-form { display: flex; gap: 8px; margin-bottom: 10px; }
.acd-phone-input {
  flex: 1; padding: 11px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 0.875rem;
}
.acd-phone-input:focus { outline: none; border-color: var(--accent-color); }
.acd-phone-input::placeholder { color: #5a6580; }
.acd-order-btn {
  padding: 11px 18px; border: none; border-radius: 10px;
  background: var(--accent-color); color: #fff; font-size: 0.875rem; font-weight: 700;
  cursor: pointer; white-space: nowrap; transition: background 0.2s;
}
.acd-order-btn:hover { background: var(--accent-hover); }
.acd-hint { font-size: 0.72rem; color: #5a6580; text-align: center; margin: 0; }

.acd-confirm { text-align: center; padding: 8px 0; }
.acd-confirm-icon { font-size: 2.5rem; color: #22c55e; margin-bottom: 8px; }
.acd-confirm-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.acd-confirm-text { font-size: 0.875rem; color: #a0aab2; margin-bottom: 8px; }
.acd-confirm-bonus { font-size: 0.8rem; color: #22c55e; font-weight: 600; }

#aw-cart-btn {
  position: fixed; bottom: 80px; right: 20px; z-index: 800;
  width: 52px; height: 52px; border-radius: 50%; border: none;
  background: var(--accent-color); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(69,162,158,0.4); transition: background 0.2s, transform 0.2s;
}
#aw-cart-btn:hover { background: var(--accent-hover); transform: scale(1.05); }
#aw-cart-btn .cart-count {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #ef4444; color: #fff; font-size: 0.68rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #0f1117;
}

/* ====================================================
   TASK NAVIGATION
   ==================================================== */
.task-nav { display: flex; gap: 8px; flex-wrap: wrap; padding: 28px 0 8px; }
.task-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.1);
  background: var(--bg-color-light); color: #a0aab2;
  font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: all 0.22s; white-space: nowrap;
}
.task-btn:hover, .task-btn.active { background: var(--accent-color); border-color: var(--accent-color); color: #fff; }

/* ====================================================
   PRODUCT CARDS
   ==================================================== */
.stp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px; margin-bottom: 48px;
}
.stp-card {
  background: var(--card-bg); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; position: relative;
  padding: 20px;
}
.stp-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); border-color: rgba(69,162,158,0.2); }
.stp-card.hidden { display: none; }

.stp-img { position: relative; height: 180px; overflow: hidden; flex-shrink: 0; }
.stp-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.stp-card:hover .stp-img img { transform: scale(1.04); }
.stp-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%); }

.stp-layer-badge, .layer-badge {
  display: inline-block;
  padding: 3px 10px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
}

.cross-chip {
  display: inline-block; font-size: 0.72rem; color: var(--accent-color);
  background: rgba(69,162,158,0.08); border: 1px solid rgba(69,162,158,0.18);
  border-radius: 50px; padding: 2px 9px; cursor: pointer; transition: background 0.2s; margin: 2px 2px 2px 0;
}
.cross-chip:hover { background: rgba(69,162,158,0.2); }
.layer-1 { background: rgba(99,102,241,0.9); color: #fff; }
.layer-2 { background: rgba(59,130,246,0.9); color: #fff; }
.layer-3 { background: rgba(245,158,11,0.9); color: #fff; }
.layer-s { background: rgba(16,185,129,0.9); color: #fff; }
.layer-k { background: rgba(239,68,68,0.9); color: #fff; }
.layer-a { background: rgba(156,163,175,0.9); color: #fff; }

.studio-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(69,162,158,0.92); color: #fff;
  padding: 3px 9px; border-radius: 50px; font-size: 0.65rem; font-weight: 700;
  z-index: 2; backdrop-filter: blur(4px);
}

.stp-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.stp-name { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px; font-family: 'Outfit', sans-serif; }
.stp-tagline { font-size: 0.8rem; color: #a0aab2; margin-bottom: 12px; line-height: 1.4; }

.stp-effects { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.effect-row { display: flex; align-items: center; gap: 8px; }
.effect-label { font-size: 0.68rem; color: #5a6580; width: 90px; flex-shrink: 0; }
.effect-bar-track { flex: 1; height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.effect-bar-fill { height: 100%; border-radius: 2px; }
.fill-vibro { background: #6366f1; }
.fill-sound { background: #3b82f6; }
.fill-heat  { background: #f59e0b; }

.stp-zones { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.zone-tag {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px; padding: 2px 8px; font-size: 0.68rem; color: #a0aab2;
}

.stp-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.diff-badge { font-size: 0.72rem; font-weight: 600; }
.diff-easy   { color: #22c55e; }
.diff-medium { color: #f59e0b; }
.diff-hard   { color: #ef4444; }
.stp-size { font-size: 0.72rem; color: #5a6580; }

.stp-footer { margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.05); }
.stp-price-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 10px; }
.stp-price { font-size: 1.3rem; font-weight: 700; color: #fff; }
.stp-unit { font-size: 0.75rem; color: #5a6580; margin-bottom: 4px; }
.stp-bonus { font-size: 0.72rem; color: var(--accent-color); font-weight: 600; }
.stp-bonus::before { content: "★ "; }
.stp-add-btn {
  width: 100%; padding: 11px; border: none; border-radius: 10px;
  background: var(--accent-color); color: #fff; font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.stp-add-btn:hover { background: var(--accent-hover); }

.stp-cs { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.04); }
.stp-cs-title { font-size: 0.68rem; color: #5a6580; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.stp-cs-items { display: flex; gap: 6px; flex-wrap: wrap; }
.stp-cs-chip {
  font-size: 0.7rem; color: var(--accent-color); background: rgba(69,162,158,0.08);
  border: 1px solid rgba(69,162,158,0.15); border-radius: 50px; padding: 3px 10px;
  cursor: pointer; transition: background 0.2s;
}
.stp-cs-chip:hover { background: rgba(69,162,158,0.18); }

/* ====================================================
   KIT HERO SECTION
   ==================================================== */
.kits-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.kit-hero-card {
  background: linear-gradient(135deg, rgba(69,162,158,0.08) 0%, rgba(99,102,241,0.06) 100%);
  border: 1px solid rgba(69,162,158,0.15); border-radius: 14px;
  padding: 20px; display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.kit-hero-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(69,162,158,0.12); }
.kit-hero-card.kit-budget { border-color: rgba(34,197,94,0.2); background: linear-gradient(135deg, rgba(34,197,94,0.06) 0%, transparent 100%); }
.khc-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent-color); }
.khc-name { font-size: 1rem; font-weight: 700; color: #fff; font-family: 'Outfit', sans-serif; line-height: 1.3; }
.khc-includes { font-size: 0.78rem; color: #a0aab2; line-height: 1.5; }
.khc-price { font-size: 1.25rem; font-weight: 700; color: #fff; margin-top: auto; }
.khc-price span { font-size: 0.75rem; font-weight: 400; color: #5a6580; }
.khc-btn {
  width: 100%; padding: 9px; border: none; border-radius: 8px;
  background: var(--accent-color); color: #fff; font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.khc-btn:hover { background: var(--accent-hover); }

/* Expert stats */
.expert-block {
  background: var(--bg-color-light); border-radius: 16px; padding: 28px 32px;
  display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 48px;
  border: 1px solid rgba(255,255,255,0.05);
}
.expert-stat { text-align: center; flex: 1; min-width: 100px; }
.expert-stat .num { font-size: 2rem; font-weight: 800; color: var(--accent-color); font-family: 'Outfit', sans-serif; }
.expert-stat .lbl { font-size: 0.78rem; color: #5a6580; margin-top: 4px; line-height: 1.4; }

/* Lead magnet */
.lead-magnet {
  background: linear-gradient(135deg, rgba(69,162,158,0.1), rgba(99,102,241,0.08));
  border: 1px solid rgba(69,162,158,0.2); border-radius: 20px;
  padding: 40px; text-align: center; margin-bottom: 60px;
}
.lead-magnet h2 { margin-bottom: 10px; }
.lead-magnet p { color: #a0aab2; margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
.lead-magnet-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.lead-magnet-input {
  flex: 1; min-width: 200px; padding: 12px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 0.9rem;
}
.lead-magnet-input:focus { outline: none; border-color: var(--accent-color); }
.lead-magnet-input::placeholder { color: #5a6580; }
.lead-magnet-btn {
  padding: 12px 24px; border: none; border-radius: 10px;
  background: var(--accent-color); color: #fff; font-weight: 600; font-size: 0.9rem;
  cursor: pointer; white-space: nowrap; transition: background 0.2s;
}
.lead-magnet-btn:hover { background: var(--accent-hover); }
.lead-magnet-note { font-size: 0.75rem; color: #5a6580; margin-top: 12px; }

/* Section heading sub */
.section-sub { color: #5a6580; font-size: 0.9rem; margin-bottom: 24px; display: block; }

/* ====================================================
   PRODUCT CARD VISUAL HEADER
   ==================================================== */
.stp-card { padding: 0 !important; }

.card-head {
  height: 160px; border-radius: 16px 16px 0 0; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 10px 12px; position: relative; flex-shrink: 0;
}
.card-head-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.4s ease;
}
.stp-card:hover .card-head-img { transform: scale(1.05); }
.card-head-overlay {
  position: absolute; inset: 0;
}
.card-head.ch-vibro .card-head-overlay { background: linear-gradient(160deg, rgba(49,46,129,0.72) 0%, rgba(99,102,241,0.55) 100%); }
.card-head.ch-sound .card-head-overlay { background: linear-gradient(160deg, rgba(30,58,95,0.72) 0%, rgba(59,130,246,0.55) 100%); }
.card-head.ch-heat  .card-head-overlay { background: linear-gradient(160deg, rgba(120,53,15,0.72) 0%, rgba(245,158,11,0.55) 100%); }
.card-head.ch-sand  .card-head-overlay { background: linear-gradient(160deg, rgba(6,78,59,0.72) 0%, rgba(16,185,129,0.55) 100%); }
.card-head.ch-anti  .card-head-overlay { background: linear-gradient(160deg, rgba(31,41,55,0.75) 0%, rgba(107,114,128,0.55) 100%); }
.card-head.ch-tool  .card-head-overlay { background: linear-gradient(160deg, rgba(28,25,23,0.78) 0%, rgba(120,113,108,0.55) 100%); }
.card-head-badges { position: relative; z-index: 1; display: flex; gap: 6px; flex-wrap: wrap; }

/* Description line clamp — makes cards uniform within a row */
.card-desc {
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden; font-size: 0.84rem; color: #a0aab2; line-height: 1.5;
  margin-bottom: 12px; min-height: 5.1em;
}

.tier-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 50px; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.2);
}
.tier-start   { background: rgba(34,197,94,0.2);  color: #4ade80; }
.tier-optimal { background: rgba(59,130,246,0.2); color: #93c5fd; }
.tier-premium { background: rgba(168,85,247,0.2); color: #c4b5fd; }
.tier-max     { background: rgba(251,191,36,0.2); color: #fde68a; }

.card-body {
  padding: 16px; flex: 1; display: flex; flex-direction: column;
}

/* ====================================================
   KIT CARD — HERO VERSION
   ==================================================== */
.kit-card-hero {
  background: var(--card-bg); border: 1px solid rgba(69,162,158,0.2);
  border-radius: 18px; overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s; position: relative;
}
.kit-card-hero:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(69,162,158,0.15); }

.kit-card-hero.kit-popular { border-color: rgba(251,191,36,0.4); }
.kit-card-hero.kit-recommended { border-color: rgba(168,85,247,0.3); }

.kit-head {
  padding: 20px 20px 16px;
  background: linear-gradient(135deg, rgba(69,162,158,0.12) 0%, rgba(99,102,241,0.08) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.kit-highlight-badge {
  padding: 4px 12px; border-radius: 50px; font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap;
}
.kit-highlight-badge.popular    { background: rgba(251,191,36,0.2); color: #fde68a; border: 1px solid rgba(251,191,36,0.3); }
.kit-highlight-badge.recommended{ background: rgba(168,85,247,0.2); color: #c4b5fd; border: 1px solid rgba(168,85,247,0.3); }
.kit-highlight-badge.first-step { background: rgba(34,197,94,0.2);  color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.kit-highlight-badge.max-effect { background: rgba(239,68,68,0.18); color: #fca5a5; border: 1px solid rgba(239,68,68,0.3); }

.kit-name { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 6px; font-family: 'Outfit', sans-serif; line-height: 1.3; }
.kit-desc { font-size: 0.83rem; color: #a0aab2; line-height: 1.5; }

.kit-results {
  padding: 14px 20px; display: flex; flex-direction: column; gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.kit-result-item {
  display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: #e2e8f0;
}
.kit-result-item::before { content: '✓'; color: #4ade80; font-weight: 700; flex-shrink: 0; }

.kit-includes {
  padding: 12px 20px; background: rgba(255,255,255,0.02);
  font-size: 0.78rem; color: #5a6580; line-height: 1.6;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.kit-includes strong { color: #8b9bb4; }

.kit-footer {
  padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.kit-price-big { font-size: 1.6rem; font-weight: 800; color: #66fcf1; font-family: 'Outfit', sans-serif; }
.kit-price-sub { font-size: 0.72rem; color: #5a6580; margin-top: 1px; }

/* ====================================================
   REVIEWS
   ==================================================== */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
}
.review-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 22px; display: flex; flex-direction: column; gap: 12px;
}
.review-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; }
.review-text { font-size: 0.88rem; color: #c9d1d9; line-height: 1.6; font-style: italic; }
.review-author { font-size: 0.78rem; color: #5a6580; }
.review-author strong { color: #8b9bb4; display: block; font-style: normal; }
.review-zone { display: inline-block; font-size: 0.68rem; background: rgba(69,162,158,0.08); color: var(--accent-color); border: 1px solid rgba(69,162,158,0.15); border-radius: 50px; padding: 2px 8px; margin-top: 4px; }

/* ====================================================
   TIER PROGRESSION BAR
   ==================================================== */
.tier-line {
  display: flex; gap: 0; border-radius: 12px; overflow: hidden; margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.06);
}
.tier-step {
  flex: 1; padding: 14px 12px; text-align: center; border-right: 1px solid rgba(255,255,255,0.06);
  cursor: pointer; transition: background 0.2s;
}
.tier-step:last-child { border-right: none; }
.tier-step:hover { background: rgba(255,255,255,0.03); }
.tier-step-label { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.tier-step-name { font-size: 0.82rem; font-weight: 600; color: #fff; }
.tier-step-price { font-size: 0.72rem; color: #5a6580; margin-top: 3px; }
.tier-step.ts-start   { background: rgba(34,197,94,0.05);  }
.tier-step.ts-start   .tier-step-label { color: #4ade80; }
.tier-step.ts-optimal { background: rgba(59,130,246,0.05); }
.tier-step.ts-optimal .tier-step-label { color: #93c5fd; }
.tier-step.ts-premium { background: rgba(168,85,247,0.05); }
.tier-step.ts-premium .tier-step-label { color: #c4b5fd; }
.tier-step.ts-max     { background: rgba(251,191,36,0.05); }
.tier-step.ts-max     .tier-step-label { color: #fde68a; }

/* ====================================================
   STARTER RECOMMENDATION
   ==================================================== */
.starter-rec {
  background: linear-gradient(135deg, rgba(69,162,158,0.08), rgba(99,102,241,0.06));
  border: 1px solid rgba(69,162,158,0.18); border-radius: 16px; padding: 24px;
  display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; margin-bottom: 32px;
}
.starter-rec-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.starter-rec-items { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.starter-item {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 10px 14px; cursor: pointer; transition: border-color 0.2s;
  font-size: 0.85rem;
}
.starter-item:hover { border-color: var(--accent-color); }
.starter-item strong { display: block; color: #fff; margin-bottom: 2px; }
.starter-item span { color: #66fcf1; font-weight: 700; }

/* ====================================================
   STICKY PICKER CTA
   ==================================================== */
.sticky-picker {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 200; display: flex; align-items: center; gap: 10px;
  background: rgba(13,17,23,0.92); backdrop-filter: blur(16px);
  border: 1px solid rgba(69,162,158,0.3); border-radius: 50px;
  padding: 10px 20px 10px 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: opacity 0.3s, transform 0.3s;
}
.sticky-picker.hidden { opacity: 0; transform: translateX(-50%) translateY(20px); pointer-events: none; }
.sticky-picker-btn {
  background: var(--accent-color); color: #fff; border: none; border-radius: 50px;
  padding: 9px 20px; font-size: 0.9rem; font-weight: 700; cursor: pointer;
  white-space: nowrap; transition: background 0.2s;
}
.sticky-picker-btn:hover { background: var(--accent-hover); }
.sticky-picker-text { font-size: 0.8rem; color: #8b9bb4; white-space: nowrap; }

/* Mobile responsiveness additions */
@media (max-width: 768px) {
  .chat-widget-container {
    width: calc(100% - 40px);
    right: 20px;
    bottom: 90px;
    height: 450px;
  }
  .sticky-picker {
    width: calc(100% - 40px);
    bottom: 20px;
    padding: 8px 16px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
  }
  .sticky-picker-text {
    white-space: normal;
    font-size: 0.75rem;
    max-width: 60%;
  }
}

/* Responsive Grid Utilities */
.two-paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .two-paths-grid {
    grid-template-columns: 1fr;
  }
  .two-paths-grid a:first-child {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

.box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .box-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Pricing & General Tables styling */
.pricing-table-wrapper {
  margin-top: 2rem;
  background: var(--glass-bg);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pricing-table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.pricing-table-wrapper th,
.pricing-table-wrapper td {
  padding: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #c5c6c7;
}
.pricing-table-wrapper th {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 600;
}
.pricing-table-wrapper tr:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

@media (max-width: 768px) {
  .pricing-table-wrapper th,
  .pricing-table-wrapper td {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }
  .pricing-table-wrapper table {
    min-width: 600px; /* Prevents cell squeezing and triggers horizontal scrolling */
  }
}


