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

/* ==========================================================================
   Design System Variables & Token Setup
   ========================================================================== */
:root {
  /* ===== Gen-Z Creator Color Palette ===== */
  /* Hot Pink → Electric Orange gradient — vibrant, trendy, creator-culture */
  --color-primary: #FF2D78;           /* Hot Pink – bold, youthful, attention-grabbing */
  --color-primary-dark: #E0005E;      /* Deeper pink for hover states */
  --color-primary-light: #FF80AB;     /* Soft pink for subtle accents */
  --color-accent: #FF6B35;            /* Electric Orange – energy & creativity */
  --color-accent-light: #FFB347;      /* Warm amber for highlights */
  --color-purple: #9B5DE5;            /* Vibrant purple – secondary pop color */
  --color-cyan: #00D4FF;              /* Electric cyan – futuristic Gen-Z touch */

  /* Gradient Definitions */
  --gradient-primary: linear-gradient(135deg, #FF2D78 0%, #FF6B35 100%);
  --gradient-vivid: linear-gradient(135deg, #FF2D78 0%, #9B5DE5 100%);
  --gradient-glow: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%);
  --gradient-hero: linear-gradient(135deg, #FF2D78 0%, #FF6B35 60%, #9B5DE5 100%);

  /* Neutral Palette */
  --color-white: #FFFFFF;
  --color-black: #0D0D0D;
  --color-gray-dark: #4B5563;
  --color-gray-light: #9CA3AF;
  --color-border: #FFE0EC;            /* Pinkish border for on-brand feel */
  --color-border-neutral: #E5E7EB;
  --color-bg-footer: #FFF5F8;         /* Very light pink footer */
  --color-bg-base: #FFFFFF;
  --color-bg-secondary: #FFF0F5;      /* Blush secondary background */
  --color-bg-accent: #FFF8F0;         /* Warm peach section bg */

  /* Glassmorphism Variables */
  --color-glass-bg: rgba(255, 255, 255, 0.75);
  --color-glass-border: rgba(255, 45, 120, 0.15);
  --color-glass-shadow: 0 8px 32px 0 rgba(255, 45, 120, 0.12);

  /* Live Wishlink brand variables – mapped to new creator palette */
  --white: #ffffff;
  --base-color-brand--dull-orange: #E0005E;
  --base-color-brand--orange: #FF2D78;
  --base-color-brand--yellow: #FFB347;
  --base-color-neutral--black: #0D0D0D;
  --base-color-brand--bright-yellow: #FF6B35;
  --base-color-brand--gradient-orange: #FF2D78;
  --base-color-brand--gradient-yellow: #FF6B35;
  --base-color-neutral--white: #ffffff;
  --text-color--text-secondary: #FF2D78;

  /* Typography variables */
  --font-display: 'Space Grotesk', 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Grid & Elevations */
  --container-width: 1200px;
  --shadow-sm: 0 4px 12px rgba(255, 45, 120, 0.06);
  --shadow-md: 0 8px 30px rgba(255, 45, 120, 0.14);
  --shadow-glow: 0 0 30px rgba(255, 45, 120, 0.3);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease;
}

/* ==========================================================================
   Gen-Z Creator Global Utilities — Gradient Text, Glow, Highlight
   ========================================================================== */

/* The yellow-highlight span becomes a vivid gradient text */
.yellow-highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: inherit;
}

/* Gradient text utility */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Vibrant section badge pill */
.section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

/* Section header h2 gets a gradient accent on the brand name */
.section-header h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animated gradient border on focus/hover for cards */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==========================================================================
   Global Reset & Environment Defaults
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: initial; /* Lenis handles smooth scrolling, turn off default scroll-behavior */
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-base);
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
}

/* Hide default cursor on desktop when custom cursor is active */
@media (min-width: 1025px) {
  body {
    cursor: none;
  }
  a, button, input[type="submit"], select, .faq-trigger, .hotspot, .avatar-item, .mosaic-img {
    cursor: none;
  }
}

@media (min-width: 992px) {
  .is-clone {
    display: none !important;
  }
}

/* ==========================================================================
   Custom Cursor Styling
   ========================================================================== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--color-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background-color 0.25s, border-color 0.25s;
  mix-blend-mode: normal;
}

.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
}

/* Custom Cursor States (activated in app.js on hover) */
.custom-cursor.hovered {
  width: 50px;
  height: 50px;
  background-color: rgba(247, 143, 30, 0.1);
  border-color: var(--color-primary);
}

@media (max-width: 1024px) {
  .custom-cursor, .custom-cursor-dot {
    display: none !important;
  }
}

/* ==========================================================================
   Page Preloader Overlay Styling
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--color-black);
  letter-spacing: -1.5px;
}

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

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(247, 143, 30, 0.1);
  border-top: 3px solid var(--color-primary);
  border-radius: 50%;
  animation: preloaderSpin 1s linear infinite;
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================================================
   Global Layout Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--color-bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--color-gray-dark);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* CTA Buttons */
.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 18px rgba(255, 45, 120, 0.3);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 45, 120, 0.45);
  filter: brightness(1.08);
}

.btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 11px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-block;
  text-align: center;
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 80px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--color-primary);
  z-index: 1001;
  transition: width 0.1s ease-out;
}

/* ==========================================================================
   Top Header Navigation Bar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  transition: height 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Solid white shadow header on scroll (added in JS) */
.navbar.scrolled {
  height: 70px;
  box-shadow: var(--shadow-sm);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 850;
  color: var(--color-black);
  letter-spacing: -1px;
}

.nav-brand span {
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-item a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-black);
}

.nav-item a:hover {
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
}

/* ==========================================================================
   Hero Section with Mosaic Grid
   ========================================================================== */
.hero {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 100px 0;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content p {
  font-size: 16px;
  color: var(--color-gray-dark);
  margin-bottom: 30px;
  max-width: 500px;
}

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

/* Mosaic Collage Gallery Grid */
.hero-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
  height: 380px;
}

.mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background-color: var(--color-border);
  transition: var(--transition-smooth);
}

.mosaic-img:hover {
  transform: scale(1.03);
}

/* ==========================================================================
   Creator Avatars Grid ("We have The Best With US")
   ========================================================================== */
.avatar-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.avatar-item {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-border);
  overflow: hidden;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.avatar-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}

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

/* ==========================================================================
   Loved by Creators Grid Section
   ========================================================================== */
.creator-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.creator-profile-card {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.creator-profile-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.profile-card-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px auto;
  object-fit: cover;
  border: 3px solid var(--color-border);
}

.profile-card-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-card-handle {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 8px;
}

.profile-card-followers {
  font-size: 13px;
  color: var(--color-gray-dark);
  margin-bottom: 20px;
}

.btn-shop {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-block;
  box-shadow: 0 4px 14px rgba(255, 45, 120, 0.28);
  border: none;
}

.btn-shop:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 45, 120, 0.4);
  filter: brightness(1.08);
}

/* ==========================================================================
   Six Feature Cards Section (2 Rows of 3 Cards)
   ========================================================================== */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  color: var(--color-black);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--color-gray-dark);
  font-size: 14px;
}

/* ==========================================================================
   Card Shine Sweep Animation Overlay
   ========================================================================== */
.shine-sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.4) 50%, 
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-30deg);
  pointer-events: none;
  transition: left 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.creator-profile-card:hover .shine-sweep,
.feature-card:hover .shine-sweep,
.benefit-card:hover .shine-sweep,
.testimonial-card:hover .shine-sweep,
.discover-panel:hover .shine-sweep {
  left: 150%;
}

/* ==========================================================================
   Tools Grid Section (6 Key Tools)
   ========================================================================== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tool-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  gap: 16px;
  transition: var(--transition-smooth);
}

.tool-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
}

.tool-icon {
  font-size: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.tool-info h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.tool-info p {
  color: var(--color-gray-dark);
  font-size: 13px;
}

/* ==========================================================================
   Benefit Cards Section (3 Row Cards)
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card h3 {
  color: var(--color-primary);
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--color-black);
  font-size: 15px;
}

/* ==========================================================================
   Discover Horizontal Panels List
   ========================================================================== */
.discover-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.discover-panel {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.discover-panel:hover {
  transform: translateY(-3px);
}

.discover-panel-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: var(--color-border);
}

.discover-panel-content {
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.discover-panel-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.discover-panel-content p {
  color: var(--color-gray-light);
  font-size: 14px;
  margin-bottom: 16px;
}

.link-read-more {
  color: #2563EB; /* Blue color */
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.link-read-more:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Three Step Onboarding Section
   ========================================================================== */
.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.onboarding-step-card {
  text-align: center;
  padding: 20px;
  position: relative;
}

.step-num-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px auto;
  box-shadow: var(--shadow-sm);
}

.onboarding-step-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.onboarding-step-card p {
  color: var(--color-gray-dark);
  font-size: 14px;
}

/* ==========================================================================
   Testimonials Section (Stacked Cards with borders)
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-quote {
  color: var(--color-black);
  font-size: 15px;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--color-border);
}

.author-meta h4 {
  font-size: 14px;
  font-weight: 700;
}

.author-meta span {
  font-size: 12px;
  color: var(--color-gray-dark);
}

/* ==========================================================================
   FAQ Section Accordions
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700; /* Bold question text */
  font-size: 16px;
  color: var(--color-black);
  cursor: pointer;
  text-align: left;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.faq-trigger:hover {
  background-color: rgba(124, 92, 246, 0.04);
  color: var(--color-primary-dark);
}

.faq-trigger span.faq-arrow {
  color: var(--color-primary);
  font-size: 16px;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-content {
  height: 0;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.faq-content p {
  padding: 0 24px 20px 24px;
  color: var(--color-gray-dark);
  font-size: 14px;
}

/* Expanded FAQ Styles */
.faq-item.active .faq-trigger {
  background-color: var(--color-bg-secondary);
}

.faq-item.active .faq-trigger span.faq-arrow {
  transform: rotate(180deg);
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
.footer {
  background-color: var(--color-bg-footer);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-info h3 span {
  color: var(--color-primary);
}

.footer-info p {
  color: var(--color-gray-dark);
  font-size: 14px;
  margin-bottom: 16px;
  max-width: 320px;
}

/* Footer Social Icons & Badges */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-icon:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.footer-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.compliance-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-gray-dark);
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.footer-links-col h4 {
  font-size: 16px;
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--color-gray-dark);
}

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

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
  text-align: center;
  font-size: 12px;
  color: var(--color-gray-light);
}

/* ==========================================================================
   Scroll Reveal Animation Hooks (Fallback when GSAP isn't triggered)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 4%;
  }
  .nav-links {
    gap: 20px;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 38px;
  }
  .hero-content p {
    margin: 0 auto 30px auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-mosaic {
    max-width: 500px;
    margin: 0 auto;
  }
  .creator-cards-grid, .feature-cards-grid, .tools-grid, .benefits-grid, .onboarding-steps, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .discover-panel {
    grid-template-columns: 1fr;
  }
  .discover-panel-img {
    height: 180px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Three-Row Scrolling Marquee Ticker
   ========================================================================== */
.ticker-section {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
  background-color: var(--color-bg-secondary);
}

.ticker-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  overflow: hidden;
}

.ticker-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 16px;
  white-space: nowrap;
  will-change: transform;
}

/* Row animations */
.row-1 .ticker-track {
  animation: marqueeLeft 32s linear infinite;
}

.row-2 .ticker-track {
  animation: marqueeRight 32s linear infinite;
}

.row-3 .ticker-track {
  animation: marqueeLeft 34s linear infinite;
}

/* Pause scroll on hover */
.ticker-row:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes marqueeRight {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* Ticker Card Specifications */
.ticker-card {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition-smooth);
}

