/* ============================================================
   Zhuofan — Vape Juice Manufacturer Showcase
   Dark Cyber / Neon Vapor Style
   ============================================================ */

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

/* ---- CSS Variables ---- */
:root {
  --bg-deep:        #07050F;
  --bg-dark:        #0E0A1A;
  --bg-card:        #13102A;
  --bg-elevated:    #1A1535;
  --bg-glass:       rgba(139, 92, 246, 0.06);

  --primary:        #8B5CF6;
  --primary-light:  #A78BFA;
  --primary-dark:   #6D28D9;
  --pink:           #EC4899;
  --pink-light:     #F472B6;
  --cyan:           #06B6D4;
  --orange:         #F97316;
  --green:          #10B981;

  --text-bright:    #FAFAFA;
  --text-primary:   #E2E8F0;
  --text-secondary: #94A3B8;
  --text-muted:     #94A3B8;
  --text-subtle:    #64748B;

  --border:         rgba(139, 92, 246, 0.2);
  --border-light:   rgba(255, 255, 255, 0.08);

  --font-body:      'Outfit', -apple-system, sans-serif;
  --font-display:   'Syne', sans-serif;

  --radius-sm:      8px;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-full:    9999px;

  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; color-scheme: dark; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-bright); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { max-width: 65ch; }

/* ---- Layout ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; position: relative; }

/* ============================================================
   BACKGROUND EFFECTS
   ============================================================ */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-glow::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
  filter: blur(80px);
}
.bg-glow::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(236, 72, 153, 0.08) 0%, transparent 60%);
  filter: blur(100px);
}

/* ============================================================
   NAVIGATION — Floating Glass Nav
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.navbar-inner {
  max-width: 1280px;
  margin: 16px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: rgba(7, 5, 15, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.navbar.scrolled .navbar-inner {
  margin-top: 0;
  border-radius: var(--radius-lg);
  border-top: none;
  border-left: none;
  border-right: none;
  background: rgba(7, 5, 15, 0.9);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-bright);
  letter-spacing: -0.02em;
}
.nav-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.nav-logo:hover { color: var(--primary-light); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  cursor: pointer;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-bright); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--pink) 100%);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
  color: #fff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-bright);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ============================================================
   HERO — Full Width Image Slider
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Hero Background Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slider-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  transform: scale(1.05);
  animation: slowZoom 8s ease-in-out infinite alternate;
}

.hero-slide.active {
  opacity: 1;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 5, 15, 0.85) 0%, rgba(7, 5, 15, 0.6) 50%, rgba(7, 5, 15, 0.75) 100%);
  z-index: 1;
}

/* Slider Navigation Buttons */
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hero-slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-slider-prev { left: 24px; }
.hero-slider-next { right: 24px; }

/* Slider Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-slider-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.hero-slider-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-slider-dot.active {
  background: var(--primary-light);
  width: 48px;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content h1 {
  margin-bottom: 24px;
}
.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 32px;
  height: 52px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.5);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--text-bright);
  border: 1.5px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  transform: translateY(-3px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-badge-item i {
  color: var(--primary-light);
  font-size: 0.9rem;
}

.hero-float-card-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.3;
}
.hero-float-card-text span {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
}

/* ============================================================
   STATS — Impact Numbers
   ============================================================ */
.stats-section {
  padding: 80px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.stats-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item {
  position: relative;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number .accent { color: var(--primary-light); }
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   FLAVORS — Bento Grid Showcase
   ============================================================ */
.flavors-section {
  background: var(--bg-deep);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  margin-bottom: 16px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header .subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.flavor-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.flavor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--pink));
  opacity: 0;
  transition: var(--transition);
}
.flavor-card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}
.flavor-card:hover::before { opacity: 1; }

/* Featured large card */
.flavor-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  background: var(--bg-card);
  min-height: 300px;
}
.flavor-card.featured.has-img {
  padding-bottom: 40px;
}

