/* ============================================
   ElectraSkin - Static CSS for WordPress
   ============================================ */

/* CSS Variables / Design Tokens */
:root {
  --background: hsl(20, 10%, 5%);
  --foreground: hsl(40, 30%, 95%);
  --card: hsl(20, 10%, 8%);
  --card-foreground: hsl(40, 30%, 95%);
  --primary: hsl(330, 70%, 65%);
  --primary-foreground: hsl(330, 10%, 5%);
  --secondary: hsl(330, 15%, 12%);
  --secondary-foreground: hsl(330, 20%, 95%);
  --muted: hsl(330, 10%, 15%);
  --muted-foreground: hsl(330, 15%, 60%);
  --accent: hsl(330, 70%, 65%);
  --border: hsl(330, 20%, 20%);
  --ring: hsl(330, 70%, 65%);
  --radius: 0.5rem;
  
  --gradient-gold: linear-gradient(135deg, hsl(330, 70%, 65%), hsl(340, 80%, 75%));
  --gradient-dark: linear-gradient(180deg, hsl(330, 10%, 5%), hsl(330, 10%, 8%));
  --shadow-gold: 0 10px 40px -10px hsl(330, 70%, 65%, 0.3);
  --shadow-soft: 0 20px 60px -20px hsl(0, 0%, 0%, 0.5);
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.2;
}

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

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

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

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.bg-gradient-gold {
  background: var(--gradient-gold);
}

.bg-gradient-dark {
  background: var(--gradient-dark);
}

.glass-card {
  background: hsl(330, 10%, 8%, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid hsl(330, 70%, 65%, 0.1);
  border-radius: 1rem;
}

.line-through {
  text-decoration: line-through;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-glow-pulse {
  animation: glow-pulse 3s ease-in-out infinite;
}

.animate-fade-up {
  animation: fade-up 0.8s ease-out forwards;
  opacity: 0;
}

.animate-fade-in {
  animation: fade-in 1s ease-out forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: hsl(330, 10%, 5%);
}

::-webkit-scrollbar-thumb {
  background: hsl(330, 70%, 65%, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(330, 70%, 65%, 0.5);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--primary-foreground);
}

.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

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

.btn-gold-outline:hover {
  background: hsl(330, 70%, 65%, 0.1);
}

.btn-hero {
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-hero:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.btn-hero-outline {
  background: transparent;
  border: 2px solid hsl(330, 70%, 65%, 0.5);
  color: var(--foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-hero-outline:hover {
  background: hsl(330, 70%, 65%, 0.1);
  border-color: var(--primary);
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s ease;
}

.header.scrolled {
  background: hsl(20, 10%, 5%, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

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

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--foreground);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s ease;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

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

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--background), hsl(20, 10%, 5%, 0.8), transparent);
}

.hero-overlay-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), transparent, hsl(20, 10%, 5%, 0.5));
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: hsl(330, 70%, 65%, 0.1);
  filter: blur(120px);
  animation: glow-pulse 3s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
}

.hero-text {
  max-width: 42rem;
}

.hero-label {
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #f6f4ee;
}

.hero-title span {
  display: block;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 28rem;
  margin-bottom: 2rem;
}

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

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

.stat {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

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

/* ============================================
   Sections Common
   ============================================ */
.section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

.section-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: hsl(330, 70%, 65%, 0.05);
  filter: blur(150px);
  pointer-events: none;
}

.section-glow-right {
  left: auto;
  right: 0;
  transform: translateY(-50%);
  width: 24rem;
  height: 24rem;
  filter: blur(120px);
}

.section-glow-left {
  left: 0;
  right: auto;
  top: auto;
  bottom: 0;
  transform: none;
  width: 24rem;
  height: 24rem;
  filter: blur(120px);
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 5rem;
}

.section-label {
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #f6f4ee;
}

.section-title-left {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: left;
  color: #f6f4ee;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.5s ease;
}

.benefit-card:hover {
  border-color: hsl(330, 70%, 65%, 0.3);
  transform: translateY(-0.5rem);
}

.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon svg {
  color: var(--primary-foreground);
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #f6f4ee;
}

.benefit-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ============================================
   Technology Section
   ============================================ */
.technology {
  background: hsl(330, 15%, 12%, 0.3);
}

.technology-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .technology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.technology-image {
  position: relative;
  order: 2;
}

@media (min-width: 1024px) {
  .technology-image {
    order: 1;
  }
  
  .technology-content {
    order: 2;
  }
}

.technology-glow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.technology-glow::before {
  content: '';
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: hsl(330, 70%, 65%, 0.2);
  filter: blur(80px);
  animation: glow-pulse 3s ease-in-out infinite;
}

.technology-frame {
  position: relative;
  z-index: 10;
  max-width: 28rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, hsl(330, 70%, 65%, 0.1), transparent);
}