.ticker-card:hover {
  transform: scale(1.04) translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

/* Brand Card Custom Logos */
.ticker-card.brand-card {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  padding: 12px;
  text-align: center;
  letter-spacing: -0.5px;
}

.ticker-card.brand-card span.brand-logo-desc {
  font-size: 10px;
  font-weight: 500;
  color: var(--color-gray-light);
  display: block;
  margin-top: 2px;
}

/* Card Backgrounds matching original Wishlink color values */
.card-bg-orange { background-color: #ff5200; color: #ffffff; }
.card-bg-yellow { background-color: #ffd400; color: #1c1917; }
.card-bg-brown { background-color: #b45309; color: #ffffff; }
.card-bg-purple { background-color: #7c3aed; color: #ffffff; }
.card-bg-navy { background-color: #1e293b; color: #ffffff; }
.card-bg-cream { background-color: #f5f0ea; color: #1c1917; }
.card-bg-white { background-color: #ffffff; color: #1c1917; border: 1px solid var(--color-border); }

/* Sun Scoop Stripe Card Special Styling */
.card-bg-stripes {
  background: repeating-linear-gradient(
    90deg,
    #ffd400,
    #ffd400 20px,
    #ffffff 20px,
    #ffffff 40px
  );
  color: #1c1917;
  border: 1px solid var(--color-border);
}

/* ==========================================================================
   Merged Live Wishlink Styles
   ========================================================================== */

/* Hero Video Background Styles */
.hero_wrapper {
  margin-bottom: -100vh;
  z-index: -1;
  position: relative;
}

.section_header34 {
  justify-content: center;
  align-items: flex-end;
  min-height: 100vh;
  margin-top: -80px; /* navbar height is 80px */
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.header34_background-video-wrapper {
  z-index: -1;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  position: absolute;
  inset: 0%;
}

.video-overlay-layer {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.header_background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.spacer {
  min-height: 100vh;
}

.background-color-alternate {
  background-color: var(--color-white);
}

@media screen and (max-width: 991px) {
  .section_header34 {
    aspect-ratio: 16 / 9;
    min-height: auto;
    margin-top: 0;
  }

  .header34_background-video-wrapper {
    position: static;
  }

  .header_background-image {
    position: absolute;
    inset: 0%;
  }

  .hero_wrapper {
    z-index: -1;
    margin-bottom: -85vh;
    position: relative;
  }

  .spacer {
    min-height: 86vh;
  }
}

/* Hero Layout and Floating Elements */
.padding-section-large.is-creator {
  padding-top: 6rem;
  padding-bottom: 6rem;}

.text-size-regular.is-creator {
  font-family: Raleway, sans-serif;}

.heading-style-h3.is-creator {
  font-size: 1.6rem;}

.padding-global.padding-section-large.is-creator {
  padding-top: 4rem;
  padding-bottom: 4rem;}

.section_layout1 {
  position: relative;}

.common_image-wrapper {
  width: 100%;
  max-width: 35rem;
  height: 35rem;
  position: relative;}

.common_image-wrapper.is-hori {
  height: 65vh;}

.common_image-wrapper.is-slider {
  height: 28rem;}

.common_image-wrapper.is-brand {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 60%;
  max-width: none;
  height: 22rem;
  display: flex;}

.common_image {
  z-index: 1;
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: relative;}

.common_image._90 {
  height: 90%;}

.hero_component {
  grid-column-gap: 1rem;
  grid-row-gap: 4rem;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;}

.note-1 {
  z-index: 3;
  width: 100%;
  max-width: 6rem;
  position: absolute;
  inset: 0% 5% auto auto;}

.note-2 {
  z-index: 3;
  width: 100%;
  max-width: 6rem;
  position: absolute;
  inset: 0% auto auto 5%;}

.note-3 {
  z-index: 3;
  width: 100%;
  max-width: 7rem;
  position: absolute;
  inset: 35% auto auto 0%;}

.note-4 {
  z-index: 3;
  width: 100%;
  max-width: 6rem;
  position: absolute;
  inset: 35% 0% auto auto;}

.note-5 {
  z-index: 3;
  width: 100%;
  max-width: 7rem;
  position: absolute;
  inset: auto auto 5% 10%;}

.note-6 {
  z-index: 3;
  width: 100%;
  max-width: 7rem;
  position: absolute;
  inset: auto 5% 5% auto;}

.paper-plan {
  z-index: 3;
  width: 100%;
  max-width: 7rem;
  position: absolute;
  inset: 20% auto auto 0%;}

.forground_visual {
  z-index: 2;
  width: 100%;
  height: 80%;
  position: absolute;
  inset: auto 0% 0%;}

.background_visual-1 {
  object-fit: contain;
  width: 50%;
  height: 40%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0% 70%;}

.background_visual-2 {
  object-fit: contain;
  width: 30%;
  height: 30%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0% 5% 50%;}

@keyframes emojiFloatPulse1 {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.06)); }
  50% { transform: translateY(-15px) scale(1.15) rotate(6deg); filter: drop-shadow(0 10px 15px rgba(124, 92, 246, 0.15)); }
}
@keyframes emojiFloatPulse2 {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.06)); }
  50% { transform: translateY(-10px) scale(1.2) rotate(-8deg); filter: drop-shadow(0 10px 15px rgba(124, 92, 246, 0.15)); }
}
@keyframes emojiFloatPulse3 {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.06)); }
  50% { transform: translateY(-18px) scale(1.1) rotate(10deg); filter: drop-shadow(0 10px 15px rgba(124, 92, 246, 0.15)); }
}
@keyframes emojiFloatPulse4 {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.06)); }
  50% { transform: translateY(-12px) scale(1.25) rotate(-5deg); filter: drop-shadow(0 10px 15px rgba(124, 92, 246, 0.15)); }
}
@keyframes emojiFloatPulse5 {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.06)); }
  50% { transform: translateY(-16px) scale(1.15) rotate(8deg); filter: drop-shadow(0 10px 15px rgba(124, 92, 246, 0.15)); }
}

