/* style.css - Complete Rebuild of Yushka Cosmetics LLP from Scratch */

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

/* Base Design Tokens & Reset */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 32px;
  
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 16px 32px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 32px 64px rgba(0, 0, 0, 0.08);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

/* Reset & Global Elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--theme-color-text-dark);
  background-color: var(--theme-color-bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.5s ease, color 0.5s ease;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--theme-color-text-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
}

p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--theme-color-text-dark);
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

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

button, input, select, textarea {
  font-family: inherit;
}

/* ACCENT COLOR THEMES */

/* Theme 1: Berry Lab */
body.theme-berry {
  --theme-color-primary: #6C243B; /* Deep Berry */
  --theme-color-secondary: #B59DE6; /* Soft Lilac */
  --theme-color-bg: #FAF6F7; /* Creamy White with Hint of Rose */
  --theme-color-text-dark: #1A1A1A; /* Charcoal */
  --theme-color-accent-light: #F6EEF1;
  --theme-color-highlight: #F4C1CE;
  --theme-color-primary-rgb: 108, 36, 59;
  --theme-color-secondary-rgb: 181, 157, 230;
}

/* Theme 2: Peach Formula */
body.theme-peach {
  --theme-color-primary: #FF5A43; /* Coral/Peach */
  --theme-color-secondary: #FF8A75; /* Warm Peach */
  --theme-color-bg: #FFFDFB; /* Warm White */
  --theme-color-text-dark: #2D1E2F; /* Dark Plum */
  --theme-color-accent-light: #FFF0ED;
  --theme-color-highlight: #FFD2C9;
  --theme-color-primary-rgb: 255, 90, 67;
  --theme-color-secondary-rgb: 255, 138, 117;
}

/* Theme 3: Mango Scale */
body.theme-mango {
  --theme-color-primary: #E67E22; /* Warm Orange */
  --theme-color-secondary: #F5B041; /* Mango Yellow */
  --theme-color-bg: #FDFBF8; /* Soft Cream */
  --theme-color-text-dark: #1A1A1A; /* Charcoal */
  --theme-color-accent-light: #FAF2E6;
  --theme-color-highlight: #FDE8C7;
  --theme-color-primary-rgb: 230, 126, 34;
  --theme-color-secondary-rgb: 245, 176, 65;
}

/* Theme 4: Avocado Clean */
body.theme-avocado {
  --theme-color-primary: #558B2F; /* Avocado Green */
  --theme-color-secondary: #A5D6A7; /* Soft Mint */
  --theme-color-bg: #FAFBF9; /* Soft Clean White */
  --theme-color-text-dark: #1B2E1D; /* Deep Forest Green / Charcoal */
  --theme-color-accent-light: #EFF4EB;
  --theme-color-highlight: #D5ECD0;
  --theme-color-primary-rgb: 85, 139, 47;
  --theme-color-secondary-rgb: 165, 214, 167;
}
/* Theme 5: Cherry Pop */
body.theme-cherry {
  --theme-color-primary: #8B1028; /* Cherry Red */
  --theme-color-secondary: #FF6B8A; /* Candy Pink */
  --theme-color-bg: #FFF7F8; /* Soft Blush White */
  --theme-color-text-dark: #241116; /* Deep Cherry Charcoal */
  --theme-color-accent-light: #FFECEF;
  --theme-color-highlight: #FFC2CE;
  --theme-color-primary-rgb: 139, 16, 40;
  --theme-color-secondary-rgb: 255, 107, 138;
}

/* Theme 6: Plum Chemistry */
body.theme-plum {
  --theme-color-primary: #4B164C; /* Rich Plum */
  --theme-color-secondary: #C084FC; /* Soft Electric Lilac */
  --theme-color-bg: #FCF7FF; /* Lavender White */
  --theme-color-text-dark: #1F1024; /* Deep Grape Charcoal */
  --theme-color-accent-light: #F4E8FA;
  --theme-color-highlight: #E6C7FF;
  --theme-color-primary-rgb: 75, 22, 76;
  --theme-color-secondary-rgb: 192, 132, 252;
}

/* Theme 7: Ruby Rush */
body.theme-ruby {
  --theme-color-primary: #B1123A; /* Ruby Red */
  --theme-color-secondary: #FF9AAE; /* Rosy Pink */
  --theme-color-bg: #FFF9FA; /* Clean Rose White */
  --theme-color-text-dark: #251014; /* Wine Charcoal */
  --theme-color-accent-light: #FFE9EE;
  --theme-color-highlight: #FFD1DC;
  --theme-color-primary-rgb: 177, 18, 58;
  --theme-color-secondary-rgb: 255, 154, 174;
}

/* Theme 8: Glossy Grape */
body.theme-grape {
  --theme-color-primary: #5B21B6; /* Glossy Purple */
  --theme-color-secondary: #A78BFA; /* Soft Violet */
  --theme-color-bg: #FBFAFF; /* Purple-Tinted White */
  --theme-color-text-dark: #211733; /* Deep Violet Charcoal */
  --theme-color-accent-light: #F0ECFF;
  --theme-color-highlight: #DDD2FF;
  --theme-color-primary-rgb: 91, 33, 182;
  --theme-color-secondary-rgb: 167, 139, 250;
}