.technology-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary), hsl(330, 70%, 65%, 0.6), hsl(330, 70%, 65%, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.frame-corner {
  position: absolute;
  width: 2rem;
  height: 2rem;
  border-color: var(--primary);
}

.frame-corner-tl {
  top: 1rem;
  left: 1rem;
  border-top: 2px solid;
  border-left: 2px solid;
  border-top-left-radius: 0.5rem;
}

.frame-corner-tr {
  top: 1rem;
  right: 1rem;
  border-top: 2px solid;
  border-right: 2px solid;
  border-top-right-radius: 0.5rem;
}

.frame-corner-bl {
  bottom: 1rem;
  left: 1rem;
  border-bottom: 2px solid;
  border-left: 2px solid;
  border-bottom-left-radius: 0.5rem;
}

.frame-corner-br {
  bottom: 1rem;
  right: 1rem;
  border-bottom: 2px solid;
  border-right: 2px solid;
  border-bottom-right-radius: 0.5rem;
}

.technology-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tech-feature {
  display: flex;
  gap: 1.5rem;
}

.tech-feature:hover .tech-number {
  transform: scale(1.1);
}

.tech-number {
  font-family: var(--font-display);
  font-size: 1.875rem;
  transition: transform 0.3s ease;
}

.tech-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #f6f4ee;
}

.tech-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   Before & After Section
   ============================================ */
.comparison-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.comparison-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.5s ease;
}

.comparison-card:hover {
  border-color: hsl(330, 70%, 65%, 0.3);
}

.comparison-container {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
}

.comparison-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.comparison-before img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
  pointer-events: none;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--background);
}

.slider-handle svg {
  color: var(--primary-foreground);
  transform: rotate(90deg);
}

.comparison-label {
  position: absolute;
  bottom: 1rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.comparison-label-before {
  left: 1rem;
  background: hsl(20, 10%, 5%, 0.9);
  backdrop-filter: blur(8px);
}

.comparison-label-after {
  right: 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
}

.comparison-content {
  padding: 1.5rem;
}

.comparison-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #f6f4ee;
}

.comparison-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.comparison-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Results Section
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  padding: 2rem;
  text-align: center;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: hsl(330, 70%, 65%, 0.3);
}

.stat-big {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 0.75rem;
}

.stat-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Testimonials */
.testimonials-wrapper {
  position: relative;
}

.testimonials-grid {
  position: relative;
}