.emoji-1 {
  z-index: 3;
  width: 3rem;
  height: 3rem;
  position: absolute;
  inset: auto 10% 100% auto;
  animation: emojiFloatPulse1 4s ease-in-out infinite;
}

.emoji-2 {
  z-index: 3;
  width: 3rem;
  height: 3rem;
  position: absolute;
  inset: auto 50% 100% auto;
  animation: emojiFloatPulse2 4.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.emoji-3 {
  z-index: 3;
  width: 3rem;
  height: 3rem;
  position: absolute;
  inset: 60% auto auto 0%;
  animation: emojiFloatPulse3 4.2s ease-in-out infinite;
  animation-delay: 1s;
}

.emoji-4 {
  z-index: 3;
  width: 3rem;
  height: 3rem;
  position: absolute;
  inset: auto auto 10% 0%;
  animation: emojiFloatPulse4 4.8s ease-in-out infinite;
  animation-delay: 1.5s;
}

.emoji-5 {
  z-index: 3;
  width: 3rem;
  height: 3rem;
  position: absolute;
  inset: auto 10% 25% auto;
  animation: emojiFloatPulse5 4.4s ease-in-out infinite;
  animation-delay: 2s;
}

.heading-style-h3.is-creator {
    font-size: 1.5rem;}

.common_image-wrapper.is-brand {
    width: 80%;}

.common_image {
    object-fit: contain;}

.hero_component {
    grid-column-gap: 3rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    display: grid;}

.note-1, .note-2 {
    max-width: 4rem;}

.note-3, .note-4, .note-5, .note-6, .paper-plan {
    max-width: 5rem;}

.emoji-1, .emoji-2, .emoji-3, .emoji-4, .emoji-5 {
    width: 2rem;
    height: 2rem;}

.heading-style-h3.is-creator {
    font-size: 1.25rem;}

.section_marquee, .section_layout1 {
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    display: flex;}

.common_image-wrapper, .common_image-wrapper.is-slider {
    height: 22rem;}

.common_image-wrapper.is-brand {
    width: 100%;
    height: auto;}

.common_image {
    object-position: 50% 100%;}

.hero_component {
    grid-row-gap: 3rem;
    text-align: center;
    flex-flow: column;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;}

.padding-section-large.is-creator {
    padding-top: 2rem;
    padding-bottom: 2rem;}

.text-size-regular.text-weight-semibold.is-creator {
    font-size: 1rem;}

.text-size-regular.is-creator {
    font-size: .875rem;
    font-style: normal;}

.padding-global.padding-section-large.is-creator {
    padding-top: 2rem;
    padding-bottom: 2rem;}

.text-size-medium.text-weight-semibold.is-creator, .text-size-medium.text-weight-normal {
    font-size: 1rem;}

.section_layout1 {
    min-height: auto;}

.section_layout1.background-color-alternate {
    margin-top: -5rem;}

.common_image {
    aspect-ratio: 16 / 9;}

.hero_component {
    grid-template-columns: 1fr;}

.note-3, .note-4, .paper-plan {
    max-width: 4rem;}

/* Sticky Bottom CTA Banner Styling */
.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;}

.padding-section-small.bottom-0 {
  padding-bottom: 0;}

.padding-section-small.top-1 {
  padding-top: 5rem;}

.text-weight-bold {
  font-weight: 700;}

.text-size-large.text-weight-bold.is-testimonial {
  font-size: 1.3rem;}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;}

.container-large.is-relative {
  position: relative;}

.padding-global {
  width: 100%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;}

.padding-global.padding-section-large.is-creator {
  padding-top: 4rem;
  padding-bottom: 4rem;}

.padding-global.padding-section-large.is-brand {
  padding-top: 2rem;}

.padding-global.padding-section-large.is-large {
  padding-top: 6rem;
  padding-bottom: 10rem;}

.padding-global.padding-cs {
  padding-top: 1rem;
  padding-bottom: 1rem;}

.text-size-medium.text-weight-bold {
  font-weight: 700;}

.contact_number-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: var(--text-color--text-secondary);
  font-family: Kurdisfamilytest;
  font-weight: 600;
  display: flex;}

.contact_number-wrapper.mb {
  display: none;}

.hero-cta_wrapper {
  z-index: 999;
  background-color: var(--white);
  pointer-events: auto;
  border-radius: 12.5rem;
  justify-content: space-between;
  align-items: center;
  padding: .875rem 1.5rem .875rem 3rem;
  display: flex;
  position: relative;
  box-shadow: 0 2px 5px #0003;}

.hero_cta-text.text-weight-bold.floater {
  font-size: 1.4rem;}

.hero_cta {
  z-index: 999;
  pointer-events: none;
  position: fixed;
  inset: auto 0% 6%;}

.hero_cta.is-sticky {
  flex-flow: column;
  justify-content: flex-end;
  position: sticky;
  inset: 80vh auto auto;}

.new_button {
  background-color: var(--base-color-brand--gradient-orange);
  color: var(--white);
  text-transform: uppercase;
  background-image: none;
  border-radius: 1rem;
  padding: .5rem 4rem;
  font-size: 1.25rem;
  font-weight: 700;
  transition: background-color .2s;}

.new_button:hover {
  background-color: var(--base-color-brand--yellow);
  opacity: .8;
  color: var(--base-color-neutral--black);}

.new_button.is-brand {
  white-space: nowrap;
  padding-left: 2rem;
  padding-right: 2rem;}

.new_button.download {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-image: linear-gradient(140deg, var(--base-color-brand--gradient-yellow), var(--base-color-brand--gradient-orange));
  opacity: .96;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;}

.new_button.download.mb {
  display: none;}

.text-size-xxlarge.text-weight-bold {
  font-family: Lexend, Georgia, sans-serif;
  font-size: 2.5rem;}

.download-buttons-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;}

.download-logo {
  width: 1.5rem;}

.hero-cta_wrapper {
    border-radius: 4rem;
    position: relative;}

.new_button {
    flex: none;
    padding-left: 3rem;
    padding-right: 3rem;}

