/* 
   Lean Genie Advisors Inc. - Elite Premium Stylesheet
   Design Language: Enterprise Glassmorphism & Modern Minimalism
   Responsive: Mobile-First Approach
*/

:root {
  --primary: #7c3aed;
  --primary-glow: rgba(124, 58, 237, 0.5);
  --secondary: #4f46e5;
  --accent: #c084fc;
  --bg-dark: #05070f;
  --bg-card: rgba(17, 24, 39, 0.7);
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.03);
}

/* ---------- GLOBAL ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(79, 70, 229, 0.15) 0%, transparent 40%);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(28px, 6vw, 72px);
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto 0;
  border-radius: 2px;
}

h3 {
  font-size: clamp(18px, 4vw, 24px);
  margin-bottom: 16px;
  color: var(--accent);
}

p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(5, 7, 15, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: 0.3s;
}

.nav-logo {
  font-weight: 700;
  font-size: clamp(16px, 3vw, 20px);
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: none;
  gap: 20px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: #fff;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px 12px;
  line-height: 1;
  transition: 0.3s;
}

.menu-toggle:hover {
  color: var(--accent);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
  font-size: clamp(14px, 2vw, 16px);
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 10px 20px var(--primary-glow);
}

.btn.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px var(--primary-glow);
}

/* ---------- HERO ---------- */
.hero {
  text-align: center;
  padding: 120px 20px 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  font-size: clamp(12px, 2vw, 14px);
  color: var(--accent);
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
}

.hero p {
  max-width: 700px;
  font-size: clamp(16px, 3vw, 20px);
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 600px;
}

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

/* ---------- STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 900px;
  margin-top: 60px;
}

.stat-item {
  padding: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: 0.3s;
}

.stat-item h2 {
  font-size: clamp(28px, 5vw, 40px);
  margin-bottom: 5px;
  background: linear-gradient(90deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.stat-item h2::after { 
  display: none; 
}

.stat-item p {
  font-size: clamp(12px, 2vw, 14px);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- GRID & CARDS ---------- */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

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

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
}

.card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: visible;
  z-index: 1;
}

@media (min-width: 768px) {
  .card {
    padding: 40px;
  }
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, transparent, rgba(124, 58, 237, 0.05));
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
  opacity: 1;
}

.case-highlight {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  font-size: 14px;
  color: var(--text-main);
}

.case-highlight strong {
  color: var(--accent);
  display: block;
  margin-bottom: 5px;
}

/* ---------- AI & INTERACTIVE ---------- */
.interactive-section {
  background: rgba(124, 58, 237, 0.03);
  border-radius: 24px;
  padding: 40px 20px;
  margin: 40px 0;
  border: 1px solid var(--glass-border);
}

@media (min-width: 768px) {
  .interactive-section {
    border-radius: 40px;
    padding: 60px;
  }
}

.ai-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

input[type="file"] {
  padding: 10px 16px;
}

input[type="file"]::file-selector-button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-right: 10px;
  font-weight: 600;
  transition: 0.3s;
}

input[type="file"]::file-selector-button:hover {
  background: var(--secondary);
}

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

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- CONTACT FORM ---------- */
.form-card {
  background: var(--bg-card);
  padding: 40px 20px;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

@media (min-width: 768px) {
  .form-card {
    padding: 60px;
    border-radius: 32px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ---------- FOOTER ---------- */
.pre-footer {
  background: #02040a;
  padding: 60px 20px;
  border-top: 1px solid var(--glass-border);
}

@media (min-width: 768px) {
  .pre-footer {
    padding: 100px 5%;
  }
}

.pre-footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pre-footer-container {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
  }
}

.footer-label {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

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

.footer {
  text-align: center;
  padding: 30px 20px;
  background: #02040a;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 14px;
}



/* ---------- RESPONSIVE NAVIGATION ---------- */
@media (min-width: 1024px) {
  .nav {
    padding: 20px 5%;
  }

  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none !important;
  }

  .nav .btn {
    display: inline-flex;
  }
}

/* DESKTOP NAVIGATION (1024px and above) */
@media (min-width: 1024px) {
  .menu-toggle {
    display: none !important;
  }
  
  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    position: static !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    gap: 20px !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    backdrop-filter: none !important;
    z-index: auto !important;
  }

  .nav-links a {
    display: inline-block !important;
    padding: 0 !important;
    border-bottom: none !important;
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
  }

  .nav-links a:hover {
    color: var(--accent);
    background: none !important;
  }
}

/* MOBILE NAVIGATION (below 1024px) */
@media (max-width: 1023px) {
  .menu-toggle {
    display: block !important;
    order: 2;
  }
  
  .nav-links {
    display: none !important;
    position: fixed !important;
    right: -100% !important;
    top: 60px !important;
    flex-direction: column !important;
    background-color: rgba(5, 7, 15, 0.98) !important;
    width: 80% !important;
    max-width: 400px !important;
    text-align: left !important;
    transition: right 0.3s ease !important;
    padding: 20px 0 !important;
    backdrop-filter: blur(15px) !important;
    z-index: 999 !important;
    height: auto !important;
    max-height: calc(100vh - 60px) !important;
    overflow-y: auto !important;
    border-left: 1px solid var(--glass-border) !important;
  }

  .nav-links.active {
    display: flex !important;
    right: 0 !important;
  }

  .nav-links a {
    display: block !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid var(--glass-border) !important;
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
  }

  .nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
  }
}