/* Theme 9: Espresso Tint */
body.theme-espresso {
  --theme-color-primary: #5A2E1D; /* Espresso Brown */
  --theme-color-secondary: #C58A5A; /* Caramel Brown */
  --theme-color-bg: #FFF9F4; /* Warm Cream */
  --theme-color-text-dark: #241813; /* Coffee Charcoal */
  --theme-color-accent-light: #F6EDE5;
  --theme-color-highlight: #E9C6A5;
  --theme-color-primary-rgb: 90, 46, 29;
  --theme-color-secondary-rgb: 197, 138, 90;
}

/* Theme 10: Hazel Glow */
body.theme-hazel {
  --theme-color-primary: #8A4B20; /* Hazel Brown */
  --theme-color-secondary: #E0A96D; /* Golden Caramel */
  --theme-color-bg: #FFFDF8; /* Soft Vanilla White */
  --theme-color-text-dark: #221711; /* Warm Charcoal */
  --theme-color-accent-light: #F7EFE4;
  --theme-color-highlight: #F6D9B8;
  --theme-color-primary-rgb: 138, 75, 32;
  --theme-color-secondary-rgb: 224, 169, 109;
}

/* Theme 11: Vampy Lab */
body.theme-vampy {
  --theme-color-primary: #3B0715; /* Vampy Wine */
  --theme-color-secondary: #C1124F; /* Bold Berry Red */
  --theme-color-bg: #FFF7F9; /* Soft Pink White */
  --theme-color-text-dark: #19070D; /* Dark Wine Black */
  --theme-color-accent-light: #F8E7EC;
  --theme-color-highlight: #F4A7BD;
  --theme-color-primary-rgb: 59, 7, 21;
  --theme-color-secondary-rgb: 193, 18, 79;
}

/* Theme 12: Para Pop */
body.theme-para-pop {
  --theme-color-primary: #E83E8C; /* Paradyes Pink */
  --theme-color-secondary: #7C3AED; /* Playful Purple */
  --theme-color-bg: #FFF8FC; /* Pink-Tinted White */
  --theme-color-text-dark: #21101D; /* Soft Charcoal Plum */
  --theme-color-accent-light: #FCEAF4;
  --theme-color-highlight: #F7B6D8;
  --theme-color-primary-rgb: 232, 62, 140;
  --theme-color-secondary-rgb: 124, 58, 237;
}

/* Theme 13: Rudolphi Blue */
body.theme-rudolphi {
  --theme-color-primary: #0F6B92; /* Deep Ocean Teal */
  --theme-color-secondary: #58B7D2; /* Soft Electric Aqua */
  --theme-color-bg: #F5FAF9; /* Fresh Mint-tinted Ice White */
  --theme-color-text-dark: #0D2A38; /* Deep Abyss Charcoal */
  --theme-color-accent-light: #EBF5F6;
  --theme-color-highlight: #CFECF2;
  --theme-color-primary-rgb: 15, 107, 146;
  --theme-color-secondary-rgb: 88, 183, 210;
}

/* Theme 14: Carola Pink */
body.theme-carola {
  --theme-color-primary: #D81B60; /* Vibrant Magenta */
  --theme-color-secondary: #FF80AB; /* Neon Rosy Pink */
  --theme-color-bg: #FFF7FA; /* Rosy Blush White */
  --theme-color-text-dark: #2A0A15; /* Deep Blackberry Charcoal */
  --theme-color-accent-light: #FDE8F0;
  --theme-color-highlight: #FFC0D3;
  --theme-color-primary-rgb: 216, 27, 96;
  --theme-color-secondary-rgb: 255, 128, 171;
}

/* Theme 15: Emerald Green */
body.theme-emerald {
  --theme-color-primary: #1B4D3E; /* Dark Emerald */
  --theme-color-secondary: #4E9A7B; /* Soft Mint Sage */
  --theme-color-bg: #F4F9F6; /* Herbal Cream White */
  --theme-color-text-dark: #0A1C16; /* Deep Forest Black */
  --theme-color-accent-light: #E7F3EE;
  --theme-color-highlight: #C5E5D9;
  --theme-color-primary-rgb: 27, 77, 62;
  --theme-color-secondary-rgb: 78, 154, 123;
}

/* Theme 16: Classic Cappuccino */
body.theme-cappuccino {
  --theme-color-primary: #6E5540; /* Cappuccino Taupe */
  --theme-color-secondary: #BFA08A; /* Creamy Sand */
  --theme-color-bg: #FAF8F5; /* Soft Oatmeal White */
  --theme-color-text-dark: #28201B; /* Deep Espresso Charcoal */
  --theme-color-accent-light: #F4EFEA;
  --theme-color-highlight: #E6D8CD;
  --theme-color-primary-rgb: 110, 85, 64;
  --theme-color-secondary-rgb: 191, 160, 138;
}


/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 70px 0;
  position: relative;
}

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

.section-header {
  max-width: 700px;
  margin-bottom: 50px;
}

.section-header p {
  font-size: 1.15rem;
  margin-top: 10px;
  opacity: 0.8;
}

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Technical Grid Pattern Overlay */
.technical-grid {
  position: relative;
}

.technical-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 32px 32px;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  pointer-events: none;
  z-index: 1;
}