.flavor-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: var(--radius-lg);
}
.flavor-card .flavor-name,
.flavor-card .flavor-desc,
.flavor-card .flavor-tags {
  position: relative;
  z-index: 1;
}
/* Cards with images: flex to bottom, gradient overlay, text on top */
.flavor-card.has-img {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 32px;
}
.flavor-card.has-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 75%;
  background: linear-gradient(to top, rgba(7,5,15,1) 0%, rgba(7,5,15,0.6) 50%, rgba(7,5,15,0.1) 100%);
  z-index: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  pointer-events: none;
}
.flavor-card.has-img .flavor-name,
.flavor-card.has-img .flavor-desc,
.flavor-card.has-img .flavor-tags {
  z-index: 2;
}
.flavor-card.has-img .flavor-name {
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.flavor-card.has-img .flavor-desc {
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}
.flavor-card.has-img .flavor-tags {
  margin-top: 12px;
}
.flavor-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.flavor-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.flavor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.flavor-tag {
  padding: 4px 10px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ============================================================
   OEM PROCESS — Step Timeline
   ============================================================ */
.process-section {
  background: var(--bg-dark);
  position: relative;
}
.process-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  transform: translateY(-50%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-light);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover .process-step-num {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.process-step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.process-step-time {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-light);
}

/* Step connector arrows — shown between steps */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px; /* center on step number circle */
  right: -20px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--primary);
  border-top: 2px solid var(--primary);
  transform: rotate(45deg);
  opacity: 0.5;
  z-index: 2;
}

/* ============================================================
   FEATURES — Icon Cards
   ============================================================ */
.features-section {
  background: var(--bg-deep);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--primary-light);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CERTS — Logo Cloud
   ============================================================ */
.certs-section {
  padding: 60px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.certs-label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  margin-bottom: 32px;
}
.certs-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.cert-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--transition);
  overflow: hidden;
  flex-shrink: 0;
}
.cert-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.cert-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cert-item img.cert-invert {
  filter: brightness(0) invert(1);
}

/* ============================================================
   TRUSTED BY — Logo Cloud
   ============================================================ */
.trusted-section {
  padding: 60px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trusted-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  margin-bottom: 36px;
}
.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.trusted-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: default;
  overflow: hidden;
}
.trusted-logo:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}
.trusted-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity var(--transition);
}
.trusted-logo:hover img { opacity: 1; }

/* ============================================================
   ABOUT — Split with Stats
   ============================================================ */
.about-section {
  background: var(--bg-dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  object-fit: cover;
  border: 1px solid var(--border-light);
}
.about-stats-overlay {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  gap: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.about-stat .about-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-light);
}
.about-stat .about-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-subtle);
}

.about-content h2 {
  margin-bottom: 24px;
}
.about-content h2 .accent {
  color: var(--primary-light);
}
.about-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.about-feature i {
  color: var(--green);
  font-size: 0.85rem;
}

/* ============================================================
   TESTIMONIALS — Large Quote Cards
   ============================================================ */
.testimonials-section {
  background: var(--bg-deep);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
.testimonial-card:hover::before { opacity: 0.6; }
.testimonial-quote {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  font-family: Georgia, serif;
  color: var(--primary);
  line-height: 0;
  display: block;
  margin-bottom: 8px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--pink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.testimonial-name {
  font-weight: 600;
  color: var(--text-bright);
  font-size: 0.95rem;
}
.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.testimonial-stars {
  margin-left: auto;
  color: #FBBF24;
  font-size: 0.85rem;
}

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

/* ============================================================
   BLOG / NEWS — Grid Cards
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
.blog-image {
  height: 180px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-image .placeholder-icon { font-size: 2.5rem; color: rgba(139, 92, 246, 0.2); }
.blog-image-fallback {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.blog-image-fallback i { font-size: 1.6rem; opacity: 0.5; }
.blog-content { padding: 20px; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-light);
}
.blog-source {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--bg-glass);
  color: var(--text-subtle);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}
.blog-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.4;
  margin-bottom: 8px;
}
.blog-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.blog-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-link:hover { color: #fff; gap: 10px; }

/* ============================================================
   FAQ — Clean Accordion
   ============================================================ */
.faq-section {
  background: var(--bg-dark);
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-question {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}
.faq-question span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-bright);
  padding-right: 20px;
}
.faq-question i {
  color: var(--primary-light);
  font-size: 0.85rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { }

/* ============================================================
   CTA — Bold Dark Section
   ============================================================ */
.cta-section {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.cta-inner h2 .accent {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-inner p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-bright);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--primary-light); padding-left: 4px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-contact i {
  color: var(--primary-light);
  margin-top: 3px;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-subtle);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-subtle); }