/* ---------- RESPONSIVE CONTAINER ---------- */
@media (max-width: 768px) {
  .container {
    padding: 40px 20px;
  }

  h2::after {
    width: 40px;
  }

  .hero {
    padding: 100px 20px 60px;
    margin-top: 50px;
  }

  .hero-buttons {
    max-width: 100%;
  }
}

/* ---------- CALENDLY WIDGET RESPONSIVE ---------- */
.calendly-inline-widget {
  width: 100% !important;
  border-radius: 24px;
  overflow: hidden;
}

/* ---------- UTILITY CLASSES ---------- */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* ---------- DIY VS DELEGATE DECISION TREE ---------- */
.diy-tree {
  width: 100%;
}

.tree-section {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

.tree-section.hidden {
  display: none;
}

.tree-section h4 {
  font-size: clamp(18px, 4vw, 22px);
  margin-bottom: 25px;
  color: #fff;
  text-align: center;
}

.tree-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .tree-options {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
}

.tree-btn {
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(79, 70, 229, 0.1));
  border: 2px solid var(--primary);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}

.tree-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--primary-glow);
}

.tree-btn:active {
  transform: translateY(-1px);
}

#resultContent {
  background: rgba(124, 58, 237, 0.05);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 30px;
  text-align: left;
}

#resultContent h3 {
  font-size: clamp(20px, 5vw, 28px);
  margin-bottom: 20px;
  color: var(--accent);
}

#resultContent p {
  margin-bottom: 15px;
  line-height: 1.8;
}

#resultContent ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

#resultContent li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

#resultContent strong {
  color: #fff;
}

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


/* ---------- ROOT CAUSE ANALYSIS TOOLS ---------- */
.fishbone-container,
.whys-container {
  width: 100%;
}

.fishbone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

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

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

.fishbone-category {
  background: rgba(124, 58, 237, 0.03);
  border: 2px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px;
  transition: 0.3s;
}

.fishbone-category:hover {
  border-color: var(--primary);
  background: rgba(124, 58, 237, 0.08);
}

.fishbone-category h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--accent);
  font-weight: 600;
}

.fishbone-category textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  resize: vertical;
  transition: 0.3s;
}

.fishbone-category textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.whys-analysis {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.why-step {
  background: rgba(124, 58, 237, 0.03);
  border: 2px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px;
  transition: 0.3s;
}

.why-step:hover {
  border-color: var(--primary);
  background: rgba(124, 58, 237, 0.08);
}

.why-step label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--accent);
  font-size: 15px;
}

.why-step textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  resize: vertical;
  transition: 0.3s;
}

.why-step textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

#fishboneResult,
#whysResult {
  animation: slideIn 0.5s ease-out;
}

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

#fishboneResultContent ul,
#whysResultContent ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

#fishboneResultContent li,
#whysResultContent li {
  margin-bottom: 10px;
  line-height: 1.6;
}

#fishboneResultContent strong,
#whysResultContent strong {
  color: #fff;
}

#fishboneResultContent p,
#whysResultContent p {
  margin-bottom: 15px;
}

.btn-download {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.btn-download:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

/* CLICK PRESS EFFECT */
.btn-download:active {
  transform: scale(0.96);
}

/* GLOW SWEEP EFFECT */
.btn-download::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.btn-download:hover::after {
  left: 100%;
}

.ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: rippleEffect 0.6s linear;
}

@keyframes rippleEffect {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(10);
  }
}