/* C.H.I. Inspired Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 30px;
  border-radius: 26px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  border: 2px solid transparent;
  gap: 10px;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--theme-color-primary);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--theme-color-text-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 24px rgba(var(--theme-color-primary-rgb), 0.25);
}

.btn-primary .arrow-icon {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover .arrow-icon {
  transform: translateX(5px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--theme-color-text-dark);
  color: var(--theme-color-text-dark);
}

.btn-outline:hover {
  background-color: var(--theme-color-text-dark);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline .arrow-icon {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline:hover .arrow-icon {
  transform: translateX(5px);
}

.btn-final-cta {
  background-color: #FFFFFF;
  color: var(--theme-color-text-dark);
  box-shadow: var(--shadow-md);
}

.btn-final-cta:hover {
  background-color: var(--theme-color-accent-light);
  transform: scale(1.03) translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-final-cta .arrow-icon {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-final-cta:hover .arrow-icon {
  transform: translateX(5px);
}

/* STICKY HEADER (C.H.I. Inspired) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.wordmark {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--theme-color-text-dark);
  display: flex;
  align-items: center;
  z-index: 1001;
}

.wordmark span {
  color: var(--theme-color-primary);
  margin-left: 2px;
}

.header-nav {
  display: none;
}

.header-cta {
  display: none;
}

/* Hamburger Icon button */
.nav-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--theme-color-text-dark);
  transition: var(--transition-bounce);
  border-radius: 2px;
}

/* Menu open state animations */
.nav-toggle-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(-45deg);
}

.nav-toggle-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(45deg);
}

/* Full-Screen Drawer Menu Drawer (Mobile-First) */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--theme-color-bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 30px 40px 30px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, visibility 0.5s;
}

.mobile-nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-links li a {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  color: var(--theme-color-text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.mobile-links li a span {
  color: var(--theme-color-primary);
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.mobile-links li a:hover span {
  transform: translateX(8px);
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.mobile-drawer-footer .btn {
  width: 100%;
}

.mobile-drawer-contact {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--theme-color-primary);
  font-size: 1.1rem;
}

/* Adapt Navigation for Desktop */
@media (min-width: 1024px) {
  .nav-toggle-btn {
    display: none;
  }
  
  .header-nav {
    display: block;
  }
  
  .header-nav-list {
    display: flex;
    list-style: none;
    gap: 36px;
  }
  
  .header-nav-list a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--theme-color-text-dark);
    position: relative;
    padding: 6px 0;
  }
  
  .header-nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--theme-color-primary);
    transition: var(--transition-smooth);
  }
  
  .header-nav-list a:hover::after,
  .header-nav-list a.active::after {
    width: 100%;
  }
  
  .header-nav-list a:hover,
  .header-nav-list a.active {
    color: var(--theme-color-primary);
  }
  
  .header-cta {
    display: inline-flex;
  }
}

/* SECTION 1: HERO SECTION */
.hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background-color: var(--theme-color-bg);
  position: relative;
  overflow: hidden;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 5;
}

.hero-info h1 {
  margin-bottom: 1.25rem;
}

.hero-info .subheadline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 2rem;
}

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

.hero-trust-line {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--theme-color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-line::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--theme-color-primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* Hero Accent Blob (Packwire inspired) */
.hero-color-blob {
  position: absolute;
  top: 10%;
  right: -100px;
  width: min(500px, 80vw);
  height: min(500px, 80vw);
  background: radial-gradient(circle, rgba(var(--theme-color-secondary-rgb), 0.4) 0%, rgba(var(--theme-color-primary-rgb), 0.1) 50%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
  animation: blob-float 15s infinite alternate ease-in-out;
}

@keyframes blob-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 30px) scale(1.15); }
}

/* Floating Cards Layout (Desktop/Mobile Split) */
.hero-visual-area {
  position: relative;
  width: 100%;
}

/* Horizontal card strip for mobile */
.mobile-cards-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 10px 4px 20px 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.mobile-cards-strip::-webkit-scrollbar {
  display: none;
}