.testimonial-page {
  display: none;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-page.active {
  display: grid;
}

@media (min-width: 768px) {
  .testimonial-page {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.5s ease;
  animation: fade-in 0.5s ease-out;
}

.testimonial-card:hover {
  border-color: hsl(330, 70%, 65%, 0.3);
}

.stars {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  letter-spacing: 0.25rem;
}

.testimonial-quote {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.author-name {
  font-weight: 500;
}

.author-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(330, 10%, 8%, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid hsl(330, 70%, 65%, 0.2);
  transition: all 0.3s ease;
}

.nav-btn:hover {
  border-color: hsl(330, 70%, 65%, 0.5);
  background: hsl(330, 70%, 65%, 0.1);
}

.nav-btn svg {
  color: var(--primary);
}

.nav-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: hsl(330, 70%, 65%, 0.3);
  transition: all 0.3s ease;
}

.dot:hover {
  background: hsl(330, 70%, 65%, 0.5);
}

.dot.active {
  background: var(--primary);
  width: 2rem;
  border-radius: 9999px;
}

/* ============================================
   Product Showcase Section
   ============================================ */
.product-showcase {
  background: hsl(330, 15%, 12%, 0.3);
}

.product-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Gallery */
.product-gallery {
  position: relative;
}

.gallery-glow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.gallery-glow::before {
  content: '';
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(330, 70%, 65%, 0.2), hsl(330, 70%, 65%, 0.05), transparent);
  filter: blur(120px);
}

.gallery-main {
  position: relative;
  z-index: 10;
  max-width: 32rem;
  margin: 0 auto;
  padding: 0.75rem;
  background: linear-gradient(135deg, hsl(330, 70%, 65%, 0.2), hsl(330, 70%, 65%, 0.05), transparent);
  border-radius: 1.5rem;
}

.gallery-main img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 20px 60px -15px hsl(330, 70%, 65%, 0.3);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsl(20, 10%, 5%, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(330, 70%, 65%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-nav:hover {
  background: hsl(330, 70%, 65%, 0.1);
  border-color: hsl(330, 70%, 65%, 0.4);
}

.gallery-nav svg {
  color: var(--primary);
}

.gallery-nav-prev {
  left: 0;
}

.gallery-nav-next {
  right: 0;
}

@media (min-width: 1024px) {
  .gallery-nav-prev {
    left: -1rem;
  }
  
  .gallery-nav-next {
    right: -1rem;
  }
}

.gallery-thumbs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1rem;
  margin-top: 1.5rem;
}

.thumb {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  overflow: hidden;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.thumb:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.thumb.active {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 0 0 2px var(--primary), 0 8px 20px -6px hsl(330, 70%, 65%, 0.4);
}

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

/* Product Details */
.product-details {
  position: sticky;
  top: 6rem;
}

.product-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
  color: #f6f4ee;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.price-current {
  font-family: var(--font-display);
  font-size: 2.5rem;
}

.price-old {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.price-badge {
  font-size: 0.875rem;
  color: var(--primary);
  background: hsl(330, 70%, 65%, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.price-euro {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.specifications {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: hsl(20, 10%, 5%, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.spec-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsl(330, 70%, 65%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-icon svg {
  color: var(--primary);
}

.spec-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.spec-value {
  font-size: 0.875rem;
  font-weight: 500;
}

.includes {
  margin-bottom: 2rem;
}

.includes-title {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

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

.include-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.include-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.product-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.product-buttons .flex-1 {
  flex: 1;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  flex-wrap: wrap;
}

/* Skin Technology */
.skin-technology {
  display: grid;
  gap: 4rem;
  align-items: center;
  margin-top: 5rem;
}

@media (min-width: 1024px) {
  .skin-technology {
    grid-template-columns: repeat(2, 1fr);
  }
}

.skin-tech-content {
  order: 2;
}

@media (min-width: 1024px) {
  .skin-tech-content {
    order: 1;
  }
  
  .skin-tech-image {
    order: 2;
  }
}

.skin-tech-desc {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.skin-layers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.layer-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: hsl(20, 10%, 5%, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.layer-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsl(330, 70%, 65%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--primary);
  flex-shrink: 0;
}

.layer-item h4 {
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  color: #f6f4ee;
}

.layer-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.skin-tech-image {
  position: relative;
  order: 1;
}

.skin-tech-glow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.skin-tech-glow::before {
  content: '';
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(330, 70%, 65%, 0.15), transparent);
  filter: blur(80px);
}

.skin-tech-frame {
  position: relative;
  z-index: 10;
  max-width: 28rem;
  margin: 0 auto;
  padding: 0.75rem;
  background: linear-gradient(135deg, hsl(330, 70%, 65%, 0.15), hsl(330, 70%, 65%, 0.05), transparent);
  border-radius: 1.5rem;
}

.skin-tech-frame img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 20px 50px -15px hsl(330, 70%, 65%, 0.25);
}

/* Safety Section */
.safety-section {
  text-align: center;
  margin-top: 5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.safety-glow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.safety-glow::before {
  content: '';
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(330, 70%, 65%, 0.15), transparent);
  filter: blur(100px);
}

.safety-frame {
  position: relative;
  z-index: 10;
  max-width: 28rem;
  margin: 0 auto 3rem;
  padding: 0.75rem;
  background: linear-gradient(135deg, hsl(330, 70%, 65%, 0.1), transparent, hsl(330, 70%, 65%, 0.05));
  border-radius: 1.5rem;
}

.safety-frame img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 15px 40px -10px hsl(330, 70%, 65%, 0.2);
}

.safety-title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
  color: #f6f4ee;
}

.safety-text {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ============================================
   Usage Gallery Section
   ============================================ */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .usage-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.usage-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsl(330, 70%, 65%, 0.1), transparent, hsl(330, 70%, 65%, 0.05));
  padding: 0.25rem;
}

.usage-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 0.75rem;
  transition: transform 0.5s ease;
}

.usage-item:hover img {
  transform: scale(1.05);
}

.usage-item::after {
  content: '';
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 8rem;
  height: 8rem;
  background: hsl(330, 70%, 65%, 0.2);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.usage-item:hover::after {
  opacity: 1;
}

.usage-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 2.5rem;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-wrapper {
  max-width: 48rem;
  margin: 0 auto;
}

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

.accordion-item {
  border-radius: 0.75rem;
  padding: 0 1.5rem;
  overflow: hidden;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  text-align: left;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.accordion-trigger:hover {
  color: var(--primary);
}

.accordion-icon {
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.accordion-content p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  position: relative;
}

.cta-glow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.cta-glow::before {
  content: '';
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: hsl(330, 70%, 65%, 0.1);
  filter: blur(150px);
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.cta-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.cta-badge svg {
  color: var(--primary);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.875rem;
}

.footer-description {
  color: var(--muted-foreground);
  max-width: 24rem;
  margin-bottom: 1.5rem;
}

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

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: hsl(330, 70%, 65%, 0.2);
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--foreground);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

.footer-bottom-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--foreground);
}

/* ============================================
   Video Section
   ============================================ */
.video-section {
  position: relative;
  overflow: hidden;
}

.video-section-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at center, hsl(330, 70%, 65%, 0.08), transparent 70%);
  pointer-events: none;
}

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

@media (min-width: 768px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.video-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  border-color: hsl(330, 70%, 65%, 0.3);
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 1rem;
}

.video-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.video-card:hover .video-title {
  color: var(--primary);
}