.new_button.is-brand {
    padding-left: 1.5rem;
    padding-right: 1.5rem;}

.padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;}

.text-size-large.text-weight-bold.is-testimonial {
    font-weight: 500;}

.padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;}

.padding-global.padding-section-large.is-large {
    padding-bottom: 12rem;}

.contact_number-wrapper.mb {
    display: flex;}

.contact_number-wrapper.desk {
    display: none;}

.hero-cta_wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    text-transform: capitalize;}

.hero_cta-text {
    text-transform: none;
    font-size: 1rem;}

.hero_cta-text.text-weight-bold.floater {
    font-size: 1.2rem;}

.hero_cta.is-sticky {
    width: 100%;}

.new_button {
    border-radius: .5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;}

.new_button.download.mb {
    display: flex;}

.new_button.download.desk {
    display: none;}

.padding-global.padding-section-large.is-creator {
    padding-top: 2rem;
    padding-bottom: 2rem;}

.padding-global.padding-section-large.is-brand {
    padding-top: 1rem;
    padding-bottom: 6rem;}

.padding-global.padding-section-large.is-large {
    padding-top: 3rem;
    padding-bottom: 10rem;}

.padding-global.padding-cs {
    padding-left: 1rem;
    padding-right: 1rem;}

.padding-global.no-padd {
    padding-left: .5rem;
    padding-right: .5rem;}

.text-size-medium.text-weight-bold.brand-mb {
    font-size: .875rem;}

.contact_number-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    font-weight: 400;}

.hero-cta_wrapper {
    grid-column-gap: .2rem;
    grid-row-gap: .2rem;
    flex-flow: row;
    padding-left: 1rem;
    padding-right: 1rem;}

.hero-cta_wrapper.home {
    grid-column-gap: .2rem;
    grid-row-gap: .2rem;
    justify-content: space-around;}

.hero_cta-text {
    font-size: .875rem;}

.hero_cta-text.text-weight-bold.floater {
    font-size: 1.1rem;}

.hero_cta {
    bottom: 8%;}

.new_button {
    padding: .5rem 1rem;
    font-size: 1rem;}

.new_button.is-brand {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .875rem;}

.new_button.download {
    padding-left: .25rem;
    padding-right: .25rem;}

.new_button.download.mb {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    padding-left: .7rem;
    padding-right: .7rem;}

.text-size-xxlarge.text-weight-bold {
    font-size: 1.4rem;
    font-weight: 600;}

.download-buttons-wrap {
    grid-column-gap: 5px;
    grid-row-gap: 5px;}

.download-logo {
    width: .8rem;}

.download-text {
    font-size: .875rem;}

/* ==========================================================================
   Custom Premium Slider Section
   ========================================================================== */
.section_slider {
  padding: 80px 0;
  background-color: var(--color-bg-base);
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
}

.slider1_component {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  margin-top: 40px;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  z-index: 1;
}

.slider-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.common_component.is-flipped {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  height: 100%;
}

.common_image-wrapper.is-slider {
  width: 100%;
  height: 100%;
  max-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common_image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.common_content.is-flipped {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.heading-style-h3 {
  font-size: 38px;
  line-height: 1.25;
  color: var(--color-black);
  font-family: var(--font-display);
  font-weight: 700;
}

.yellow-highlight {
  background-color: #ffd400;
  color: #1c1917;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
  z-index: 10;
}

.slider-arrow:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: scale(1.05);
}

/* Responsive Slider Breakpoints */
@media (max-width: 1024px) {
  .slider1_component {
    height: auto;
    min-height: 480px;
    margin-top: 20px;
  }
  
  .slider-slide {
    position: relative;
    display: none;
    opacity: 0;
    visibility: hidden;
    height: auto;
  }
  
  .slider-slide.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  
  .common_component.is-flipped {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    height: auto;
  }
  
  .common_image-wrapper.is-slider {
    height: 260px;
    width: 100%;
    max-height: none;
  }
  
  .common_content.is-flipped {
    align-items: center;
    width: 100%;
  }
  
  .heading-style-h3 {
    font-size: 26px;
  }
  
  .slider-controls {
    margin-top: 20px;
  }
}

/* ==========================================================================
   Essentials Slider Section
   ========================================================================== */
.essentials-slider {
  padding: 80px 0;
  background-color: var(--color-bg-base);
  overflow: hidden;
  position: relative;
}

.essentials-slider-wrapper {
  position: relative;
  width: 100%;
}

.slider-essentials-component {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  margin-top: 40px;
}

.essentials-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  z-index: 1;
}

.essentials-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.common_component.is-essentials {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  height: 100%;
}

.common_image-wrapper.is-essentials {
  width: 100%;
  height: 100%;
  max-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common_content.is-essentials {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.essentials-badge {
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.essentials-badge svg {
  width: 100%;
  height: 100%;
}

.essentials-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.essentials-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
  z-index: 10;
}

.essentials-arrow:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.slider-grad-left {
  position: absolute;
  top: 10%;
  left: 0;
  width: 40%;
  max-height: 80%;
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}

/* Responsive Essentials Slider Breakpoints */
@media (max-width: 1024px) {
  .slider-essentials-component {
    height: auto;
    min-height: 480px;
    margin-top: 20px;
  }
  
  .essentials-slide {
    position: relative;
    display: none;
    opacity: 0;
    visibility: hidden;
    height: auto;
  }
  
  .essentials-slide.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  
  .common_component.is-essentials {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    height: auto;
  }
  
  .common_image-wrapper.is-essentials {
    height: 260px;
    width: 100%;
    max-height: none;
  }
  
  .common_content.is-essentials {
    align-items: center;
    width: 100%;
  }
  
  .essentials-badge {
    margin-bottom: 10px;
  }
  
  .essentials-controls {
    margin-top: 20px;
  }
}

/* ==========================================================================
   Hero Overlapping Avatars & Social Proof
   ========================================================================== */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.avatar-cluster {
  display: flex;
  align-items: center;
}

.cluster-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  box-shadow: var(--shadow-sm);
  margin-right: -12px;
  transition: transform 0.3s ease, z-index 0.3s ease;
  z-index: 1;
}

.cluster-avatar:hover {
  transform: translateY(-4px) scale(1.1);
  z-index: 10;
}

.cluster-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.cluster-avatar .verified-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background-color: #3B82F6; /* Blue verified badge */
  color: var(--color-white);
  font-size: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-white);
  font-weight: bold;
}

