/* ============================================
   JOBZIPPY - Ultra Modern Static Website
   GEN Z MODERN THEME
   ============================================ */

/* CSS Variables - Gen Z Vibrant Theme */
:root {
  --primary: #8d278d;
  --primary-light: #B44DB4;
  --primary-dark: #6b1d6b;
  --primary-glow: rgba(141, 39, 141, 0.25);
  --accent: #c74bc7;
  --accent-bright: #e066e0;
  --accent-pink: #FF6B9D;
  --accent-blue: #6366F1;
  --accent-cyan: #22D3EE;
  --accent-yellow: #FBBF24;
  
  --bg-light: #ffffff;
  --bg-soft: #FAF8FC;
  --bg-card: #ffffff;
  --bg-card-hover: #f5f3f7;
  --bg-elevated: #f0eef2;
  --bg-glass: rgba(255, 255, 255, 0.75);
  
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a5a;
  --text-muted: #7a7a8a;
  
  --border-subtle: rgba(141, 39, 141, 0.08);
  --border-accent: rgba(141, 39, 141, 0.2);
  --border-glass: rgba(255, 255, 255, 0.5);
  
  --gradient-hero: linear-gradient(180deg, #ffffff 0%, #FAF8FC 30%, #F5F0F7 60%, #EDE5F0 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f7fa 100%);
  --gradient-purple: linear-gradient(135deg, #8d278d 0%, #c74bc7 50%, #FF6B9D 100%);
  --gradient-purple-blue: linear-gradient(135deg, #8d278d 0%, #6366F1 100%);
  --gradient-rainbow: linear-gradient(135deg, #8d278d 0%, #6366F1 33%, #22D3EE 66%, #FF6B9D 100%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(141, 39, 141, 0.1) 0%, transparent 70%);
  --gradient-mesh: 
    radial-gradient(at 40% 20%, rgba(141, 39, 141, 0.12) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(99, 102, 241, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(255, 107, 157, 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(34, 211, 238, 0.06) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(141, 39, 141, 0.08) 0px, transparent 50%);
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(141, 39, 141, 0.06);
  --shadow-md: 0 4px 24px rgba(141, 39, 141, 0.1);
  --shadow-lg: 0 12px 48px rgba(141, 39, 141, 0.15);
  --shadow-xl: 0 24px 64px rgba(141, 39, 141, 0.2);
  --shadow-glow: 0 0 60px rgba(141, 39, 141, 0.2);
  --shadow-glow-pink: 0 0 40px rgba(255, 107, 157, 0.25);
  --shadow-glow-blue: 0 0 40px rgba(99, 102, 241, 0.25);
  
  --glass-blur: blur(20px);
  
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

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

a:hover {
  color: var(--primary-dark);
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: 900px;
}

.container-wide {
  max-width: 1400px;
}

.text-gradient {
  background: linear-gradient(135deg, #8d278d 0%, #c74bc7 25%, #FF6B9D 50%, #6366F1 75%, #8d278d 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(141, 39, 141, 0.06);
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(141, 39, 141, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo img {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(141, 39, 141, 0.08);
}

.nav-cta {
  display: flex;
  gap: var(--space-sm);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-light);
  padding: var(--space-xl);
  z-index: 999;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .mobile-nav {
    top: 60px;
  }
}

.mobile-nav.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav-links a {
  display: block;
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 500;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-nav-links a:hover {
  background: var(--bg-soft);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: var(--gradient-purple);
  color: white;
  box-shadow: 0 4px 20px rgba(141, 39, 141, 0.3), 0 0 0 0 rgba(141, 39, 141, 0);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(141, 39, 141, 0.4), 0 0 20px rgba(255, 107, 157, 0.2);
  color: white;
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
  background: rgba(141, 39, 141, 0.08);
  color: var(--primary);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-full);
  background: var(--gradient-purple);
  z-index: -1;
  opacity: 0.3;
  transition: opacity var(--transition-base);
}

.btn-secondary:hover {
  background: rgba(141, 39, 141, 0.12);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-secondary:hover::after {
  opacity: 0.5;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  color: var(--primary);
  background: rgba(141, 39, 141, 0.06);
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(70px + var(--space-3xl)) 0 var(--space-3xl);
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
  animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.8; transform: scale(1.1) rotate(2deg); }
}

/* Floating Blobs */
.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: blobFloat 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(141, 39, 141, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: var(--space-xl);
  box-shadow: 0 4px 20px rgba(141, 39, 141, 0.08);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gradient-purple);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.hero-cta .btn {
  position: relative;
  z-index: 10;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  text-align: center;
}

.hero-visual svg {
  margin: 0 auto;
  display: block;
}

/* ============================================
   ZIPPER ANIMATION - Light Theme
   ============================================ */
.zipper-container {
  position: relative;
  width: 300px;
  height: 500px;
  perspective: 1000px;
}

.zipper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

/* Zipper Track */
.zipper-track {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, 
    #d0d0d8 0%, 
    #b0b0b8 50%, 
    #d0d0d8 100%
  );
  border-radius: 4px;
  box-shadow: 
    inset 0 0 10px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
}

/* Zipper Teeth Container */
.zipper-teeth-left,
.zipper-teeth-right {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 60px;
}

.zipper-teeth-left {
  right: calc(50% + 4px);
}

.zipper-teeth-right {
  left: calc(50% + 4px);
}

/* Individual Tooth */
.zipper-tooth {
  width: 24px;
  height: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.zipper-teeth-left .zipper-tooth {
  transform-origin: right center;
}

.zipper-teeth-right .zipper-tooth {
  transform-origin: left center;
}

/* Tooth 3D Shape */
.zipper-tooth::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    #b8b8c0 0%, 
    #d8d8e0 30%,
    #e8e8f0 50%,
    #c8c8d0 100%
  );
  border-radius: 2px;
  box-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.zipper-teeth-left .zipper-tooth::before {
  border-radius: 3px 0 0 3px;
  background: linear-gradient(90deg, 
    #c8c8d0 0%, 
    #e8e8f0 50%,
    #d8d8e0 70%,
    #b8b8c0 100%
  );
}

.zipper-teeth-right .zipper-tooth::before {
  border-radius: 0 3px 3px 0;
}

/* Tooth Interlocking Notch */
.zipper-tooth::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #c0c0c8, #a0a0a8);
  border-radius: 1px;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
}

.zipper-teeth-left .zipper-tooth::after {
  right: -3px;
}

.zipper-teeth-right .zipper-tooth::after {
  left: -3px;
}

/* Open/Closed States */
.zipper-tooth.open {
  opacity: 0.6;
}

.zipper-teeth-left .zipper-tooth.open {
  transform: translateX(-15px) rotateY(-30deg);
}

.zipper-teeth-right .zipper-tooth.open {
  transform: translateX(15px) rotateY(30deg);
}

.zipper-tooth.closed {
  opacity: 1;
}

.zipper-teeth-left .zipper-tooth.closed::after,
.zipper-teeth-right .zipper-tooth.closed::after {
  background: linear-gradient(135deg, #8d278d, #c74bc7);
  box-shadow: 0 0 8px rgba(141, 39, 141, 0.5);
}

/* Zipper Slider/Pull */
.zipper-slider {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 40px;
  z-index: 10;
  transition: top 0.1s linear;
}

.zipper-slider-body {
  position: relative;
  width: 100%;
  height: 30px;
  background: linear-gradient(180deg, 
    #f0f0f8 0%, 
    #d0d0d8 20%,
    #b0b0b8 80%,
    #909098 100%
  );
  border-radius: 4px 4px 8px 8px;
  box-shadow: 
    0 4px 10px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.7),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.zipper-slider-body::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 6px;
  background: linear-gradient(180deg, #707078, #505058);
  border-radius: 2px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.zipper-pull {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 24px;
  background: linear-gradient(180deg, 
    #e0e0e8 0%, 
    #b0b0b8 50%,
    #909098 100%
  );
  border-radius: 0 0 8px 8px;
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.zipper-pull::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #8d278d, #c74bc7);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(141, 39, 141, 0.6);
}

/* Labels on Zipper */
.zipper-label {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.zipper-label-left {
  right: calc(50% + 50px);
  text-align: right;
}

.zipper-label-right {
  left: calc(50% + 50px);
  text-align: left;
}

.zipper-label.active {
  color: var(--primary);
}

/* Zipper Glow Effect */
.zipper-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100%;
  background: linear-gradient(180deg, 
    transparent 0%,
    rgba(141, 39, 141, 0.08) var(--glow-position, 50%),
    transparent 100%
  );
  pointer-events: none;
  filter: blur(20px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

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

.section-gradient {
  background: var(--gradient-hero);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-lg);
  font-size: 2.5rem;
}

.section-header p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(141, 39, 141, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(141, 39, 141, 0.04);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(141, 39, 141, 0.1);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(141, 39, 141, 0.12);
}

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

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(141, 39, 141, 0.08), rgba(99, 102, 241, 0.06));
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  color: var(--primary);
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(141, 39, 141, 0.15);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: 0.95rem;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ============================================
   SPLIT SECTIONS (Two Audiences)
   ============================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  margin-top: var(--space-xl);
}

.split-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-3xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(141, 39, 141, 0.08);
  border-radius: var(--radius-2xl);
  margin: var(--space-md);
  box-shadow: 0 4px 24px rgba(141, 39, 141, 0.06);
  position: relative;
  overflow: hidden;
}

.split-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-purple);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.split-panel:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(141, 39, 141, 0.15), 0 0 40px rgba(141, 39, 141, 0.05);
}

.split-panel:hover::before {
  opacity: 1;
}

.split-panel .card-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, rgba(141, 39, 141, 0.08), rgba(99, 102, 241, 0.08));
  border: 2px solid rgba(141, 39, 141, 0.15);
  position: relative;
  transition: all 0.4s ease;
}

.split-panel:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(141, 39, 141, 0.2);
}

.split-panel .card-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary);
}