.mobile-strip-card {
  flex: 0 0 240px;
  scroll-snap-align: center;
  background-color: #FFFFFF;
  border-radius: var(--border-radius-md);
  padding: 18px;
  border: 2px solid rgba(var(--theme-color-primary-rgb), 0.15);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-strip-card .card-icon-wrap {
  width: 44px;
  height: 44px;
  background-color: var(--theme-color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--theme-color-primary);
}

.mobile-strip-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.mobile-strip-card p {
  font-size: 0.8rem;
  margin-bottom: 0;
  opacity: 0.7;
}

/* Desktop Floating Grid (hidden on mobile) */
.desktop-floating-grid {
  display: none;
}

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    gap: 20px;
  }
  
  .hero-actions .btn {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 170px;
    padding-bottom: 100px;
  }
  
  .hero-layout {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  
  .hero-info {
    width: 50%;
  }
  
  .hero-visual-area {
    width: 50%;
    height: 520px;
  }
  
  .mobile-cards-strip {
    display: none;
  }
  
  .desktop-floating-grid {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  /* Floating items styling */
  .floating-card-item {
    position: absolute;
    background-color: #FFFFFF;
    border-radius: var(--border-radius-md);
    padding: 20px 24px;
    border: 2px solid rgba(var(--theme-color-primary-rgb), 0.1);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-bounce);
    width: max-content;
    max-width: 320px;
    cursor: default;
  }
  
  .floating-card-item:hover {
    transform: translateY(-8px) scale(1.03) !important;
    border-color: var(--theme-color-primary);
    box-shadow: var(--shadow-lg), 0 10px 20px rgba(var(--theme-color-primary-rgb), 0.1);
    z-index: 10;
  }
  
  .floating-card-item .item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--theme-color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(var(--theme-color-primary-rgb), 0.2);
  }
  
  .floating-card-item .item-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--theme-color-primary);
  }
  
  .floating-card-item .item-info h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--theme-color-text-dark);
  }
  
  .floating-card-item .item-info p {
    font-size: 0.825rem;
    margin-bottom: 0;
    line-height: 1.3;
    opacity: 0.75;
  }
  
  /* Unique coordinates and float durations */
  .fc-formula {
    top: 5%;
    left: 5%;
    animation: float-slow 7s infinite alternate ease-in-out;
  }
  .fc-beaker {
    top: 15%;
    right: 5%;
    animation: float-medium 6s infinite alternate ease-in-out;
    animation-delay: -1s;
  }
  .fc-bottle {
    top: 40%;
    left: 20%;
    animation: float-fast 5s infinite alternate ease-in-out;
    animation-delay: -3s;
  }
  .fc-filling {
    bottom: 30%;
    right: 10%;
    animation: float-slow 8s infinite alternate ease-in-out;
    animation-delay: -2s;
  }
  .fc-warehouse {
    bottom: 5%;
    left: 8%;
    animation: float-medium 7s infinite alternate ease-in-out;
    animation-delay: -4s;
  }
  .fc-gmp {
    bottom: 8%;
    right: 25%;
    animation: float-fast 5.5s infinite alternate ease-in-out;
    animation-delay: -1.5s;
    border-color: var(--theme-color-secondary);
  }
}

/* FLOAT KEYFRAMES */
@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-medium {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-1.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-fast {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* SECTION 2: QUICK PROOF STRIP */
.proof-strip {
  background-color: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 70px 0;
}

.proof-strip-layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.proof-cards-container {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.proof-cards-container::-webkit-scrollbar {
  display: none;
}

.stat-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background-color: var(--theme-color-accent-light);
  border: 2px solid rgba(var(--theme-color-primary-rgb), 0.1);
  border-radius: var(--border-radius-md);
  padding: 34px 28px 28px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  height: auto;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background-color: var(--theme-color-primary);
}

.stat-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: var(--theme-color-primary);
  background-color: var(--theme-color-highlight);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--theme-color-text-dark);
  word-break: keep-all;
}

.stat-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--theme-color-text-dark);
  opacity: 0.8;
  margin-top: 18px;
  max-width: 95%;
}

/* Tablet */
@media (min-width: 768px) {
  .proof-cards-container {
    gap: 20px;
  }

  .stat-card {
    flex-basis: 300px;
    min-height: 220px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .proof-cards-container {
    overflow-x: visible;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    padding-bottom: 0;
  }

  .stat-card {
    flex: auto;
    min-width: 0;
    min-height: 230px;
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .proof-cards-container {
    gap: 24px;
  }

  .stat-card {
    min-height: 240px;
    padding: 38px 32px 30px 38px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .proof-strip {
    padding: 48px 0;
  }

  .proof-strip-layout {
    gap: 24px;
  }

  .proof-cards-container {
    gap: 14px;
    padding-left: 4px;
    padding-bottom: 14px;
  }

  .stat-card {
    flex: 0 0 235px;
    min-height: 185px;
    padding: 28px 22px 24px 28px;
  }

  .stat-card::before {
    width: 6px;
  }

  .stat-number {
    font-size: 2.5rem;
    line-height: 1.08;
  }

  .stat-label {
    font-size: 0.78rem;
    line-height: 1.45;
    margin-top: 16px;
    letter-spacing: 0.05em;
  }
}

@media (min-width: 1024px) {
  .proof-cards-container {
    overflow-x: visible;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding-bottom: 0;
  }
  
  .stat-card {
    flex: auto;
    min-width: 0;
  }
}

/* SECTION 3: PRODUCT JOURNEY (Formula to Fill) */
.journey {
  background-color: var(--theme-color-bg);
}

.journey-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.journey-step {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-md);
  padding: 30px;
  border: 2px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  position: relative;
  z-index: 2;
}

.journey-step:hover {
  transform: translateY(-5px);
  border-color: var(--theme-color-primary);
  box-shadow: var(--shadow-md), 0 8px 24px rgba(var(--theme-color-primary-rgb), 0.05);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--theme-color-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(var(--theme-color-primary-rgb), 0.2);
}

.journey-step h3 {
  font-size: 1.35rem;
  font-weight: 800;
}

.journey-step p {
  margin-bottom: 0;
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
}

.journey-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  color: var(--theme-color-primary);
  font-size: 2.25rem;
  font-weight: 900;
  z-index: 1;
}

.journey-arrow svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (min-width: 1024px) {
  .journey-flow {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
  
  .journey-step {
    width: 17%;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .journey-arrow {
    padding: 0;
    transform: rotate(-90deg); /* points right instead of down */
    width: 3%;
  }
}

/* SECTION 4: CHOOSE YOUR CATEGORY */
.categories {
  background-color: var(--theme-color-accent-light);
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.category-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-lg);
  border: 3px solid transparent;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--theme-color-primary);
  box-shadow: var(--shadow-lg), 0 20px 40px rgba(var(--theme-color-primary-rgb), 0.08);
}

.category-card-top h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.category-card-top p {
  font-size: 1.05rem;
  opacity: 0.8;
  line-height: 1.5;
  margin-bottom: 24px;
}

.category-card-action {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--theme-color-primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-card-action .card-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .category-card-action .card-arrow {
  transform: translateX(6px);
}

/* Visual float shapes in category card */
.card-decor-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  opacity: 0.08;
  transition: var(--transition-bounce);
  pointer-events: none;
}

.card-decor-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--theme-color-primary);
}