.proof-text {
  font-size: 14px;
  color: var(--color-gray-dark);
  line-height: 1.4;
}

.proof-text strong {
  color: var(--color-primary);
}

/* Hero Infinite Horizontal Marquee */
.hero-marquee-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 30px 0;
  margin-top: 50px;
  background-color: var(--color-white);
  border-top: 1px dashed rgba(124, 58, 237, 0.15);
  border-bottom: 1px dashed rgba(124, 58, 237, 0.15);
}

.hero-marquee-wrap::before,
.hero-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}

.hero-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--color-white), rgba(255, 255, 255, 0));
}

.hero-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--color-white), rgba(255, 255, 255, 0));
}

.hero-marquee-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: heroMarqueeScroll 28s linear infinite;
  width: max-content;
  will-change: transform;
}

.hero-marquee-item {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-marquee-item:hover {
  transform: scale(1.18) translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.25);
  z-index: 5;
}

.hero-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes heroMarqueeScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Creator Carousel Marquee Cards */
.creator-ticker-card {
  flex-shrink: 0;
  width: 260px;
  height: 80px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 40px; /* Pill layout */
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.creator-ticker-card:hover {
  transform: scale(1.04) translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.creator-ticker-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-primary-light);
}

.creator-ticker-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.creator-ticker-info h4 {
  font-size: 14px;
  margin: 0;
  color: var(--color-black);
}

.creator-ticker-info span {
  font-size: 11px;
  color: var(--color-primary);
  font-weight: 500;
}

.creator-ticker-info p {
  font-size: 11px;
  color: var(--color-gray-dark);
  margin: 2px 0 0 0;
}

/* Trusted Brands Glassmorphism Cards */
.brand-glass-card {
  flex-shrink: 0;
  width: 240px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.brand-glass-card:hover {
  transform: scale(1.04) translateY(-3px);
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--color-primary-light);
  box-shadow: 0 10px 30px rgba(124, 92, 246, 0.1);
}

.brand-glass-header {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.brand-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-black);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.brand-glass-header h4 {
  font-size: 15px;
  margin: 0;
  color: var(--color-black);
}

.brand-glass-header span {
  font-size: 11px;
  color: var(--color-gray-dark);
}

.brand-reach {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  margin: 4px 0 0 0;
}

.brand-cta {
  width: 100%;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 30px;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.brand-cta:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: transparent;
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(255, 45, 120, 0.3);
}

/* Feature Grid SVG Icon Styles & Animations */
.feature-svg {
  width: 44px;
  height: 44px;
  stroke: var(--color-primary);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), stroke 0.3s ease;
}

.feature-card:hover .feature-svg {
  transform: scale(1.2) rotate(8deg);
  stroke: var(--color-primary-dark);
}





/* Case Studies Section - Horizontal Scroll Reveal */
.case-studies-slider-outer {
  width: 100%;
  overflow-x: hidden;
  padding: 40px 8%;
  display: flex;
  position: relative;
}

.case-studies-track {
  display: flex;
  gap: 30px;
  will-change: transform;
}

.case-study-card {
  flex-shrink: 0;
  width: 380px;
  height: 480px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: flex-end;
}

.case-study-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.case-study-content {
  padding: 30px;
  color: var(--color-white);
  text-align: left;
  z-index: 2;
}

.case-study-tag {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 16px;
}

.case-study-title {
  font-family: Georgia, serif; /* Serif display headline */
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--color-white);
}

.case-study-stats {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--base-color-brand--yellow);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.case-study-desc {
  font-family: var(--font-body); /* Sans-serif body font contrast */
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 20px;
}

.case-study-link {
  color: var(--base-color-brand--yellow);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.case-study-link:hover {
  text-decoration: underline;
}

/* Vertical Step Onboarding Timeline */
.timeline-container {
  max-width: 800px;
  margin: 60px auto 0 auto;
  position: relative;
  padding-left: 50px;
}

.timeline-progress-line {
  position: absolute;
  top: 0;
  left: 20px;
  width: 4px;
  height: 100%;
  background-color: var(--color-border);
  border-radius: 2px;
}

.timeline-progress-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%; /* Animated via GSAP */
  background-color: var(--color-primary);
  border-radius: 2px;
  will-change: height;
}

.timeline-step {
  position: relative;
  margin-bottom: 60px;
  opacity: 0.3;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-step.active {
  opacity: 1;
  transform: translateY(0);
}

.timeline-dot {
  position: absolute;
  left: -50px;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 4px solid var(--color-border);
  color: var(--color-gray-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  z-index: 2;
}

.timeline-step.active .timeline-dot {
  background-color: var(--color-primary);
  border-color: var(--color-primary-light);
  color: var(--color-white);
  box-shadow: 0 0 20px rgba(124, 92, 246, 0.4);
}

.timeline-content {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.timeline-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--color-black);
}

.timeline-content p {
  font-size: 14px;
  color: var(--color-gray-dark);
  line-height: 1.6;
}

/* Redesigned Testimonials Dual Layout Styles */
.testimonials-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 40px;
}

.testimonial-featured-card {
  grid-row: span 2;
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-md);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  min-height: 380px;
}