.split-panel h3 {
  font-size: 1.875rem;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  font-weight: 700;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.split-panel p {
  max-width: 420px;
  margin-bottom: var(--space-xl);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.split-panel .btn {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

/* ============================================
   TIMELINE / STEPS
   ============================================ */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
}

.timeline-item {
  position: relative;
  padding-left: 70px;
  padding-bottom: var(--space-2xl);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.timeline-content p {
  font-size: 0.95rem;
}

/* ============================================
   BENEFITS LIST
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.benefit-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.benefit-item:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(141, 39, 141, 0.1);
  border-radius: var(--radius-sm);
  color: var(--primary);
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
}

.benefit-content h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.benefit-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  padding-top: var(--space-lg);
}

.pricing-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(141, 39, 141, 0.06);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(141, 39, 141, 0.04);
  position: relative;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.pricing-card:hover::after {
  left: 100%;
}

.pricing-card:hover {
  border-color: rgba(141, 39, 141, 0.15);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(141, 39, 141, 0.12);
}

.pricing-card.featured {
  border-color: transparent;
  background: linear-gradient(180deg, rgba(141, 39, 141, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
  position: relative;
  transform: scale(1.05);
  z-index: 5;
}

.pricing-card.featured::before {
  content: '✨ Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-purple);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(141, 39, 141, 0.3);
  z-index: 10;
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.pricing-title {
  font-size: 1.35rem;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.pricing-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  min-height: 60px;
  line-height: 1.6;
}

/* ============================================
   BRAND STORY / ZIPPER SECTION
   ============================================ */
.brand-story {
  background: var(--bg-soft);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.brand-story-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-story-visual svg {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  height: auto;
}

.brand-story-content h2 {
  margin-bottom: var(--space-lg);
}

.brand-story-content p {
  margin-bottom: var(--space-md);
}

.brand-story-content p:last-of-type {
  margin-bottom: 0;
}

.brand-highlight {
  background: rgba(141, 39, 141, 0.08);
  border-left: 3px solid var(--primary);
  padding: var(--space-md) var(--space-lg);
  margin-top: var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.brand-highlight p {
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #FAF8FC 0%, #F0E8F4 50%, #E8E0F0 100%);
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: 
    radial-gradient(circle at 30% 30%, rgba(141, 39, 141, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 157, 0.06) 0%, transparent 60%);
  animation: ctaGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  50% { transform: translate(-50%, -50%) scale(1.1) rotate(180deg); }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: var(--space-lg);
  font-size: 2.5rem;
}

.cta-content p {
  font-size: 1.15rem;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   MOBILE APP SECTION
   ============================================ */
.mobile-app-section {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  box-shadow: var(--shadow-sm);
}

.mobile-app-content h3 {
  margin-bottom: var(--space-sm);
}

.mobile-app-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.mobile-app-badges {
  display: flex;
  gap: var(--space-md);
}

.store-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0.6;
  cursor: not-allowed;
}

.store-badge svg {
  width: 24px;
  height: 24px;
}

.coming-soon-badge {
  font-size: 0.65rem;
  background: var(--primary);
  color: white;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  margin-left: var(--space-xs);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-2xl) 0 var(--space-xl);
}

.footer > .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: 0.95rem;
  margin-top: var(--space-md);
  max-width: 300px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(141, 39, 141, 0.06);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-purple);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  color: white;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 25px rgba(141, 39, 141, 0.25);
}

.footer-social a:hover::before {
  opacity: 1;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

.footer-column {
  text-align: left;
}

.footer-column h4 {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
}

.footer-links a,
.footer-links button {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a,
.footer-legal button {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--text-secondary);
}

/* ============================================
   FORM SUCCESS POPUP
   ============================================ */
.form-success-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.form-success-popup-overlay.active {
  opacity: 1;
}

.form-success-popup {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-base);
}

.form-success-popup-overlay.active .form-success-popup {
  transform: scale(1) translateY(0);
}

.form-success-icon {
  width: 80px;
  height: 80px;
  background: rgba(141, 39, 141, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--primary);
}

.form-success-popup h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.form-success-popup p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.form-success-popup .btn {
  min-width: 120px;
}

/* ============================================
   MODAL STYLES
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 11000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  max-width: 800px;
  max-height: 90vh;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition-base);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-soft);
}

.modal-header h2 {
  font-size: 1.5rem;
  margin: 0;
}

.modal-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--border-subtle);
  color: var(--text-primary);
}

.modal-body {
  padding: var(--space-xl);
  overflow-y: auto;
  max-height: calc(90vh - 80px);
}

.modal-body h3 {
  font-size: 1.15rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  margin-bottom: var(--space-md);
}

.modal-body ul,
.modal-body ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
  color: var(--text-secondary);
}

.modal-body li {
  margin-bottom: var(--space-sm);
}

.modal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  font-size: 0.9rem;
}

.modal-body th,
.modal-body td {
  text-align: left;
  padding: var(--space-md);
  border: 1px solid var(--border-subtle);
}

.modal-body th {
  background: var(--bg-soft);
  color: var(--text-primary);
  font-weight: 600;
}

.modal-body td {
  color: var(--text-secondary);
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(141, 39, 141, 0.08);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 4px rgba(141, 39, 141, 0.1), 0 4px 20px rgba(141, 39, 141, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238d278d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-3xl);
}

.contact-info {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.contact-info h2 {
  margin-bottom: var(--space-md);
}

.contact-info > p {
  margin-bottom: var(--space-2xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(141, 39, 141, 0.1);
  border-radius: var(--radius-md);
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item-content h4 {
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

.contact-item-content p {
  font-size: 0.9rem;
  margin: 0;
}

.contact-form-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
}

.contact-form-wrapper h2 {
  margin-bottom: var(--space-xl);
}

/* FAQ Preview */
.faq-preview {
  margin-top: var(--space-3xl);
}

.faq-preview h2 {
  margin-bottom: var(--space-xl);
}

.faq-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(141, 39, 141, 0.06);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(141, 39, 141, 0.04);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(141, 39, 141, 0.08);
  transform: translateX(4px);
}

.faq-item.active {
  border-color: rgba(141, 39, 141, 0.2);
  box-shadow: 0 8px 30px rgba(141, 39, 141, 0.1);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: rgba(141, 39, 141, 0.03);
}

.faq-question svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--space-xl) var(--space-lg);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeSlideIn 0.3s ease;
}

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

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.6s ease forwards;
}

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