.category-card:hover .card-decor-icon {
  transform: scale(1.2) rotate(-10deg) translate(-10px, -10px);
  opacity: 0.15;
}

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

/* SECTION 5: INSIDE THE FACILITY (BENTO GRID) */
.bento {
  background-color: #FFFFFF;
}

.bento-grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  transition: max-height 0.5s ease-in-out;
}

.bento-card {
  background-color: var(--theme-color-bg);
  border-radius: var(--border-radius-md);
  padding: 32px;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  transition: var(--transition-bounce);
}

.bento-card:hover {
  background-color: #FFFFFF;
  border-color: var(--theme-color-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

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

.bento-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  opacity: 0.75;
  line-height: 1.5;
}

.bento-card-arrow {
  align-self: flex-end;
  color: var(--theme-color-primary);
  font-size: 1.25rem;
  font-weight: 800;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition-smooth);
}

.bento-card:hover .bento-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Featured Large Card */
.bento-card.bento-large {
  background-color: var(--theme-color-accent-light);
  border: 2px solid rgba(var(--theme-color-primary-rgb), 0.15);
  min-height: 240px;
}

.bento-card.bento-large:hover {
  background-color: #FFFFFF;
  border-color: var(--theme-color-primary);
}

.bento-card.bento-large h3 {
  font-size: 1.75rem;
}

.bento-card.bento-large p {
  font-size: 1.05rem;
  opacity: 0.85;
}

/* Accordion trigger button for mobile */
.bento-mobile-toggle-area {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.bento-mobile-toggle-area .btn {
  width: 100%;
  max-width: 320px;
}

@media (min-width: 768px) {
  .bento-grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .bento-card.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 380px;
  }
  
  .bento-card.bento-medium {
    grid-column: span 2;
  }
  
  .bento-mobile-toggle-area {
    display: none; /* Always show all on desktop */
  }
}

/* SECTION 6: WHY YUSHKA */
.why-yushka {
  background-color: var(--theme-color-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.why-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-md);
  padding: 36px;
  border: 2px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: var(--transition-bounce);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--theme-color-primary);
  box-shadow: var(--shadow-md);
}

.why-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 24px;
}

.why-card-link {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--theme-color-primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.why-card-link .link-arrow {
  transition: transform 0.3s ease;
}

.why-card:hover .why-card-link .link-arrow {
  transform: translateX(4px);
}

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

/* SECTION 7: BEAUTY CATEGORY EXPERIENCE 
.beauty-strip {
  background-color: var(--theme-color-primary);
  color: #FFFFFF;
  overflow: hidden;
  padding: 60px 0;
}

.beauty-strip-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.beauty-strip-content h2 {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.beauty-strip-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
} */

/* Floating Scrolling Tags 
.tags-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.tags-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scroll-tags 35s linear infinite;
}

.beauty-tag {
  background-color: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 22px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: var(--transition-bounce);
}

.beauty-tag:hover {
  background-color: #FFFFFF;
  color: var(--theme-color-primary);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

@keyframes scroll-tags {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
} */

/* SECTION 7: BRAND EXPERIENCE LOGO STRIP */
.beauty-strip {
  background-color: var(--theme-color-primary);
  color: #FFFFFF;
  overflow: hidden;
  padding: 80px 0;
}

.beauty-strip-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.beauty-strip-content {
  max-width: 980px;
  margin: 0 auto;
}

.beauty-strip-content h2 {
  color: #FFFFFF;
  margin-bottom: 8px;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.beauty-strip-content p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 760px;
  margin: 22px auto 0;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

/* Logo marquee wrapper */
.brand-logo-slider-wrapper {
  width: 100%;
  margin-top: 56px;
  overflow: hidden;
  position: relative;
}

.brand-logo-label {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Fade edges */
.brand-logo-slider-wrapper::before,
.brand-logo-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 48px;
  width: 120px;
  height: 100px;
  z-index: 3;
  pointer-events: none;
}

.brand-logo-slider-wrapper::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--theme-color-primary),
    rgba(var(--theme-color-primary-rgb), 0)
  );
}

.brand-logo-slider-wrapper::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--theme-color-primary),
    rgba(var(--theme-color-primary-rgb), 0)
  );
}

.brand-logo-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: brandLogoScroll 30s linear infinite;
}

.brand-logo-card {
  flex: 0 0 auto;
  width: 230px;
  height: 100px;
  border-radius: 999px;
  background-color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 34px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition-bounce);
}

.brand-logo-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.14);
}