.testimonials-compact-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.testimonial-card.compact {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 25px 30px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.testimonial-card.compact:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.star-rating {
  color: #FBBF24; /* Star gold color */
  font-size: 16px;
  margin-bottom: 15px;
}

.quote-decor {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(124, 92, 246, 0.06);
  line-height: 1;
  pointer-events: none;
}

.quote-decor-sm {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 70px;
  font-family: Georgia, serif;
  color: rgba(124, 92, 246, 0.05);
  line-height: 1;
  pointer-events: none;
}

/* Responsiveness for Testimonials Section */
@media (max-width: 1024px) {
  .testimonials-layout {
    grid-template-columns: 1fr;
  }
  .testimonial-featured-card {
    min-height: auto;
    padding: 35px 25px;
  }
}

/* Category Grid Section styling */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.category-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: var(--transition-smooth);
  will-change: transform, opacity;
}

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

.category-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(124, 92, 246, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.category-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.category-card:hover .category-icon-wrap {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

.category-meta h3 {
  font-size: 16px;
  color: var(--color-black);
  margin-bottom: 6px;
}

.category-count {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
}

/* Responsive Category Grid Breakpoints */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Join Wishlink - Onboarding Platform/Stepper Section
   ========================================================================== */
.section_home_platform {
  position: relative;
  z-index: 10;
}

.home_platform_track {
  color: var(--white);
  position: relative;
  height: 300vh; /* 3 steps = 300vh scroll space */
}

.home_platform_sticky {
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
  height: 100vh;
}

.home_platform_sticky.background-gradient {
  background-image: linear-gradient(147deg, #e69419 11.2%, #f43f06);
}

.padding-global-custom {
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
}

.container-medium {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.home_platform_component {
  z-index: 0;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-radius: 2.5rem;
  flex-flow: row;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  height: 70vh;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  overflow: clip;
}

.home_platform_menu-wrapper {
  flex-flow: column;
  justify-content: center;
  height: 100%;
  display: flex;
}

.home_platform_menu {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  display: flex;
}

.home_platform_link {
  opacity: .2;
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: opacity 0.3s ease;
}

.home_platform_link.w--current {
  opacity: 1;
  pointer-events: none;
}

.platform_content-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 8vh;
  display: flex;
  width: 50%;
}

.platform_head-wrapper {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  flex-flow: column;
  width: 100%;
  max-width: 25rem;
  display: flex;
  overflow: hidden;
  margin-bottom: 2rem;
}

.platform_head-wrapper h2 {
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1.2;
}

.platform_head-wrapper p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.home_platform_item-wrapper {
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  will-change: transform;
}

.home_platform_item {
  z-index: 1;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  width: 100%;
  max-width: 25rem;
  height: 70vh;
  color: var(--white);
  flex-flow: column;
  place-content: center flex-start;
  align-items: stretch;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  transition: opacity 0.4s ease;
}

.tagline_wrapper {
  align-items: center;
  display: flex;
  margin-bottom: 1rem;
}

.tagline_wrapper .icon-embed-medium {
  width: 69px;
  height: 69px;
  color: var(--white);
}

.home_platform_title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-top: 10px;
}

.home_platform_item p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.home_platform_desktop-lottie-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 100%;
  min-height: 30rem;
  max-height: 30rem;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: 4rem;
  display: flex;
  position: relative;
}

.home_platform_desktop-lottie-wrapper.show-tablet {
  display: none;
}

.home_platform_anchor {
  height: 100vh;
  position: relative;
  pointer-events: none;
}

.home_platform_anchor.is-first {
  margin-top: -100vh;
}

.screen-wrapper {
  z-index: 1;
  background-color: #f43f06;
  border-radius: 2rem;
  width: 100%;
  max-width: 14rem;
  height: 100%;
  min-height: 30rem;
  max-height: 30rem;
  margin: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.screen {
  z-index: 4;
  clip-path: polygon(90% 0, 96% 2%, 100% 5%, 100% 94%, 97% 98%, 90% 100%, 13% 100%, 3% 99%, 0 95%, 0 5%, 4% 2%, 11% 0);
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  inset: 0%;
  pointer-events: none;
}

.platform-image-1, .platform-image-2, .platform-image-3 {
  position: absolute;
  inset: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 2rem;
  transition: opacity 0.5s ease-in-out;
}

.platform-background {
  opacity: .5;
  mix-blend-mode: lighten;
  width: 100%;
  margin-bottom: 2rem;
  position: absolute;
  inset: auto 0% 10%;
  z-index: 0;
  pointer-events: none;
}

/* Responsive Overrides (max-width: 991px) */
@media screen and (max-width: 991px) {
  .home_platform_track {
    height: auto;
  }
  .home_platform_sticky {
    height: auto;
    min-height: auto;
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .home_platform_component {
    flex-flow: column;
    height: auto;
    padding: 0;
    overflow: visible;
  }
  .home_platform_menu-wrapper {
    display: none;
  }
  .home_platform_item-wrapper {
    transition: none;
    transform: none !important;
  }
  .home_platform_item {
    height: auto;
    max-width: none;
    padding-top: 2rem;
    padding-bottom: 4rem;
    opacity: 1 !important;
  }
  .home_platform_desktop-lottie-wrapper {
    display: none;
  }
  .home_platform_desktop-lottie-wrapper.show-tablet {
    display: flex;
    width: 100%;
    max-width: 18rem;
    margin: 2rem auto 0 auto;
  }
  .platform_content-wrapper {
    padding-top: 0;
    width: 100%;
  }
  .platform_head-wrapper {
    max-width: none;
    text-align: center;
    margin-bottom: 3rem;
  }

  /* Hamburger Menu Toggle & Side Nav Overlay */
  .navbar #btn-get-started {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
  }

  .hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-black);
    transition: all 0.3s ease-in-out;
  }

  .menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Zigzag keyframe animation for nav items */
  @keyframes zigzagIn {
    0%   { transform: translateX(-30px); opacity: 0; }
    20%  { transform: translateX(18px);  opacity: 0.6; }
    40%  { transform: translateX(-12px); opacity: 0.8; }
    60%  { transform: translateX(8px);   opacity: 0.9; }
    80%  { transform: translateX(-4px);  opacity: 1; }
    100% { transform: translateX(0);     opacity: 1; }
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 28px 0 !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .nav-links.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  /* Bold text + zigzag animation on each nav item */
  .nav-links .nav-item a {
    font-weight: 800 !important;
    font-size: 1.05rem !important;
    letter-spacing: 0.02em;
    color: #111 !important;
    text-shadow: 0 1px 4px rgba(255,255,255,0.6);
    opacity: 0;
    animation: none;
  }

  .nav-links.active .nav-item:nth-child(1) a {
    animation: zigzagIn 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97) 0.05s forwards;
  }
  .nav-links.active .nav-item:nth-child(2) a {
    animation: zigzagIn 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97) 0.15s forwards;
  }
  .nav-links.active .nav-item:nth-child(3) a {
    animation: zigzagIn 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97) 0.25s forwards;
  }

  /* Mobile Carousels */
  .creator-cards-grid-outer, .testimonials-layout-outer {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
  }
  .creator-cards-grid, .testimonials-layout {
    display: flex !important;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    gap: 20px !important;
    width: max-content !important;
    will-change: transform;
    transition: transform 0.3s ease-out;
  }
  .creator-profile-card, .testimonial-featured-card, .testimonial-card.compact {
    width: 290px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }

  /* Fixed Onboarding Stepper Height and Spacing Issues */
  .overflow-clip {
    height: auto !important;
    overflow: visible !important;
  }
  .home_platform_anchor {
    display: none !important;
  }
}

