/* style.css - iSecret SipariÅŸ Paneli Landing Page Styles */

/* --------------------------------------------------
   1. Design Tokens & CSS Reset
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Colors */
  --bg-main: #f8fafc;
  --bg-glass: rgba(255, 255, 255, 0.8);
  --bg-card: #ffffff;
  --border-card: rgba(15, 23, 42, 0.06);
  --border-card-hover: rgba(15, 23, 42, 0.12);
  
  --text-main: #0f172a;
  --text-muted: #475569;
  
  /* Brand colors & gradients */
  --primary-gradient: linear-gradient(135deg, #6d28d9 0%, #2563eb 50%, #0891b2 100%);
  --btn-gradient: linear-gradient(90deg, #7c3aed 0%, #2563eb 100%);
  --btn-gradient-hover: linear-gradient(90deg, #6d28d9 0%, #1d4ed8 100%);
  
  --fb-color: #1877f2;
  --ig-gradient: linear-gradient(45deg, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  --whatsapp-color: #25d366;
  --tiktok-color: #0f172a; /* dark text/logo for light mode */
  --tiktok-alt: #fe0979;
  
  /* Status Colors */
  --status-new: #10b981;
  --status-prep: #d97706;
  --status-ship: #2563eb;

  /* Font Families */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.5;
}

/* Announcement Bar / Slogan Bar */
.announcement-bar {
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 6px 16px; /* Reduced from 10px 16px */
  font-size: 0.75rem; /* Reduced from 0.8rem */
  font-weight: 700;
  text-align: center;
  z-index: 1002;
  position: relative;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(109, 40, 217, 0.15);
}

/* --------------------------------------------------
   1.5. Premium Sticky Header & Mobile Drawer
-------------------------------------------------- */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.main-header {
  position: relative;
  width: 100%;
  z-index: 1000;
  padding: 12px 0; /* Reduced from 20px 0 */
  background: rgba(10, 10, 10, 0.75); /* Premium translucent black background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base text/link colors inside main-header - always white/translucent */
.main-header .brand-logo {
  color: #ffffff;
}

.main-header .nav-link {
  color: rgba(255, 255, 255, 0.7);
}

.main-header .nav-link:hover {
  color: #ffffff;
}

.main-header .btn-login {
  color: rgba(255, 255, 255, 0.8);
}

.main-header .btn-login:hover {
  color: #ffffff;
}

.main-header .btn-signup {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.main-header .btn-signup:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.15);
}

.main-header .mobile-toggle .bar {
  background-color: #ffffff;
}

/* Scrolled state overrides */
.main-header.scrolled {
  padding: 8px 0; /* Reduced from 12px 0 */
  background: rgba(10, 10, 10, 0.85); /* Slightly higher opacity black on scroll */
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo & Slogan */
.brand-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 4px;
  letter-spacing: -0.01em;
}

.logo-i-wrap {
  position: relative;
  display: inline-block;
  color: #a855f7;
}

.logo-i-dot {
  position: absolute;
  top: -0.08em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.45em;
  height: 0.45em;
  display: block;
  line-height: 0;
  animation: logoDotPulse 1.8s infinite ease-in-out;
}

.logo-i-dot svg {
  width: 100%;
  height: 100%;
  fill: #a855f7;
  filter: drop-shadow(0 0 3px rgba(168, 85, 247, 0.6));
}

@keyframes logoDotPulse {
  0%, 100% {
    transform: translateX(-50%) scale(0.9);
    opacity: 0.85;
  }
  50% {
    transform: translateX(-50%) scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.9));
  }
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav-link:hover::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-login {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 16px; /* Reduced from 10px 20px */
  transition: all 0.3s ease;
}

.btn-login:hover {
  color: #a78bfa;
}

.btn-signup {
  background: #0f172a;
  border: 1px solid #0f172a;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 20px; /* Reduced from 10px 24px */
  border-radius: 99px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-signup:hover {
  background: #1e293b;
  color: #ffffff;
  border-color: #1e293b;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
  transform: translateY(-1px);
}

/* Hamburger toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 99px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hamburger Transformations */
.mobile-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

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

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98); /* Premium dark background */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.mobile-drawer.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.drawer-content {
  width: 100%;
  max-width: 320px;
  padding: 0 24px;
  text-align: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.mobile-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-link:hover {
  color: #ffffff;
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-login-mob {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.btn-login-mob:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-signup-mob {
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px;
  border-radius: 99px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.btn-signup-mob:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* Prevent scroll when menu is active */
body.no-scroll {
  overflow: hidden;
}

/* --------------------------------------------------
   2. Main Hero Layout & Containers
-------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 70vh; /* Reduced from 100vh to avoid empty vertical space */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 20px; /* Reduced from 80px 20px */
  z-index: 1; /* Forces stacking context to enable clipping of transformed children */
  isolation: isolate; /* Isolates stacking context from the rest of the document */
}

/* Vignette overlay to keep text highly readable */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(248, 250, 252, 0.3) 0%, rgba(248, 250, 252, 0.85) 75%, #f8fafc 100%);
  z-index: 2;
  pointer-events: none;
}

/* Ambient glow spots in background */
.glow-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}

.glow-1 {
  top: 10%;
  left: 15%;
  width: 400px;
  height: 400px;
  background: #8b5cf6;
}

.glow-2 {
  bottom: 10%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: #06b6d4;
}

/* --------------------------------------------------
   3. Floating/Scrolling Background Orders
-------------------------------------------------- */
.hero-bg-flow {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 110%;
  height: 120%;
  display: flex;
  justify-content: space-around;
  gap: 24px;
  transform: rotate(-8deg) skewY(-2deg) scale(1.05);
  filter: blur(2px); /* Reduced blur from 4.5px for clearer card visibility */
  opacity: 0.5; /* 50% opacity as requested */
  z-index: 1;
  pointer-events: none;
}

/* Columns containing the repeating lists */
.flow-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 32%;
  flex-shrink: 0;
  height: 200%; /* Double size for seamless loops */
}

/* Scrolling animations (very fast as requested) */
.flow-col-up {
  animation: scrollUp 12s linear infinite;
}

.flow-col-down {
  animation: scrollDown 12s linear infinite;
}

/* Slow down animation on user interaction or reduced motion settings if needed */
@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* --------------------------------------------------
   4. Order Card Styles
-------------------------------------------------- */
.order-card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-left: 3px solid var(--border-card);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  transition: all 0.3s ease;
}

/* Brand specific card highlights */
.order-card.facebook {
  border-left-color: var(--fb-color);
  box-shadow: 0 8px 30px rgba(24, 119, 242, 0.04), 0 0 1px rgba(24, 119, 242, 0.15);
}
.order-card.instagram {
  border-left-color: #fd5949;
  box-shadow: 0 8px 30px rgba(253, 89, 73, 0.04), 0 0 1px rgba(253, 89, 73, 0.15);
}
.order-card.whatsapp {
  border-left-color: var(--whatsapp-color);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.04), 0 0 1px rgba(37, 211, 102, 0.15);
}
.order-card.tiktok {
  border-left-color: var(--tiktok-color);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04), 0 0 1px rgba(15, 23, 42, 0.15);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-channel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Small inline logo inside cards */