.brand-logo-card img {
  max-width: 155px;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Special handling because LoveLang is a square logo */
.brand-logo-card img[src*="lovelang"] {
  max-width: 120px;
  max-height: 68px;
}

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

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

/* Tablet */
@media (max-width: 1023px) {
  .beauty-strip {
    padding: 70px 0;
  }

  .brand-logo-slider-wrapper {
    margin-top: 46px;
  }

  .brand-logo-slider-wrapper::before,
  .brand-logo-slider-wrapper::after {
    width: 70px;
  }

  .brand-logo-track {
    gap: 16px;
    animation-duration: 26s;
  }

  .brand-logo-card {
    width: 190px;
    height: 86px;
    padding: 18px 28px;
  }

  .brand-logo-card img {
    max-width: 130px;
    max-height: 48px;
  }

  .brand-logo-card img[src*="lovelang"] {
    max-width: 98px;
    max-height: 58px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .beauty-strip {
    padding: 58px 0;
  }

  .beauty-strip-container {
    text-align: left;
    align-items: flex-start;
  }

  .beauty-strip-content h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.08;
    margin-bottom: 6px;
  }

  .beauty-strip-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 18px;
  }

  .brand-logo-slider-wrapper {
    margin-top: 38px;
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
  }

  .brand-logo-label {
    text-align: left;
    padding: 0 24px;
    font-size: 0.76rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .brand-logo-slider-wrapper::before,
  .brand-logo-slider-wrapper::after {
    top: 42px;
    width: 42px;
    height: 78px;
  }

  .brand-logo-track {
    gap: 12px;
    animation-duration: 22s;
  }

  .brand-logo-card {
    width: 150px;
    height: 70px;
    padding: 14px 22px;
  }

  .brand-logo-card img {
    max-width: 105px;
    max-height: 38px;
  }

  .brand-logo-card img[src*="lovelang"] {
    max-width: 78px;
    max-height: 48px;
  }
}

/* SECTION 8: QUALITY & RESPONSIBILITY */
.quality {
  background-color: var(--theme-color-text-dark);
  color: #FFFFFF;
}

.quality h2, .quality h3 {
  color: #FFFFFF;
}

.quality p {
  color: rgba(255, 255, 255, 0.8);
}

.quality-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.quality-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quality-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}

.check-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--theme-color-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #FFFFFF;
  font-size: 0.8rem;
  font-weight: 900;
}

/* Quality Moving Product Visual */
.quality-visual-area {
  background-color: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.quality-visual-line {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.quality-moving-container {
  display: flex;
  justify-content: space-around;
  width: 100%;
  position: relative;
  z-index: 5;
}

.quality-process-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: float-medium 6s infinite alternate ease-in-out;
}

.quality-process-icon:nth-child(2) {
  animation-delay: -2s;
}

.quality-process-icon:nth-child(3) {
  animation-delay: -4s;
}

.quality-process-icon .icon-box {
  width: 68px;
  height: 68px;
  border-radius: var(--border-radius-md);
  background-color: var(--theme-color-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.quality-process-icon .icon-box svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
}

.quality-process-icon span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .quality-layout {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  
  .quality-checklist-area {
    width: 50%;
  }
  
  .quality-visual-area {
    width: 50%;
    min-height: 450px;
  }
}

/* SECTION 9: FINAL CTA */
.final-cta-section {
  background-color: var(--theme-color-bg);
}

.final-cta-box {
  background: linear-gradient(135deg, var(--theme-color-primary) 0%, rgba(var(--theme-color-secondary-rgb), 0.8) 100%);
  border-radius: var(--border-radius-lg);
  padding: 60px 24px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.final-cta-box h2 {
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
}

.final-cta-box p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.15rem;
}

/* Background floating shapes inside CTA */
.cta-shape {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta-shape-1 {
  width: 180px;
  height: 180px;
  top: -60px;
  left: -40px;
  animation: float-slow 10s infinite alternate ease-in-out;
}

.cta-shape-2 {
  width: 220px;
  height: 220px;
  bottom: -80px;
  right: -50px;
  animation: float-medium 8s infinite alternate ease-in-out;
}

@media (min-width: 768px) {
  .final-cta-box {
    padding: 80px 40px;
  }
}

/* STICKY BOTTOM MOBILE CTA */
.mobile-sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px 24px;
  z-index: 900;
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-bounce);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

.mobile-sticky-cta-bar.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-sticky-cta-bar .btn {
  width: 100%;
  max-width: 400px;
}

@media (min-width: 768px) {
  .mobile-sticky-cta-bar {
    display: none !important;
  }
}

/* CONTACT PAGE SPECIFICS */
.contact-hero {
  padding-top: 140px;
  padding-bottom: 40px;
  background-color: var(--theme-color-bg);
  text-align: center;
}

.contact-hero h1 {
  margin-bottom: 1rem;
}

.contact-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
  opacity: 0.8;
}

.contact-main-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0 80px 0;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-brand-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(var(--theme-color-primary-rgb), 0.15);
}

.contact-brand-card h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-brand-card p {
  font-size: 1.1rem;
  margin-bottom: 8px;
  opacity: 0.9;
}

.contact-brand-card a {
  color: var(--theme-color-primary);
  font-weight: 800;
}

.contact-brand-card a:hover {
  text-decoration: underline;
}

/* Credibility Chips */
.credibility-chips-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.credibility-chip {
  background-color: var(--theme-color-accent-light);
  color: var(--theme-color-text-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(var(--theme-color-primary-rgb), 0.1);
}

/* What Happens Next Steps stack */
.next-steps-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.next-steps-container h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.next-step-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-md);
  padding: 24px;
  border: 2px solid rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--theme-color-primary);
  transition: var(--transition-smooth);
}