/* Responsive Overrides (max-width: 767px) */
@media screen and (max-width: 767px) {
  .home_platform_title {
    font-size: 1.75rem;
  }
  .home_platform_item p {
    font-size: 1rem;
  }
  .case-study-card {
    width: 290px !important;
    height: 380px !important;
  }
}



/* ==========================================================================
   CATEGORY PHOTO SWIPER SECTION (Reference-style "Are You One of Them?")
   ========================================================================== */

.category-swiper-section {
  background: linear-gradient(147deg, #e69419 11.2%, #f43f06 100%);
  padding: 80px 0 100px;
  overflow: hidden;
  position: relative;
}

.category-swiper-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0,0,0,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.category-swiper-inner {
  position: relative;
}

.category-swiper-header {
  max-width: 1400px;
  margin: 0 auto 50px;
  padding: 0 60px;
}

.category-swiper-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.category-swiper-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  line-height: 1.6;
}

/* Track wrapper — clips the cards */
.category-swiper-track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
  padding: 0 60px 30px;
  position: relative;
}

.category-swiper-track-wrap::-webkit-scrollbar {
  display: none;
}

.category-swiper-track-wrap.is-dragging {
  cursor: grabbing;
  user-select: none;
}

/* The flex row of cards */
.category-swiper-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* Individual card */
.cat-swiper-card {
  position: relative;
  width: 280px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.35s ease;
  cursor: pointer;
}

.cat-swiper-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Photo */
.cat-swiper-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cat-swiper-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cat-swiper-card:hover .cat-swiper-img {
  transform: scale(1.08);
}

/* Gradient overlay (always visible at bottom) */
.cat-swiper-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0) 70%
  );
  display: flex;
  align-items: flex-end;
  padding: 24px 20px;
  transition: background 0.3s ease;
}

.cat-swiper-card:hover .cat-swiper-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.1) 80%
  );
}

.cat-swiper-data {
  width: 100%;
}

.cat-swiper-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.cat-swiper-stats {
  display: flex;
  align-items: baseline;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cat-swiper-card:hover .cat-swiper-stats {
  opacity: 1;
  transform: translateY(0);
}

.cat-swiper-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.cat-swiper-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* Navigation arrows */
.cat-swiper-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 60px;
  margin-top: 20px;
}

.cat-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  backdrop-filter: blur(8px);
}

.cat-arrow:hover {
  background: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.7);
  transform: scale(1.08);
}

.cat-arrow svg {
  width: 20px;
  height: 20px;
}

.cat-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}

/* Responsive */
@media (max-width: 768px) {
  .category-swiper-section {
    padding: 60px 0 80px;
  }

  .category-swiper-header {
    padding: 0 24px;
    margin-bottom: 36px;
  }

  .category-swiper-track-wrap {
    padding: 0 24px 20px;
  }

  .cat-swiper-arrows {
    padding: 0 24px;
  }

  .cat-swiper-card {
    width: 220px;
    height: 300px;
  }

  .cat-swiper-title {
    font-size: 1.1rem;
  }

  .cat-swiper-stat-num {
    font-size: 1.3rem;
  }

  /* Always show stats on mobile (no hover) */
  .cat-swiper-stats {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Phone Mockup & YouTube Background Carousel
   ========================================================================== */
.phone-mockup-frame {
  position: relative;
  z-index: 2;
  width: 290px;
  height: 580px;
  background: #000;
  border: 12px solid #1a1a1a;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 0 2px #262626;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Clip-path for smooth corners */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

/* Dynamic Island */
.phone-notch {
  position: absolute;
  top: 12px;
  width: 100px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 20px;
  z-index: 10;
}

.phone-notch::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 3px;
  background: #2b2b2b;
  border-radius: 2px;
}

/* Video Carousel container */
.phone-video-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1;
  overflow: hidden;
}

.phone-video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.phone-video-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.phone-video-slide iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  transform: scale(1.35); /* Zoom to crop black borders/UI of YT iframe */
}

/* Screen reflection / depth overlay */
.phone-screen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 5;
  pointer-events: none;
}

/* Carousel dots style */
.phone-carousel-dots {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.25);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-dot.active {
  background: #7c3aed;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.6);
}

@media (max-width: 768px) {
  .phone-mockup-frame {
    width: 210px;
    height: 420px;
    border-width: 8px;
    border-radius: 30px;
    box-shadow: 0 15px 35px -8px rgba(0, 0, 0, 0.4);
  }
  .phone-notch {
    width: 75px;
    height: 16px;
    top: 9px;
  }
  .phone-carousel-dots {
    bottom: -28px;
  }
}

/* Case Studies Carousel controls */
.case-studies-arrow:hover {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  border-color: var(--color-primary) !important;
  transform: scale(1.05);
}