.channel-logo {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

/* Colored dot indicator for channel (fallback) */
.channel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.order-card.facebook .channel-dot { background-color: var(--fb-color); box-shadow: 0 0 8px var(--fb-color); }
.order-card.instagram .channel-dot { background: var(--ig-gradient); box-shadow: 0 0 8px #fd5949; }
.order-card.whatsapp .channel-dot { background-color: var(--whatsapp-color); box-shadow: 0 0 8px var(--whatsapp-color); }
.order-card.tiktok .channel-dot { background-color: var(--tiktok-color); box-shadow: 0 0 8px var(--tiktok-color); }

.order-time {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.order-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.order-user {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.order-items {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.order-finance {
  text-align: right;
}

.order-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  font-family: var(--font-display);
}

.order-status {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 99px;
  margin-top: 4px;
}

.order-status.new { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.order-status.preparing { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.order-status.shipped { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }

/* --------------------------------------------------
   5. Foreground Content (Hero Overlay)
-------------------------------------------------- */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Category Badge */
.hero-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background-color: #8b5cf6;
  border-radius: 50%;
  box-shadow: 0 0 10px #8b5cf6;
  animation: pulse 2s infinite;
}

/* Title text */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title span {
  display: block;
}

.hero-title .gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

/* Platforms / Channels Badges List */
.platform-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  width: 100%;
  max-width: 640px;
}

.platform-pill {
  padding: 10px 22px;
  border-radius: 99px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.platform-pill svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Specific Platform Hover States */
.platform-pill.fb:hover {
  background: rgba(24, 119, 242, 0.08);
  border-color: rgba(24, 119, 242, 0.4);
  color: #1877f2;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.2);
  transform: translateY(-3px);
}

.platform-pill.ig:hover {
  background: rgba(253, 89, 73, 0.08);
  border-color: rgba(253, 89, 73, 0.4);
  color: #fd5949;
  box-shadow: 0 0 20px rgba(253, 89, 73, 0.2);
  transform: translateY(-3px);
}



.platform-pill.tiktok:hover {
  background: rgba(0, 242, 254, 0.08);
  border-color: rgba(0, 242, 254, 0.4);
  color: var(--tiktok-color);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
  transform: translateY(-3px);
}

/* Call to Action Controls */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--btn-gradient);
  color: var(--text-main);
  padding: 16px 36px;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
}

.cta-button:hover {
  background: var(--btn-gradient-hover);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
  transform: translateY(-2px);
}

.cta-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(4px);
}

.cta-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-green {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulseGreen 2s infinite;
}

/* --------------------------------------------------
   6. Keyframe Animations
-------------------------------------------------- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(139, 92, 246, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* --------------------------------------------------
   6.5. Features Section Styles
-------------------------------------------------- */
.features-section {
  position: relative;
  width: 100%;
  padding: 30px 24px 120px 24px;
  background-color: var(--bg-main);
  z-index: 10;
  overflow: hidden;
}

.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px auto;
}

.section-badge {
  display: inline-block;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.05);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.01), 0 1px 3px rgba(15, 23, 42, 0.01);
}

.feature-card:hover {
  background: #ffffff;
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06), 0 0 1px rgba(139, 92, 246, 0.15);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.feature-card:hover .feature-icon-wrapper {
  background: var(--btn-gradient);
  color: var(--text-main);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
  transform: scale(1.05);
}

.feature-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 14px;
}

.feature-card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --------------------------------------------------
   7. 100% Mobile & Tablet Responsiveness
-------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-bg-flow {
    gap: 16px;
  }
  .flow-col {
    width: 48%; /* Drop to 2 columns on tablet for better visual fit and spacing */
  }
  .flow-col:nth-child(3) {
    display: none; /* Hide third column on medium screens */
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .main-header {
    position: relative;
    top: 0;
    padding: 8px 0; /* Reduced from 14px 0 */
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .main-header.scrolled {
    padding: 6px 0; /* Reduced from 10px 0 */
    background: rgba(10, 10, 10, 0.85);
  }
  .logo-slogan {
    display: none;
  }
  .nav-menu {
    display: none;
  }
  .btn-login, .btn-signup {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-section {
    padding: 40px 16px 30px 16px; /* Reduced from 120px 16px 60px 16px */
    min-height: auto;
    height: auto; /* Let the height adapt to content instead of forcing 100vh */
  }
  .features-section {
    padding: 30px 16px 80px 16px;
  }

  .section-header {
    margin-bottom: 50px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .feature-card {
    padding: 24px 16px;
  }
  .feature-card .feature-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 16px;
  }
  .feature-card .feature-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }
  .feature-card-title {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }
  .feature-card-text {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  

  
  .hero-title {
    margin-bottom: 20px;
  }
  
  .platform-badges {
    gap: 10px;
    margin-bottom: 32px;
  }
  
  .platform-pill {
    padding: 8px 16px;
    font-size: 0.8rem;
    gap: 8px;
  }
  
  .platform-pill svg {
    width: 14px;
    height: 14px;
  }

  .cta-button {
    width: 100%; /* Full width buttons look better and are easier to tap on mobile */
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    letter-spacing: -0.03em;
  }
  
  .hero-badge {
    padding: 6px 14px;
    font-size: 0.65rem;
    margin-bottom: 18px;
  }

  .order-card {
    padding: 14px;
  }
  
  .order-price {
    font-size: 0.95rem;
  }
  
  .order-user {
    font-size: 0.8rem;
  }
  
  .order-items {
    max-width: 120px;
    font-size: 0.7rem;
  }
}

/* --------------------------------------------------
   8. Floating WhatsApp Support Button
-------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
  background-color: #20ba5a;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px solid #25d366;
  border-radius: 50%;
  opacity: 0;
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 76px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #111827;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #111827;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}

}

/* --------------------------------------------------
   8.5. How It Works Section Styles
-------------------------------------------------- */
.how-it-works-section {
  position: relative;
  width: 100%;
  padding: 120px 24px;
  background-color: var(--bg-main);
  z-index: 10;
  overflow: hidden;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 50px;
  max-width: 1150px;
  margin: 40px auto 0 auto;
  align-items: stretch;
}

/* Left: Step selector cards */
.steps-selector-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-selector-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
}

.step-selector-card:hover {
  transform: translateX(6px);
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
}

.step-selector-card.active {
  background: #ffffff;
  border-color: #7c3aed;
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.08);
}