.social-icons a:hover { color: #6c00ff !important; }
    
    /* Hamburger Menu Styles */
    .hamburger {
      display: none;
      flex-direction: column;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 8px;
      gap: 6px;
      z-index: 1001;
    }
    .hamburger span {
      width: 28px;
      height: 3px;
      background: #ffffff;
      border-radius: 2px;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      display: block;
    }
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(10px, 10px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .mobile-nav {
      display: none;
      position: fixed;
      top: 70px;
      right: 0;
      width: 100%;
      background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 0, 51, 0.98) 100%);
      backdrop-filter: blur(10px);
      border-top: 1px solid rgba(108, 0, 255, 0.2);
      flex-direction: column;
      padding: 20px 0;
      z-index: 1000;
      animation: slideDown 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .mobile-nav.active {
      display: flex;
    }
    .mobile-nav a {
      padding: 16px 24px;
      color: #ffffff;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      transition: all 0.3s ease;
      border-left: 3px solid transparent;
    }
    .mobile-nav a:hover {
      background: rgba(108, 0, 255, 0.1);
      border-left-color: #6c00ff;
      padding-left: 28px;
      color: #6c00ff;
    }
    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Carousel Styles - Futuristic Design */
    .carousel-section {
      padding: 100px 0;
      background: transparent;
      overflow: hidden;
      position: relative;
    }
    .carousel-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }
    .carousel-track-container {
      overflow: hidden;
      position: relative;
      border-radius: 24px;
      padding: 40px 0;
    }
    .carousel-track {
      display: flex;
      gap: 24px;
      padding: 0 60px;
    }
    .carousel-slide {
      min-width: calc(33.333% - 16px);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(108, 0, 255, 0.05) 100%);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(108, 0, 255, 0.3);
      border-radius: 20px;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-decoration: none;
      color: inherit;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 8px 32px rgba(108, 0, 255, 0.1);
    }
    .carousel-slide::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(108, 0, 255, 0.3) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .carousel-slide:hover {
      background: linear-gradient(135deg, rgba(108, 0, 255, 0.15) 0%, rgba(108, 0, 255, 0.08) 100%);
      border-color: #6c00ff;
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 20px 60px rgba(108, 0, 255, 0.3);
    }
    .carousel-slide:hover::before {
      opacity: 1;
    }
    .slide-content {
      position: relative;
      z-index: 1;
    }
    .slide-icon {
      font-size: 48px;
      margin-bottom: 20px;
      display: inline-block;
      animation: float 3s ease-in-out infinite;
    }
    .carousel-slide:hover .slide-icon {
      animation: bounce 0.6s ease-in-out;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }
    .carousel-slide h3 {
      color: #ffffff;
      margin-bottom: 15px;
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.5px;
    }
    .carousel-slide p {
      color: #b0b0b0;
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 25px;
    }
    .carousel-slide .btn-gist {
      display: inline-flex;
      align-items: center;
      color: #6c00ff;
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
    }
    .carousel-slide .btn-gist::after {
      content: '→';
      margin-left: 10px;
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      display: inline-block;
    }
    .carousel-slide:hover .btn-gist {
      color: #8d2aff;
    }
    .carousel-slide:hover .btn-gist::after {
      transform: translateX(8px);
    }
    
    /* Arrow Navigation */
    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border: 2px solid rgba(108, 0, 255, 0.4);
      background: rgba(108, 0, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #6c00ff;
      transition: all 0.3s ease;
      z-index: 10;
      font-size: 0;
    }
    .carousel-arrow svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
    }
    .carousel-arrow:hover {
      background: rgba(108, 0, 255, 0.25);
      border-color: #6c00ff;
      box-shadow: 0 0 20px rgba(108, 0, 255, 0.4);
      transform: translateY(-50%) scale(1.1);
    }
    .carousel-arrow-prev { left: 0; }
    .carousel-arrow-next { right: 0; }
    
    /* Navigation Dots */
    .carousel-nav {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 50px;
      position: relative;
      z-index: 2;
    }
    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(108, 0, 255, 0.25);
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      border: 1px solid rgba(108, 0, 255, 0.3);
    }
    .carousel-dot:hover {
      background: rgba(108, 0, 255, 0.5);
      transform: scale(1.3);
    }
    .carousel-dot.active {
      background: #6c00ff;
      transform: scale(1.4);
      box-shadow: 0 0 20px rgba(108, 0, 255, 0.6);
    }

    @media (max-width: 1024px) {
      .carousel-slide { min-width: calc(50% - 12px); }
      .carousel-track { padding: 0 40px; }
    }
    @media (max-width: 768px) {
      .pre-footer-container { grid-template-columns: 1fr !important; gap: 30px !important; }
      .carousel-slide { min-width: 100%; }
      .carousel-track { padding: 0 20px; }
      .carousel-arrow { width: 40px; height: 40px; }
      .carousel-arrow svg { width: 18px; height: 18px; }
      
      /* Hamburger Menu Mobile Styles */
      .hamburger { display: flex; }
      .nav-links { display: none !important; }
      .mobile-nav { max-height: calc(100vh - 70px); overflow-y: auto; }
    }