/* Staggered animations */
.stagger > * {
  opacity: 0;
  animation: slideUp 0.5s ease forwards;
}

.stagger > *:nth-child(1) { animation-delay: 0.1s; }
.stagger > *:nth-child(2) { animation-delay: 0.2s; }
.stagger > *:nth-child(3) { animation-delay: 0.3s; }
.stagger > *:nth-child(4) { animation-delay: 0.4s; }
.stagger > *:nth-child(5) { animation-delay: 0.5s; }
.stagger > *:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-visual {
    min-height: 400px;
  }
  
  .zipper-container {
    transform: scale(0.8);
  }
  
  .split-section {
    grid-template-columns: 1fr;
    padding: 0 var(--space-lg);
  }
  
  .split-panel {
    margin: var(--space-md);
    padding: var(--space-2xl) var(--space-xl);
  }
  
  .brand-story {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .brand-story-visual {
    height: auto;
    min-height: 280px;
    max-height: 350px;
    order: 2;
  }
  
  .brand-story-visual svg {
    max-width: 100%;
    height: auto;
    max-height: 300px;
  }
  
  .brand-story-content {
    order: 1;
    text-align: center !important;
  }
  
  .brand-story-content p,
  .brand-story-content h2 {
    text-align: center !important;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .card-grid-2,
  .card-grid-3 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: 0;
  }
  
  .card {
    text-align: center;
  }
  
  .card-icon {
    margin: 0 auto var(--space-md);
  }
  
  .mobile-app-section {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 var(--space-lg);
  }
  
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-inner {
    height: 60px;
  }
  
  .hero {
    padding: calc(60px + var(--space-2xl)) 0 var(--space-2xl);
    min-height: auto;
  }
  
  .hero-visual {
    min-height: 350px;
  }
  
  .zipper-container {
    transform: scale(0.55);
  }
  
  .zipper-label {
    font-size: 0.6rem;
  }
  
  .zipper-label-left {
    right: calc(50% + 35px);
  }
  
  .zipper-label-right {
    left: calc(50% + 35px);
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .section-header {
    margin-bottom: var(--space-xl);
    max-width: 100%;
    padding: 0;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .brand-story {
    padding: var(--space-xl);
  }
  
  .split-section {
    padding: 0 var(--space-lg);
  }
  
  .split-panel {
    margin: var(--space-md) 0;
    padding: var(--space-xl) var(--space-lg);
  }
  
  .brand-story-content {
    text-align: center !important;
  }
  
  .brand-story-content p,
  .brand-story-content h2 {
    text-align: center !important;
  }
  
  .brand-story-visual {
    height: auto;
    min-height: 220px;
    max-height: 300px;
  }
  
  .brand-story-visual svg {
    max-width: 90%;
    height: auto;
    max-height: 260px;
  }
  
  .timeline::before {
    left: 18px;
  }
  
  .timeline-item {
    padding-left: 55px;
  }
  
  .timeline-marker {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .card {
    text-align: center;
  }
  
  .card-icon {
    margin: 0 auto var(--space-md);
  }
  
  .card h3,
  .card p {
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center !important;
  }
  
  .footer-column {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center !important;
  }
  
  .footer-column h4 {
    text-align: center !important;
    width: 100%;
  }
  
  .footer-links {
    align-items: center !important;
    width: 100%;
  }
  
  .footer-links li {
    text-align: center !important;
    width: 100%;
  }
  
  .footer-links a,
  .footer-links button {
    display: inline-block;
    text-align: center !important;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
  }
  
  .footer-brand p {
    max-width: 100%;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .mobile-app-badges {
    flex-direction: column;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .modal {
    max-height: 95vh;
    margin: var(--space-sm);
    border-radius: var(--radius-lg);
  }
  
  .modal-header {
    padding: var(--space-md) var(--space-lg);
  }
  
  .modal-header h2 {
    font-size: 1.25rem;
  }
  
  .modal-body {
    padding: var(--space-lg);
    max-height: calc(95vh - 70px);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .zipper-container {
    transform: scale(0.5);
  }
  
  .zipper-label {
    font-size: 0.55rem;
  }
  
  .zipper-label-left {
    right: calc(50% + 30px);
  }
  
  .zipper-label-right {
    left: calc(50% + 30px);
  }
  
  .card {
    padding: var(--space-lg);
    text-align: center;
  }
  
  .card h3 {
    text-align: center;
  }
  
  .card p {
    text-align: center;
  }
  
  .contact-info,
  .contact-form-wrapper {
    padding: var(--space-lg);
  }
  
  .brand-story-visual {
    min-height: 180px;
    max-height: 250px;
  }
  
  .brand-story-visual svg {
    max-width: 85%;
    max-height: 220px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .mobile-nav,
  .btn,
  .zipper-container,
  .modal-overlay {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* ============================================
   GEN Z MODERN EFFECTS
   ============================================ */

/* Scroll Reveal Animations */
.reveal-element {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Cursor Glow Effect */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(141, 39, 141, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .cursor-glow {
    display: none;
  }
}

/* Enhanced Card Hover States */
.feature-card,
.split-card,
.pricing-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
}

/* Glow Border Effect */
.glow-border {
  position: relative;
}

.glow-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-purple);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: blur(8px);
}

.glow-border:hover::before {
  opacity: 0.5;
}

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

.floating {
  animation: float 4s ease-in-out infinite;
}

/* Shine Effect on Cards */
.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 55%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.shine-effect:hover::after {
  transform: translateX(100%);
}

/* Gradient Border */
.gradient-border {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: var(--gradient-purple);
  border-radius: inherit;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Interactive Link Underline */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-purple);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger Animation for Lists */
.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  animation: staggerIn 0.5s ease forwards;
}

@keyframes staggerIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulse Glow on Focus */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(141, 39, 141, 0.1), 0 0 20px rgba(141, 39, 141, 0.1);
}

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

::-webkit-scrollbar-track {
  background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 10px;
  border: 2px solid var(--bg-soft);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
}

/* Selection Color */
::selection {
  background: rgba(141, 39, 141, 0.2);
  color: var(--text-primary);
}

/* Emoji Bullet Points Alternative */
.emoji-list li::before {
  content: '✨';
  margin-right: 0.5rem;
}

/* Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: rgba(141, 39, 141, 0.1);
  color: var(--primary);
}

.badge-success {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.badge-new {
  background: var(--gradient-purple);
  color: white;
}

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-soft) 25%,
    var(--bg-elevated) 50%,
    var(--bg-soft) 75%
  );
  background-size: 200% 100%;
  animation: skeleton 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Tooltip */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  padding: 0.5rem 1rem;
  background: var(--text-primary);
  color: white;
  font-size: 0.8rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}

[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   COOKIE CONSENT POPUP
   ============================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: var(--space-lg);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl) var(--space-2xl);
  box-shadow: 0 -10px 60px rgba(141, 39, 141, 0.15), 0 0 0 1px rgba(141, 39, 141, 0.08);
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.cookie-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(141, 39, 141, 0.1), rgba(99, 102, 241, 0.08));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.cookie-content {
  flex: 1;
}

.cookie-content h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.cookie-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.cookie-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-content a:hover {
  color: var(--primary-dark);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.875rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-family: var(--font-body);
}

.cookie-btn-accept {
  background: var(--gradient-purple);
  color: white;
  box-shadow: 0 4px 20px rgba(141, 39, 141, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(141, 39, 141, 0.4);
}

.cookie-btn-reject {
  background: rgba(141, 39, 141, 0.08);
  color: var(--primary);
}

.cookie-btn-reject:hover {
  background: rgba(141, 39, 141, 0.15);
}

.cookie-btn-manage {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--border-subtle);
}

.cookie-btn-manage:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Cookie Settings Modal */
.cookie-settings-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-settings-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cookie-settings-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%;
  max-width: 550px;
  max-height: 85vh;
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  z-index: 10001;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-settings-overlay.show .cookie-settings-modal {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.cookie-settings-header {
  padding: var(--space-xl) var(--space-2xl);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-settings-header h2 {
  font-size: 1.5rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cookie-settings-close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cookie-settings-close:hover {
  background: rgba(141, 39, 141, 0.1);
  transform: rotate(90deg);
}

.cookie-settings-close svg {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
}

.cookie-settings-body {
  padding: var(--space-xl) var(--space-2xl);
  max-height: 50vh;
  overflow-y: auto;
}

.cookie-category {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.cookie-category-header h4 {
  font-size: 1.05rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cookie-category-header .badge {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
}

.cookie-category p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--bg-elevated);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--gradient-purple);
  border-color: transparent;
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-settings-footer {
  padding: var(--space-lg) var(--space-2xl);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  gap: var(--space-md);
  justify-content: flex-end;
  background: var(--bg-soft);
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-consent-inner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-xl);
  }
  
  .cookie-icon {
    margin: 0 auto;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-settings-modal {
    width: 95%;
    max-height: 90vh;
  }
  
  .cookie-settings-header,
  .cookie-settings-body,
  .cookie-settings-footer {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
  
  .cookie-settings-footer {
    flex-direction: column;
  }
  
  .cookie-settings-footer .cookie-btn {
    width: 100%;
  }
}