.footer-bottom-links a:hover { color: var(--primary-light); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 5, 15, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.95);
  transition: var(--transition);
  position: relative;
}
.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: var(--transition);
  z-index: 1;
}
.modal-close:hover { background: var(--pink); color: #fff; border-color: var(--pink); }
.modal-header {
  padding: 32px 32px 0;
  background: var(--bg-elevated);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 24px;
}
.modal-header h2 {
  font-size: 1.4rem;
  color: var(--text-bright);
  margin-bottom: 6px;
}
.modal-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.modal-body { padding: 28px 32px 32px; }

/* Form */
.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quote-form-grid .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quote-form-grid .form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}
.quote-form-grid .form-group input,
.quote-form-grid .form-group select,
.quote-form-grid .form-group textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: var(--bg-dark);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text-bright);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.quote-form-grid .form-group textarea {
  height: 120px;
  padding: 12px 16px;
  resize: vertical;
}
.quote-form-grid .form-group input:focus,
.quote-form-grid .form-group select:focus,
.quote-form-grid .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}
.quote-form-grid .form-group input::placeholder,
.quote-form-grid .form-group textarea::placeholder {
  color: var(--text-subtle);
}
.quote-form-grid .form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394A3B8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.quote-form-grid .form-group select option { background: var(--bg-dark); }
.quote-form-grid .form-full { grid-column: 1 / -1; }
.quote-form-grid .form-submit { grid-column: 1 / -1; margin-top: 8px; }
.quote-form-grid .form-submit .btn { width: 100%; height: 52px; font-size: 1rem; }
.quote-form-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.quote-form-note i { color: var(--green); }
.form-benefits {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.form-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.form-benefits span i { color: var(--green); font-size: 0.7rem; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
  z-index: 100;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-elevated);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast i { color: var(--green); }

/* ============================================================
   SKELETON LOADING
   ============================================================ */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-elevated) 50%, var(--bg-card) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: var(--radius);
}
.skeleton-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.skeleton-line {
  height: 14px;
  margin-bottom: 12px;
  border-radius: 4px;
}
.skeleton-line.short { width: 60%; }
.skeleton-line.medium { width: 80%; }
.skeleton-line.long { width: 100%; }
.skeleton-line.xl { height: 20px; margin-bottom: 16px; }
.skeleton-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}
.skeleton-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.skeleton-author-text { flex: 1; }
.skeleton-author-name { height: 14px; width: 120px; margin-bottom: 8px; border-radius: 4px; }
.skeleton-author-loc { height: 12px; width: 80px; border-radius: 4px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
  .hero-slide { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text .hero-sub { margin: 0 auto 40px; }
  .hero-buttons { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .flavors-grid { grid-template-columns: repeat(2, 1fr); }
  .flavor-card.featured { grid-column: span 2; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .trusted-logos { gap: 24px; }
  .trusted-logo { width: 100px; height: 42px; font-size: 0.75rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(7, 5, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 24px;
    transition: right var(--transition);
    z-index: 999;
    border-left: 1px solid var(--border-light);
  }
  .nav-links.open { right: 0; }
  .mobile-toggle { display: block; z-index: 1001; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .flavors-grid { grid-template-columns: 1fr; }
  .flavor-card.featured { grid-column: span 1; grid-row: span 1; }
  .process-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats-overlay { position: relative; bottom: auto; right: auto; margin-top: 24px; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .quote-form-grid { grid-template-columns: 1fr; }
  .quote-form-grid .form-group { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  section { padding: 70px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-number { font-size: 1.8rem; }
  .flavors-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; }
  .trusted-logos { gap: 16px; }
  .trusted-logo { width: calc(50% - 8px); height: 40px; font-size: 0.7rem; }
}