.next-step-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.next-step-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.next-step-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
  opacity: 0.75;
}

/* Form Card (Right Column) */
.contact-form-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-lg);
  padding: 36px 24px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(var(--theme-color-primary-rgb), 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--theme-color-primary), var(--theme-color-secondary));
}

.contact-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field-group label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--theme-color-text-dark);
}

.form-field-input {
  height: 50px;
  padding: 0 16px;
  border-radius: var(--border-radius-sm);
  border: 2px solid rgba(0, 0, 0, 0.06);
  font-family: var(--font-body);
  font-size: 16px; /* prevent iOS zoom */
  background-color: var(--theme-color-bg);
  color: var(--theme-color-text-dark);
  transition: var(--transition-smooth);
}

.form-field-input:focus {
  outline: none;
  border-color: var(--theme-color-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(var(--theme-color-primary-rgb), 0.1);
}

textarea.form-field-input {
  height: 120px;
  padding: 12px 16px;
  resize: vertical;
}

select.form-field-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.consent-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
}

.consent-checkbox-group input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--theme-color-primary);
}

.consent-checkbox-group label {
  font-size: 0.875rem;
  line-height: 1.4;
  opacity: 0.85;
  cursor: pointer;
}

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
}

.form-success-alert {
  display: none;
  background-color: var(--theme-color-primary);
  color: #FFFFFF;
  padding: 24px;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 1024px) {
  .contact-main-grid {
    flex-direction: row;
    gap: 60px;
    padding: 60px 0 100px 0;
  }
  
  .contact-info-col {
    width: 45%;
  }
  
  .contact-form-card {
    width: 55%;
    padding: 48px;
  }
  
  .next-steps-container {
    margin-top: 10px;
  }
}

/* FOOTER (Dark, Bold, Compact) */
footer {
  background-color: var(--theme-color-text-dark);
  color: #FFFFFF;
  padding: 60px 0 24px 0;
  border-top: 4px solid var(--theme-color-primary);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .wordmark {
  color: #FFFFFF;
  font-size: 1.4rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-brand p a {
  color: #FFFFFF;
  font-weight: 700;
}

.footer-brand p a:hover {
  color: var(--theme-color-secondary);
}

.footer-nav-col h4 {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-links a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.footer-nav-links a:hover {
  color: var(--theme-color-secondary);
  transform: translateX(4px);
}

.footer-nav-links a .footer-arrow {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.footer-nav-links a:hover .footer-arrow {
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer-brand {
    max-width: 400px;
  }
}

/* INTERSECTION OBSERVER ANIMATIONS */
.reveal-el {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-el.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Sequential delay for children animations */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* REDUCED MOTION SUPPORT */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
  .reveal-el {
    opacity: 1 !important;
    transform: none !important;
  }
  .floating-card-item {
    animation: none !important;
  }
  .hero-color-blob {
    animation: none !important;
  }
}
a.btn {
  text-decoration: none;
}

.mobile-sticky-cta-bar a.btn {
  width: 100%;
  max-width: 400px;
}


/* MOBILE HERO CLEANUP ONLY — desktop remains unchanged */

.mobile-hero-copy,
.mobile-proof-pills {
  display: none;
}

@media (max-width: 767px) {
  .hero {
    padding-top: 118px;
    padding-bottom: 42px;
  }

  .hero-layout {
    gap: 26px;
  }

  .desktop-hero-copy,
  .desktop-hero-trust {
    display: none;
  }

  .mobile-hero-copy {
    display: inline;
  }

  .hero-info h2 {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    margin-bottom: 1rem;
  }

  .hero-info .subheadline {
    font-size: 1.02rem;
    line-height: 1.55;
    margin-bottom: 1.45rem;
    max-width: 96%;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 1.15rem;
  }

  .hero-actions .btn {
    height: 56px;
    font-size: 1rem;
  }

  .hero-secondary-cta {
    display: none;
  }

  .mobile-proof-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
  }

  .mobile-proof-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background-color: var(--theme-color-accent-light);
    border: 1px solid rgba(var(--theme-color-primary-rgb), 0.14);
    color: var(--theme-color-text-dark);
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
  }

  .hero-visual-area {
    display: none;
  }

  .proof-strip {
    padding-top: 44px;
  }
}


/* MOBILE CONTACT PAGE UX FIX — desktop remains unchanged */
@media (max-width: 767px) {
  .contact-hero {
    padding-top: 112px;
    padding-bottom: 28px;
    text-align: left;
  }

  .contact-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .contact-hero p {
    font-size: 1rem;
    line-height: 1.55;
    margin: 0;
    max-width: 100%;
  }

  .contact-main-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 28px 0 64px 0;
  }

  /* Bring form immediately after hero on mobile */
  .contact-form-card {
    order: 1;
    padding: 34px 22px;
    border-radius: 24px;
  }

  .contact-info-col {
    order: 2;
    gap: 24px;
  }

  .contact-form-card h3 {
    font-size: 1.8rem;
    line-height: 1.12;
    margin-bottom: 24px;
  }

  .inquiry-form {
    gap: 18px;
  }

  .form-field-input {
    height: 54px;
  }

  textarea.form-field-input {
    height: 110px;
  }

  /* Reorder info blocks below form */
  .credibility-chips-box {
    order: 1;
  }

  .next-steps-container {
    order: 2;
  }

  .contact-brand-card {
    order: 3;
    padding: 28px 24px;
    border-radius: 22px;
  }

  .contact-brand-card h3 {
    font-size: 1.45rem;
  }

  .contact-brand-card p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .credibility-chips-box {
    gap: 10px;
  }

  .credibility-chip {
    font-size: 0.78rem;
    padding: 8px 14px;
  }

  .next-steps-container h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }

  .next-step-card {
    padding: 22px 20px;
  }

  .next-step-card h4 {
    font-size: 1rem;
  }

  .next-step-card p {
    font-size: 0.92rem;
    line-height: 1.55;
  }
}