.step-badge-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-muted);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.step-selector-card.active .step-badge-num {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.step-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.step-selector-card.active .step-title {
  color: #7c3aed;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Right: Visual Display Mockup */
.step-visual-display {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25), 0 0 1px rgba(255, 255, 255, 0.2) inset;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 480px;
}

.visual-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(15px) scale(0.98);
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mockup-header {
  padding: 12px 20px;
  background: #1e293b;
  border-bottom: 1px solid #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-header .dot.red { background: #ef4444; }
.mockup-header .dot.yellow { background: #f59e0b; }
.mockup-header .dot.green { background: #10b981; }

.mockup-title {
  margin-left: 12px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: monospace;
  font-weight: 500;
}

/* Realistic Panel Layout */
.panel-workspace-mock {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  background: #f1f5f9; /* Light background of actual panel */
  text-align: left;
}

.mini-sidebar {
  width: 48px;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
  gap: 15px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.sidebar-logo {
  font-family: var(--font-display);
  font-weight: 900;
  color: #ffffff;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
  width: 100%;
  text-align: center;
  letter-spacing: -1px;
}

.sidebar-icon {
  font-size: 1.05rem;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-icon.active {
  opacity: 1;
  transform: scale(1.1);
}

.panel-content-area {
  flex-grow: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  position: relative;
}

.panel-header-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.panel-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.02);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 10px;
  align-items: center;
}

.mock-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-form-group label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mock-form-group input, .panel-card select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 0.75rem;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 600;
  outline: none;
}

.mock-upload-btn-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.mock-btn-secondary {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mock-upload-status {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 500;
}

.mock-uploaded-images {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.mock-image-row {
  font-size: 0.68rem;
  font-weight: 600;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 5px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.visual-panel.active .mock-image-row:nth-child(1) {
  animation: mockImageFade 0.4s ease-out 0.8s forwards;
}

.visual-panel.active .mock-image-row:nth-child(2) {
  animation: mockImageFade 0.4s ease-out 1.4s forwards;
}

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

.mock-image-row .green-text {
  color: #10b981;
  font-weight: 800;
}

/* Step 2 specific styles */
.mock-package-box {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
}

.mock-package-header {
  font-size: 0.72rem;
  font-weight: 800;
  border-bottom: 1px solid #cbd5e1;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-package-header.purple { color: #a855f7; }
.mock-package-header.indigo { color: #6366f1; }

.mock-package-num {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
}

.mock-package-header.purple .mock-package-num { background: #a855f7; }
.mock-package-header.indigo .mock-package-num { background: #6366f1; }

.bold-input {
  color: #10b981 !important;
  font-weight: 800 !important;
}

.mock-image-preview-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #10b981;
}

/* Step 3 specific styles */
.pixel-input-style {
  color: #7c3aed !important;
  font-family: monospace;
  font-weight: 700 !important;
}

.mock-conversions-feed {
  background: #0f172a;
  border-radius: 8px;
  padding: 12px;
  margin-top: 8px;
}

.feed-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 6px;
  font-family: monospace;
}

.feed-logs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: monospace;
  font-size: 0.65rem;
}

.log-entry {
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transform: translateX(-5px);
}

.visual-panel.active .log-entry:nth-child(1) {
  animation: slideInStream 0.4s ease-out 0.8s forwards;
}

.visual-panel.active .log-entry:nth-child(2) {
  animation: slideInStream 0.4s ease-out 1.4s forwards;
}

@keyframes slideInStream {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Step 4 specific styles */
.mock-table-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.02);
}

.mock-table {
  width: 100%;
  border-collapse: collapse;
}

.mock-table th {
  background: #f8fafc;
  border-bottom: 1px solid #cbd5e1;
  padding: 8px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  text-align: left;
}

.mock-table td {
  padding: 8px 10px;
  font-size: 0.7rem;
  color: #0f172a;
  border-bottom: 1px solid #f1f5f9;
}

.mock-link {
  color: #7c3aed;
  font-weight: 700;
  text-decoration: underline;
}

.mock-status-active {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.active-row-highlight {
  background: rgba(124, 58, 237, 0.03);
}

.mock-deploy-success-popup {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 2px solid #10b981;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(16,185,129,0.15);
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.visual-panel.active .mock-deploy-success-popup {
  opacity: 1;
  transform: translateY(0);
  animation: bouncePopup 1.5s ease 0.8s forwards;
}

@keyframes bouncePopup {
  0% { opacity: 0; transform: translateY(15px); }
  50% { opacity: 1; transform: translateY(-5px); }
  70% { transform: translateY(2px); }
  100% { opacity: 1; transform: translateY(0); }
}

.rocket-icon {
  font-size: 1.5rem;
  animation: shakeRocket 0.5s ease infinite alternate;
  display: inline-block;
}

@keyframes shakeRocket {
  from { transform: rotate(-5deg); }
  to { transform: rotate(5deg); }
}

.popup-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.popup-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #0f172a;
}

.popup-url {
  font-size: 0.7rem;
  color: #10b981;
  font-weight: 700;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .step-visual-display {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: 80px 16px;
  }
  .step-selector-card {
    padding: 20px;
    gap: 16px;
  }
  .step-badge-num {
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
    border-radius: 10px;
  }
  .step-title {
    font-size: 1.05rem;
  }
  .step-desc {
    font-size: 0.8rem;
  }
  .mockup-body {
    padding: 20px;
  }
}

/* --------------------------------------------------
   9. Live Dashboard Preview Section Styles
-------------------------------------------------- */
.demo-section {
  position: relative;
  width: 100%;
  padding: 100px 24px;
  background-color: #f8fafc;
  z-index: 10;
  overflow: hidden;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

/* App Window Container */
.app-window {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08), 0 5px 15px rgba(15, 23, 42, 0.02);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Titlebar */
.window-titlebar {
  background: #f1f5f9;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-dots .dot.red { background-color: #ef4444; }
.window-dots .dot.yellow { background-color: #eab308; }
.window-dots .dot.green { background-color: #22c55e; }

.window-address {
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 6px;
  padding: 4px 40px;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  font-family: monospace;
  letter-spacing: 0.5px;
}

/* App Layout */
.app-layout {
  display: flex;
  min-height: 500px;
}

/* Sidebar */
.app-sidebar {
  width: 240px;
  background: #0f172a;
  color: #ffffff;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.app-sidebar .sidebar-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 30px;
  padding-left: 8px;
}

.app-sidebar .sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: auto;
}

.app-sidebar .menu-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #94a3b8;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.app-sidebar .menu-item a:hover,
.app-sidebar .menu-item.active a {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.app-sidebar .menu-item.active a {
  border-left: 3px solid #8b5cf6;
  background: rgba(255, 255, 255, 0.1);
  padding-left: 11px;
}

.app-sidebar .badge-count {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
}

.app-sidebar .badge-count.approved {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.sidebar-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.operator-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.operator-avatar {
  width: 32px;
  height: 32px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}

.operator-info {
  display: flex;
  flex-direction: column;
}

.operator-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
}

.operator-role {
  font-size: 0.7rem;
  color: #64748b;
}

/* Main Content Area */
.app-main-content {
  flex: 1;
  background: #f8fafc;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.app-header .search-box {
  flex: 1;
  max-width: 320px;
}

.app-header .search-input {
  width: 100%;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.8rem;
  font-weight: 500;
  background: #ffffff;
}

.header-actions-demo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-demo {
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-demo.btn-excel {
  background: #107c41;
  color: #ffffff;
}

.btn-demo.btn-excel:hover {
  background: #0d6233;
  box-shadow: 0 4px 12px rgba(16, 124, 65, 0.2);
}

.date-badge-demo {
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* --------------------------------------------------
   9. Live Dashboard Preview Section Styles
-------------------------------------------------- */
.demo-section {
  position: relative;
  width: 100%;
  padding: 100px 24px;
  background-color: #f8fafc;
  z-index: 10;
  overflow: hidden;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.real-panel-mockup {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.01) inset;
  max-width: 1150px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.browser-chrome {
  background: #f1f5f9;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chrome-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.chrome-dot.red { background: #ef4444; }
.chrome-dot.yellow { background: #f59e0b; }
.chrome-dot.green { background: #10b981; }

.chrome-url {
  font-family: monospace;
  font-size: 0.72rem;
  color: #64748b;
  margin-left: 14px;
  font-weight: 500;
}

.browser-content {
  width: 100%;
  display: flex;
}

.panel-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.real-panel-mockup:hover .panel-screenshot-img {
  transform: scale(1.01);
}

@media (max-width: 768px) {
  .demo-section {
    padding: 80px 16px;
  }
  .real-panel-mockup {
    border-radius: 14px;
  }
  .browser-chrome {
    padding: 10px 14px;
  }
  .chrome-url {
    font-size: 0.65rem;
    margin-left: 8px;
  }
}

.channel-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
}

.channel-badge.fb { background: rgba(24, 119, 242, 0.1); color: #1877f2; }
.channel-badge.ig { background: rgba(253, 89, 73, 0.1); color: #fd5949; }
.channel-badge.whatsapp { background: rgba(37, 211, 102, 0.1); color: var(--whatsapp-color); }
.channel-badge.tiktok { background: rgba(15, 23, 42, 0.1); color: var(--tiktok-color); }

.status-badge-demo {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
}

.status-badge-demo.pending { background: #fef3c7; color: #d97706; }
.status-badge-demo.approved { background: #d1fae5; color: #065f46; }
.status-badge-demo.shipped { background: #dbeafe; color: #1e40af; }

/* Responsive adjustments for demo section */
@media (max-width: 1024px) {
  .stat-grid-demo {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .demo-section {
    padding: 60px 16px;
  }
  .app-sidebar {
    display: none; /* Hide sidebar inside mockup on mobile to fit screen */
  }
  .stat-grid-demo {
    grid-template-columns: 1fr;
  }
  .header-actions-demo .btn-excel {
    display: none; /* Hide button on mobile inside mockup */
  }
}

/* --------------------------------------------------
   6.8. Pricing Section Styles
-------------------------------------------------- */
.pricing-section {
  position: relative;
  width: 100%;
  padding: 120px 24px;
  background-color: var(--bg-main);
  z-index: 10;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  max-width: 1150px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 24px;
  padding: 48px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.01), 0 1px 3px rgba(15, 23, 42, 0.01);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06), 0 0 1px rgba(139, 92, 246, 0.15);
}

.pricing-card.plan-medium {
  border: 2px solid #10b981; /* Yeşil */
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.04);
}

.pricing-card.plan-medium:hover {
  border-color: #34d399;
  box-shadow: 0 20px 45px rgba(16, 185, 129, 0.12);
}

.pricing-card.plan-large.featured {
  border: 2px solid #7c3aed; /* Mor */
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.08);
}

.pricing-card.plan-large.featured:hover {
  border-color: #9061f9;
  box-shadow: 0 25px 50px rgba(124, 58, 237, 0.14);
}

.pricing-card.plan-xlarge {
  border: 2px solid #d4af37; /* Gold */
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.04);
}

.pricing-card.plan-xlarge:hover {
  border-color: #f3cd44;
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.12);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.plan-badge svg {
  width: 14px;
  height: 14px;
  display: block;
  flex-shrink: 0;
}

.plan-medium .plan-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.plan-large .plan-badge {
  background: var(--btn-gradient);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.plan-xlarge .plan-badge {
  background: linear-gradient(135deg, #e5c158 0%, #d4af37 100%);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.pricing-header {
  text-align: center;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding-bottom: 28px;
  margin-bottom: 28px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.4;
  min-height: 2.8em;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--text-main);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-body {
  flex-grow: 1;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.feature-icon {
  font-weight: 800;
  font-size: 1.1rem;
}

.plan-features li:not(.feature-disabled) .feature-icon {
  color: #10b981;
}

.plan-features li.feature-disabled {
  color: rgba(15, 23, 42, 0.3);
  text-decoration: line-through;
}

.plan-features li.feature-disabled .feature-icon {
  color: #ef4444;
}

.plan-features li.feature-highlight {
  color: #7c3aed;
  font-weight: 700;
}

.plan-features li.feature-highlight .feature-icon {
  color: #7c3aed;
}

.btn-pricing {
  display: block;
  text-align: center;
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-main);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 14px 24px;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-pricing:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.btn-pricing.btn-featured {
  background: var(--btn-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-pricing.btn-featured:hover {
  background: var(--btn-gradient-hover);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
  transform: translateY(-1px);
}

.btn-pricing-trial {
  display: block;
  text-align: center;
  background: var(--btn-gradient);
  color: #ffffff;
  border: none;
  padding: 14px 24px;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
  margin-bottom: 12px;
}

.btn-pricing-trial:hover {
  background: var(--btn-gradient-hover);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.45);
  transform: translateY(-2px);
}

/* Responsive Pricing */
@media (max-width: 768px) {
  .pricing-section {
    padding: 80px 16px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pricing-card {
    padding: 40px 24px;
  }
}

/* --------------------------------------------------
   10. Workflow Section Styles
-------------------------------------------------- */
.workflow-section {
  position: relative;
  width: 100%;
  padding: 100px 24px;
  background-color: #ffffff; /* Contrast with light grey background */
  z-index: 10;
}

.workflow-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1150px;
  margin: 40px auto;
}

.workflow-step-card {
  background: var(--bg-main);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 20px;
  padding: 30px 24px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.workflow-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(109, 40, 217, 0.15);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.8;
  margin-bottom: 15px;
  line-height: 1;
}

.workflow-step-card .step-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.workflow-step-card .step-card-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.workflow-article-box {
  max-width: 850px;
  margin: 60px auto 0 auto;
  background: var(--bg-main);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
}

.workflow-article-box .article-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.3;
}

.workflow-article-box .article-paragraph {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.article-highlight-box {
  background: rgba(109, 40, 217, 0.04);
  border-left: 4px solid #7c3aed;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

@media (max-width: 768px) {
  .workflow-section {
    padding: 80px 16px;
  }
  .workflow-steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .workflow-article-box {
    padding: 24px;
  }
  .workflow-article-box .article-title {
    font-size: 1.25rem;
  }
}

/* --------------------------------------------------
   11. Affiliate / Partnership Section Styles
-------------------------------------------------- */
.affiliate-section {
  position: relative;
  width: 100%;
  padding: 80px 24px 120px 24px;
  background-color: var(--bg-main);
  z-index: 10;
}

.affiliate-card {
  max-width: 1150px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
}

.affiliate-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.affiliate-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.affiliate-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 950;
  color: #ffffff;
  margin-top: 15px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.affiliate-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 35px;
}

.affiliate-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
}

.benefit-icon {
  font-size: 1.25rem;
}

.benefit-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.affiliate-cta .cta-button {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.affiliate-cta .cta-button:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .affiliate-section {
    padding: 60px 16px 100px 16px;
  }
  .affiliate-card {
    padding: 40px 20px;
    border-radius: 24px;
  }
  .affiliate-benefits {
    gap: 12px;
  }
  .benefit-item {
    padding: 10px 16px;
    width: 100%;
  }
}

/* --------------------------------------------------
   10. Sipariş Akışı (Order Flow Simulation) Section Styles
-------------------------------------------------- */
.order-flow-section {
  position: relative;
  width: 100%;
  padding: 100px 24px;
  background-color: #ffffff;
  z-index: 10;
  overflow: hidden;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.order-flow-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1150px;
  margin: 40px auto 0 auto;
  align-items: stretch;
}

.flow-steps-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flow-step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.04);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.flow-step-card:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.flow-step-card.active {
  background: #ffffff;
  border-color: #a855f7;
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.08), 0 0 0 1px rgba(168, 85, 247, 0.05) inset;
}

.flow-step-icon {
  font-size: 1.5rem;
  padding: 8px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.flow-step-card.active .flow-step-icon {
  background: #a855f7;
  color: white;
  transform: scale(1.1);
}

.flow-step-info {
  flex: 1;
}

.flow-step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.flow-step-card.active .flow-step-title {
  color: #7c3aed;
}

.flow-step-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
}

.flow-visual-col {
  width: 100%;
}

.flow-browser-mockup {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  min-height: 480px;
}

.flow-browser-mockup .mockup-header {
  background: #f1f5f9;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.flow-browser-mockup .mockup-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.flow-browser-mockup .mockup-header .dot.red { background: #ef4444; }
.flow-browser-mockup .mockup-header .dot.yellow { background: #f59e0b; }
.flow-browser-mockup .mockup-header .dot.green { background: #10b981; }

.flow-browser-mockup .mockup-title {
  font-family: monospace;
  font-size: 0.68rem;
  color: #64748b;
  margin-left: 10px;
}

.flow-workspace-mock {
  background: #f8fafc;
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.flow-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.flow-mock-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
}

.flow-mock-excel-btn {
  background: #10b981;
  color: white;
  border: none;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.flow-mock-excel-btn:hover {
  background: #059669;
}

.excel-download-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #34d399;
  width: 0;
  transition: width 0.1s linear;
}

.flow-simulator-view {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.flow-table-wrapper {
  background: white;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  flex: 1;
  overflow: hidden;
}

.flow-mock-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.7rem;
}

.flow-mock-table th {
  background: #f1f5f9;
  padding: 8px 10px;
  color: #475569;
  font-weight: 700;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.flow-mock-table td {
  padding: 10px;
  color: #334155;
  border-bottom: 1px solid rgba(15, 23, 42, 0.03);
  vertical-align: middle;
}

.flow-mock-table tr:last-child td {
  border-bottom: none;
}

.flow-mock-table .bold-text {
  font-weight: 700;
}

.flow-mock-table .badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
}

.flow-mock-table .badge.fb { background: #e0f2fe; color: #0284c7; }
.flow-mock-table .badge.ig { background: #fdf2f8; color: #db2777; }
.flow-mock-table .badge.tiktok { background: #f1f5f9; color: #0f172a; }
.flow-mock-table .badge.whatsapp { background: #dcfce7; color: #16a34a; }

.flow-mock-table .badge-status {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
}

.flow-mock-table .badge-status.success { background: #dcfce7; color: #15803d; }
.flow-mock-table .badge-status.warning { background: #fef3c7; color: #d97706; }
.flow-mock-table .badge-status.danger { background: #fee2e2; color: #b91c1c; }
.flow-mock-table .badge-status.approved { background: #e0f2fe; color: #0369a1; }
.flow-mock-table .badge-status.pending { background: #f1f5f9; color: #475569; }

/* Interactive overlay elements */
.flow-simulation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

/* Virtual Cursor */
.virtual-cursor {
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f172a' stroke='white' stroke-width='1.5'%3E%3Cpath d='M3 3l7.07 16.97 2.51-6.73 6.73-2.51L3 3z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-2px, -2px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 100;
}

/* Click ripple */
.click-ripple {
  position: absolute;
  border: 2px solid #a855f7;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  animation: cursorRipple 0.5s ease-out forwards;
}

@keyframes cursorRipple {
  0% {
    width: 0px;
    height: 0px;
    opacity: 1;
  }
  100% {
    width: 36px;
    height: 36px;
    opacity: 0;
  }
}

/* Scanner Bar */
.scanner-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.4), transparent);
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
  opacity: 0;
  top: 0;
}

/* Excel Float Card */
.excel-float-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.excel-float-card.show {
  transform: translateY(0);
  opacity: 1;
}

.excel-icon {
  font-size: 1.4rem;
}

.excel-info {
  display: flex;
  flex-direction: column;
}

.excel-filename {
  font-size: 0.68rem;
  font-weight: 700;
  color: #0f172a;
}

.excel-status {
  font-size: 0.58rem;
  color: #059669;
  font-weight: 500;
}

.excel-check {
  font-size: 0.8rem;
  font-weight: 700;
  color: #10b981;
  background: #dcfce7;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Newly landed row slide in */
.new-row-anim {
  animation: slideInRow 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideInRow {
  0% {
    transform: translateX(-30px);
    opacity: 0;
    background: #f5f3ff;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
    background: transparent;
  }
}

/* Flash effect */
.flash-row-green {
  animation: flashGreen 1s ease-out;
}

@keyframes flashGreen {
  0% { background: rgba(16, 185, 129, 0.2); }
  100% { background: transparent; }
}

.flash-row-purple {
  animation: flashPurple 1s ease-out;
}

@keyframes flashPurple {
  0% { background: rgba(168, 85, 247, 0.2); }
  100% { background: transparent; }
}

  }
}

/* --------------------------------------------------
   12. Arayüz Tema Seçici (Theme Selector Simulator) Styles
-------------------------------------------------- */
.theme-simulator-container {
  /* Default variables (Light + Purple Accent) */
  --theme-accent: #a855f7;
  --theme-accent-rgb: 168, 85, 247;
  
  --sim-bg: #f1f5f9;
  --sim-card-bg: #ffffff;
  --sim-text: #0f172a;
  --sim-text-muted: #64748b;
  --sim-border: rgba(15, 23, 42, 0.06);
  --sim-sidebar-bg: #0f172a;
  --sim-sidebar-text: #94a3b8;
  --sim-sidebar-text-active: #ffffff;
  
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto 0 auto;
  width: 100%;
}

/* Color Theme Modifiers */
.theme-simulator-container.theme-purple { --theme-accent: #a855f7; --theme-accent-rgb: 168, 85, 247; }
.theme-simulator-container.theme-indigo { --theme-accent: #6366f1; --theme-accent-rgb: 99, 102, 241; }
.theme-simulator-container.theme-blue { --theme-accent: #0ea5e9; --theme-accent-rgb: 14, 165, 233; }
.theme-simulator-container.theme-emerald { --theme-accent: #10b981; --theme-accent-rgb: 16, 185, 129; }
.theme-simulator-container.theme-amber { --theme-accent: #f59e0b; --theme-accent-rgb: 245, 158, 11; }
.theme-simulator-container.theme-crimson { --theme-accent: #ef4444; --theme-accent-rgb: 239, 68, 68; }
.theme-simulator-container.theme-pink { --theme-accent: #ec4899; --theme-accent-rgb: 236, 72, 153; }
.theme-simulator-container.theme-gold { --theme-accent: #ca8a04; --theme-accent-rgb: 202, 138, 4; }

/* Dark Mode Modifier */
.theme-simulator-container.dark-mode {
  --sim-bg: #0f172a;
  --sim-card-bg: #1e293b;
  --sim-text: #f8fafc;
  --sim-text-muted: #94a3b8;
  --sim-border: rgba(255, 255, 255, 0.08);
  --sim-sidebar-bg: #0b0f19;
  --sim-sidebar-text: #64748b;
  --sim-sidebar-text-active: #f8fafc;
}

/* Customizer Header Tool Bar */
.theme-control-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 14px 24px;
  border-radius: 16px;
}

.control-label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
}

.control-groups {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.theme-color-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-dot:hover {
  transform: scale(1.2);
}

.color-dot.active {
  transform: scale(1.2);
  box-shadow: 0 0 0 2px var(--theme-accent);
}

.color-dot.purple { background: #a855f7; }
.color-dot.indigo { background: #6366f1; }
.color-dot.blue { background: #0ea5e9; }
.color-dot.emerald { background: #10b981; }
.color-dot.amber { background: #f59e0b; }
.color-dot.crimson { background: #ef4444; }
.color-dot.pink { background: #ec4899; }
.color-dot.gold { background: #ca8a04; }

.control-divider {
  width: 1px;
  height: 20px;
  background: rgba(15, 23, 42, 0.1);
}

.theme-mode-toggle {
  display: flex;
  background: #e2e8f0;
  padding: 3px;
  border-radius: 8px;
  gap: 2px;
}

.mode-btn {
  background: transparent;
  border: none;
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mode-btn.active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.theme-simulator-container.dark-mode .mode-btn.active {
  color: #0f172a;
}

/* Simulator Browser Window */
.simulator-browser-window {
  background: var(--sim-bg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.4s ease, border-color 0.4s ease;
  aspect-ratio: 16 / 10;
}

.sim-browser-chrome {
  background: var(--sim-card-bg);
  border-bottom: 1px solid var(--sim-border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.sim-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.sim-dot.red { background: #ef4444; }
.sim-dot.yellow { background: #f59e0b; }
.sim-dot.green { background: #10b981; }

.sim-url {
  font-family: monospace;
  font-size: 0.68rem;
  color: var(--sim-text-muted);
  margin-left: 10px;
  transition: color 0.4s ease;
}

.sim-workspace-layout {
  display: flex;
  flex: 1;
}

.sim-sidebar {
  background: var(--sim-sidebar-bg);
  width: 170px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--sim-border);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.sim-sidebar-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--sim-sidebar-text-active);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sim-logo-dot {
  width: 6px;
  height: 6px;
  background: var(--theme-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--theme-accent);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.sim-menu-item {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sim-sidebar-text);
  padding: 8px 10px;
  border-radius: 6px;
  cursor: default;
  transition: all 0.3s ease;
}

.sim-menu-item.active {
  background: rgba(var(--theme-accent-rgb), 0.12);
  color: var(--theme-accent);
  border-left: 3px solid var(--theme-accent);
}

/* Workspace Content Area */
.sim-content-area {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--sim-text);
  transition: color 0.4s ease;
}

.sim-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sim-section-title {
  font-size: 0.9rem;
  font-weight: 700;
}

.sim-user-profile {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sim-text-muted);
}

/* Stats Cards */
.sim-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sim-stat-card {
  background: var(--sim-card-bg);
  border: 1px solid var(--sim-border);
  padding: 12px 14px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.sim-stat-label {
  font-size: 0.62rem;
  color: var(--sim-text-muted);
  font-weight: 600;
}

.sim-stat-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--sim-text);
  transition: color 0.4s ease;
}

.sim-stat-bar-bg {
  width: 100%;
  height: 4px;
  background: rgba(15, 23, 42, 0.05);
  border-radius: 99px;
  overflow: hidden;
}

.theme-simulator-container.dark-mode .sim-stat-bar-bg {
  background: rgba(255, 255, 255, 0.1);
}

.sim-stat-bar-fill {
  height: 100%;
  background: var(--theme-accent);
  border-radius: 99px;
  transition: background 0.4s ease, width 0.4s ease;
}

/* Chart Box */
.sim-chart-box {
  background: var(--sim-card-bg);
  border: 1px solid var(--sim-border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.sim-chart-header {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sim-text);
  transition: color 0.4s ease;
}

.sim-chart-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  flex: 1;
}

.sim-chart-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
}

.channel-name {
  width: 60px;
  font-weight: 600;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: rgba(15, 23, 42, 0.04);
  border-radius: 99px;
  overflow: hidden;
}

.theme-simulator-container.dark-mode .bar-track {
  background: rgba(255, 255, 255, 0.08);
}

.bar-fill {
  height: 100%;
  background: var(--theme-accent);
  border-radius: 99px;
  transition: background 0.4s ease, width 0.4s ease;
}

.bar-val {
  width: 25px;
  text-align: right;
  font-weight: 700;
  color: var(--sim-text-muted);
}

@media (max-width: 768px) {
  .theme-control-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px;
  }
  .sim-sidebar {
    width: 60px;
    padding: 20px 6px;
    align-items: center;
  }
  .sim-sidebar-brand {
    font-size: 0;
    justify-content: center;
    margin-bottom: 20px;
  }
  .sim-menu-item {
    font-size: 0;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
  }
  .sim-menu-item.active {
    border-left: none;
    border-top: 3px solid var(--theme-accent);
  }
  .sim-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------
   13. Footer (Premium Footer) Section Styles
-------------------------------------------------- */
.main-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 80px 24px 40px 24px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #a855f7, #6366f1, #10b981);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1150px;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.brand-logo-i {
  position: relative;
  display: inline-block;
  color: #a855f7;
}

.brand-logo-dot {
  position: absolute;
  top: -0.08em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.45em;
  height: 0.45em;
  display: block;
  line-height: 0;
  animation: logoDotPulse 1.8s infinite ease-in-out;
}

.brand-logo-dot svg {
  width: 100%;
  height: 100%;
  fill: #a855f7;
  filter: drop-shadow(0 0 3px rgba(168, 85, 247, 0.6));
}

.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #64748b;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  background: #a855f7;
  border-color: #a855f7;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #a855f7;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #a855f7;
  transform: translateX(4px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
}

.footer-contact a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #10b981;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1150px;
  margin: 30px auto 0 auto;
  font-size: 0.8rem;
  color: #64748b;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
}

/* --------------------------------------------------
   7.5. Customization & Updates Premium Split Container
-------------------------------------------------- */
.customization-updates-container {
  margin: 60px auto;
  max-width: 1200px;
  padding: 60px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.customization-updates-container .bg-blur-1 {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.customization-updates-container .bg-blur-2 {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.customization-updates-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Left Column Styling */
.custom-badge-pill {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.12);
  padding: 6px 14px;
  border-radius: 99px;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.customization-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
}

.customization-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  color: #0f172a;
  line-height: 1.25;
  margin: 0;
  text-align: center;
}

.customization-title span {
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.customization-desc {
  color: #475569;
  font-size: 1.05rem;
  margin-top: 20px;
  line-height: 1.7;
  text-align: center;
}

.decor-accent-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #2563eb);
  border-radius: 99px;
  margin: 30px auto 0 auto;
}

/* Right Column (Widget) Styling */
.updates-widget-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02), 0 1px 3px rgba(15, 23, 42, 0.01);
  max-height: 450px;
  overflow-y: auto;
  position: relative;
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding-bottom: 16px;
}

.widget-pulse {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: blink-badge-status 1.8s infinite ease-in-out;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.5px;
}

/* Widget Timeline Overrides */
.updates-widget-card .updates-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.updates-widget-card .updates-timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 20px;
  width: 1px;
  height: calc(100% - 20px);
  background: rgba(15, 23, 42, 0.06);
}

.updates-widget-card .update-item {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 40px;
  gap: 8px;
  border: none;
  background: transparent;
  width: 100%;
}

.updates-widget-card .update-dot {
  position: absolute;
  left: 17px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
  z-index: 2;
  transition: all 0.3s ease;
}

.updates-widget-card .update-item.type-improvement .update-dot {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.updates-widget-card .update-item.type-fix .update-dot {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.updates-widget-card .update-item:hover .update-dot {
  transform: scale(1.3);
}

.updates-widget-card .update-content-card {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.updates-widget-card .update-item:hover .update-content-card {
  transform: none;
  background: transparent;
  box-shadow: none;
}

.updates-widget-card .update-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}

.updates-widget-card .update-version-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.updates-widget-card .update-version {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

.updates-widget-card .update-badge {
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.updates-widget-card .update-badge.badge-new {
  background: rgba(124, 58, 237, 0.06);
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.updates-widget-card .update-badge.badge-improvement {
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.updates-widget-card .update-badge.badge-fix {
  background: rgba(16, 185, 129, 0.06);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.updates-widget-card .update-date {
  font-size: 0.72rem;
  color: #64748b;
  margin-left: auto;
}

.updates-widget-card .update-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.updates-widget-card .update-desc {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 8px;
}

.updates-widget-card .update-tags {
  display: flex;
  gap: 6px;
}

.updates-widget-card .update-tag {
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  color: #475569;
  background: #f1f5f9;
}

.updates-loading {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Custom Scrollbar for widget */
.updates-widget-card::-webkit-scrollbar {
  width: 6px;
}
.updates-widget-card::-webkit-scrollbar-track {
  background: transparent;
}
.updates-widget-card::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.08);
  border-radius: 99px;
}
.updates-widget-card::-webkit-scrollbar-thumb:hover {
  background: rgba(15, 23, 42, 0.15);
}

@media (max-width: 992px) {
  .customization-updates-container {
    padding: 40px;
  }
  .customization-updates-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .customization-left {
    text-align: center;
  }
  .customization-title {
    font-size: 2.2rem;
    text-align: center;
  }
  .customization-desc {
    text-align: center;
  }
  .decor-accent-line {
    margin: 20px auto 0 auto;
  }
}

/* --------------------------------------------------
   FAQ (Sıkça Sorulan Sorular) Section Styles
-------------------------------------------------- */
.faq-section {
  padding: 100px 0;
  position: relative;
  background-color: var(--bg-main);
  overflow: hidden;
}

.faq-accordion-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 768px) {
  .faq-accordion-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.faq-item:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.05);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.08);
}

.faq-trigger {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  color: var(--text-main);
  transition: all 0.3s ease;
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
}

.faq-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-muted);
}

.faq-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon-wrapper {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.faq-item.active .faq-icon {
  transform: rotate(135deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-panel-content {
  padding: 0 24px 24px 24px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-panel-content p {
  margin: 0;
}

/* Mobile Responsive Layout Fixes */
@media (max-width: 992px) {
  .order-flow-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Stats Section Styles */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.01);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
}

.stat-card .stat-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(124, 58, 237, 0.06);
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover .stat-icon-wrapper {
  background: var(--btn-gradient);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
  transform: scale(1.05);
}

.stat-card .stat-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}

.stat-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mobile responsive for stats */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .stat-number {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .stat-card {
    padding: 20px 12px;
  }
  .stat-card .stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 12px;
  }
  .stat-card .stat-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }
  .stat-number {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  .stat-label {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }
  .stat-desc {
    font-size: 0.72rem;
    line-height: 1.4;
  }
  .stats-section {
    padding: 50px 0;
  }
}

/* --------------------------------------------------
   Anlık Mağaza Performansı Widget & Animations
-------------------------------------------------- */
.customization-updates-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: left;
}

@media (max-width: 992px) {
  .customization-updates-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .customization-left {
    align-items: center;
    text-align: center;
  }
  .customization-left h2, .customization-left p {
    text-align: center !important;
  }
  .customization-left .decor-accent-line {
    margin: 20px auto 0 auto !important;
  }
}

.customization-right {
  width: 100%;
}

.live-dashboard-widget {
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}

.widget-sidebar-standalone {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.widget-sidebar-standalone .sidebar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding-bottom: 16px;
}

.widget-sidebar-standalone .sidebar-header h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.widget-sidebar-standalone .sidebar-icon {
  font-size: 1.3rem;
}

.customization-toggles-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
}

.switch-container {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}

.switch-container input {
  display: none;
}

.switch-slider {
  position: relative;
  width: 36px;
  height: 20px;
  background-color: #cbd5e1;
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-top: 2px;
}

.switch-slider::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

input:checked + .switch-slider {
  background-color: #7c3aed;
}

input:checked + .switch-slider::before {
  transform: translateX(16px);
}

.switch-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.switch-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  transition: color 0.2s ease;
}

input:checked ~ .switch-text .switch-label {
  color: #0f172a;
}

.switch-desc {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.4;
}

.sidebar-footer {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.5;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 16px;
}

.sidebar-footer p {
  margin: 0;
}

/* Customization features list */
.customization-features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
}

.customization-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.customization-feat-item .feat-icon {
  width: 44px;
  height: 44px;
  background: rgba(124, 58, 237, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: #7c3aed;
}

.customization-feat-item .feat-text-box h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.customization-feat-item .feat-text-box p {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* --------------------------------------------------
   Mobile Tracking Section Styles
-------------------------------------------------- */
.mobile-tracking-section {
  padding: 100px 0;
  background-color: var(--bg-card);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
}

.mobile-tracking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  max-width: 1150px;
  margin: 40px auto 0 auto;
  align-items: center;
}

.phone-mockup-container {
  width: 290px;
  height: 590px;
  background: #090d16;
  border: 11px solid #1e293b;
  border-radius: 40px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.phone-mockup-container::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.phone-camera {
  width: 110px;
  height: 22px;
  background: #1e293b;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .mobile-tracking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .tracking-features-col {
    order: 2;
  }
  .tracking-mockup-col {
    order: 1;
    margin-bottom: 20px;
  }
}