/* ==========================================
   V2 UPGRADES (AESTHETIC & INTERACTION RULES)
   ========================================== */

/* 1. Mobile Hero Cards Snapping */
@media (max-width: 767px) {
  .mobile-cards-strip {
    scroll-snap-type: x mandatory;
    scroll-padding: 0 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .mobile-strip-card {
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}

/* 2. Brand Logo Slider Grayscale-to-Color Transitions */
.brand-logo-card img {
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.brand-logo-card:hover img {
  filter: grayscale(0%) opacity(1);
}

/* 3. Footer Theme Swatches Column */
.theme-footer-col {
  max-width: 200px;
}

.theme-footer-col h4 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}




.theme-swatches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.theme-swatches-grid::-webkit-scrollbar {
  width: 4px;
}

.theme-swatches-grid::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}

.theme-swatch {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.theme-swatch:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
  z-index: 2;
}

.theme-swatch.active {
  border-color: #FFFFFF;
  transform: scale(1.05);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
}

/* Tooltip for Swatch */
.theme-swatch::after {
  content: attr(data-theme-name);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background-color: var(--theme-color-text-dark);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
}

.theme-swatch:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Theme color swatch specifications */
.theme-swatch.swatch-berry { background-color: #6C243B; }
.theme-swatch.swatch-peach { background-color: #FF5A43; }
.theme-swatch.swatch-mango { background-color: #E67E22; }
.theme-swatch.swatch-avocado { background-color: #558B2F; }
.theme-swatch.swatch-cherry { background-color: #8B1028; }
.theme-swatch.swatch-plum { background-color: #4B164C; }
.theme-swatch.swatch-ruby { background-color: #B1123A; }
.theme-swatch.swatch-grape { background-color: #5B21B6; }
.theme-swatch.swatch-espresso { background-color: #5A2E1D; }
.theme-swatch.swatch-hazel { background-color: #8A4B20; }
.theme-swatch.swatch-vampy { background-color: #3B0715; }
.theme-swatch.swatch-para-pop { background-color: #E83E8C; }
.theme-swatch.swatch-rudolphi { background-color: #0F6B92; }
.theme-swatch.swatch-carola { background-color: #D81B60; }
.theme-swatch.swatch-emerald { background-color: #1B4D3E; }
.theme-swatch.swatch-cappuccino { background-color: #6E5540; }

/* 4. Progressive Multi-step Form Wizard */
.form-step {
  display: none;
  flex-direction: column;
  gap: 16px;
  animation: formStepFade 0.4s ease forwards;
}

.form-step-active {
  display: flex;
}

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

/* Progress Indicator */
.form-wizard-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}

.form-wizard-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.08);
  z-index: 1;
  transform: translateY(-50%);
}

.form-progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background-color: var(--theme-color-primary);
  z-index: 1;
  transform: translateY(-50%);
  width: 0%;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-progress-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.4);
  z-index: 2;
  transition: all 0.4s ease;
  position: relative;
}

.form-progress-step.active {
  border-color: var(--theme-color-primary);
  background-color: var(--theme-color-primary);
  color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(var(--theme-color-primary-rgb), 0.15);
}

.form-progress-step.completed {
  border-color: var(--theme-color-primary);
  background-color: var(--theme-color-primary);
  color: #FFFFFF;
}

.form-progress-step.completed::after {
  content: '✓';
  font-size: 0.9rem;
}

.form-progress-step span {
  display: inline;
}

.form-progress-step.completed span {
  display: none;
}

.form-wizard-buttons {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.form-wizard-buttons .btn {
  flex: 1;
}

/* 5. Bento Grid Capability Modals */
.bento-card {
  cursor: pointer;
  transition: var(--transition-bounce);
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--theme-color-primary);
  box-shadow: var(--shadow-md), 0 8px 16px rgba(var(--theme-color-primary-rgb), 0.08);
}

.bento-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.bento-modal-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.bento-modal-header {
  padding: 24px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background-color: #FFFFFF;
  z-index: 10;
}

.bento-modal-header h3 {
  font-size: 1.4rem;
  margin: 0;
  color: var(--theme-color-text-dark);
}

.bento-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--theme-color-text-dark);
  line-height: 1;
}

.bento-modal-content {
  padding: 30px;
}

.bento-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.95rem;
}

.bento-spec-table th, .bento-spec-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bento-spec-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--theme-color-primary);
  background-color: var(--theme-color-accent-light);
}

.bento-spec-table td:first-child {
  font-weight: 600;
  color: var(--theme-color-text-dark);
}