/* ========================================
   EventoChain - Global Styles
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --accent-green: #10b981;
  --accent-green-light: #34d399;
  --accent-green-dark: #059669;
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --border-color: #1f2937;
  --border-green: rgba(16, 185, 129, 0.5);
  --glow-green: rgba(16, 185, 129, 0.3);
  --translucent-bg: rgba(16, 185, 129, 0.15);
  --translucent-border: rgba(16, 185, 129, 0.4);
  --sidebar-width: 280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

/* Dark overlay effect on all content images */
.section img,
.feature-card img,
.benefit-card-square img,
.comparison-card img,
.problem-card img,
.solution-card img,
.model-step img,
.trust-card img,
.pillar img {
  filter: brightness(0.7);
  transition: filter 0.3s ease;
}

.section img:hover,
.feature-card img:hover,
.benefit-card-square img:hover,
.comparison-card img:hover,
.problem-card img:hover,
.solution-card img:hover,
.model-step img:hover,
.trust-card img:hover,
.pillar img:hover {
  filter: brightness(0.85);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   Typography
   ======================================== */

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-green {
  color: var(--accent-green);
}

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

/* ========================================
   Layout
   ======================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* Features Section */
#features {
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.85) 100%),
    url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?w=1920&q=80') center/cover no-repeat fixed;
  position: relative;
}

#features .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   Buttons - Translucent Style
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--translucent-bg);
  border: 1px solid var(--translucent-border);
  color: var(--accent-green);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px var(--glow-green);
}

.btn-primary:hover {
  background: rgba(16, 185, 129, 0.25);
  border-color: var(--accent-green);
  box-shadow: 0 0 30px var(--glow-green);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--translucent-border);
  color: var(--accent-green);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--accent-green);
  transform: translateY(-2px);
}

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

.btn-signin {
  background: var(--translucent-bg);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
  backdrop-filter: blur(10px);
  padding: 0.625rem 1.5rem;
}

.btn-signin:hover {
  background: rgba(16, 185, 129, 0.25);
  box-shadow: 0 0 20px var(--glow-green);
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Custom Chain Link Logo */
.logo-icon::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid var(--accent-green);
  border-radius: 6px;
  transform: rotate(45deg);
  top: 3px;
  left: 3px;
}

.logo-icon::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid var(--accent-green-light);
  border-radius: 6px;
  transform: rotate(45deg);
  bottom: 3px;
  right: 3px;
  opacity: 0.7;
}

/* Connecting line */
.logo-chain {
  position: absolute;
  width: 12px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-green-light));
  transform: rotate(45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-green);
  transition: width 0.3s ease;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0a0a0a;
  border: 1px solid var(--border-green);
  border-radius: 0.75rem;
  padding: 0.75rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.nav-dropdown-item:hover {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-mypage {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 206, 178, 0.25);
  border: 1px solid rgba(0, 206, 178, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-green);
  flex-shrink: 0;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
  background: 
    url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1920&q=90') center/cover no-repeat fixed;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.88) 100%),
    radial-gradient(ellipse at center top, rgba(16, 185, 129, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--translucent-bg);
  border: 1px solid var(--translucent-border);
  border-radius: 9999px;
  color: var(--accent-green);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   Stats Section
   ======================================== */

.stats {
  padding: 4rem 0;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-green), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* ========================================
   About Section
   ======================================== */

.about-section {
  padding: 6rem 0;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.9) 100%),
    url('https://images.unsplash.com/photo-1531482615713-2afd69097998?w=1920&q=80') center/cover no-repeat fixed;
  position: relative;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  margin-bottom: 2rem;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ========================================
   Problems & Solutions
   ======================================== */

.problems-section,
.solutions-section {
  padding: 6rem 0;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.92) 100%),
    url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?w=1920&q=80') center/cover no-repeat fixed;
  position: relative;
}

.solutions-section .container {
  position: relative;
  z-index: 1;
}

.problems-grid,
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.problem-card,
.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.problem-card:hover,
.solution-card:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
}

.problem-card h3,
.solution-card h3 {
  color: var(--accent-green);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.problem-card p,
.solution-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   How It Works - Steps
   ======================================== */

.how-it-works {
  padding: 6rem 0;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.92) 100%),
    url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1920&q=80') center/cover no-repeat fixed;
  position: relative;
}

.how-it-works .container {
  position: relative;
  z-index: 1;
}

.steps-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.step-indicator {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.step-indicator.active,
.step-indicator:hover {
  background: var(--translucent-bg);
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--border-color);
  align-self: center;
}

.step-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: 1rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--translucent-bg);
  border: 1px solid var(--accent-green);
  border-radius: 50%;
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-content h3 {
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* ========================================
   Core Features
   ======================================== */

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--translucent-bg);
  border: 1px solid var(--translucent-border);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  position: relative;
}

/* Abstract geometric icon patterns */
.feature-icon.icon-grid::before {
  content: '';
  width: 24px;
  height: 24px;
  background: 
    linear-gradient(90deg, var(--accent-green) 2px, transparent 2px),
    linear-gradient(var(--accent-green) 2px, transparent 2px);
  background-size: 8px 8px;
  opacity: 0.8;
}

.feature-icon.icon-globe::before {
  content: '';
  width: 26px;
  height: 26px;
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  position: relative;
}

.feature-icon.icon-globe::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 12px;
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  opacity: 0.6;
}

.feature-icon.icon-layers::before {
  content: '';
  width: 20px;
  height: 4px;
  background: var(--accent-green);
  border-radius: 2px;
  box-shadow: 
    0 8px 0 var(--accent-green),
    0 16px 0 var(--accent-green);
  opacity: 0.8;
}

.feature-icon.icon-bolt::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 20px solid var(--accent-green);
  position: relative;
  top: -4px;
}

.feature-icon.icon-bolt::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 20px solid var(--accent-green-light);
  position: absolute;
  bottom: 10px;
  opacity: 0.7;
}

.feature-icon.icon-chart::before {
  content: '';
  width: 6px;
  height: 24px;
  background: var(--accent-green);
  border-radius: 3px;
  box-shadow: 
    10px 6px 0 var(--accent-green-light),
    20px -4px 0 var(--accent-green);
}

.feature-icon.icon-card::before {
  content: '';
  width: 28px;
  height: 18px;
  border: 2px solid var(--accent-green);
  border-radius: 4px;
}

.feature-icon.icon-card::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 3px;
  background: var(--accent-green-light);
  bottom: 22px;
  left: 18px;
  border-radius: 2px;
}

.feature-icon.icon-user::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  position: relative;
  top: -6px;
}

.feature-icon.icon-user::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 12px;
  border: 2px solid var(--accent-green);
  border-radius: 12px 12px 0 0;
  bottom: 14px;
}

.feature-icon.icon-ai::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-green);
  border-radius: 4px;
  transform: rotate(45deg);
}

.feature-icon.icon-ai::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-green-light);
  border-radius: 50%;
}

.feature-card h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
}

/* ========================================
   Why EventoChain
   ======================================== */

.why-section {
  padding: 6rem 0;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.why-item:hover {
  border-color: var(--border-green);
}

.why-icon {
  width: 50px;
  height: 50px;
  background: var(--translucent-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-size: 1.25rem;
  flex-shrink: 0;
  position: relative;
}

/* CSS Checkmark */
.why-icon::before {
  content: '';
  width: 8px;
  height: 16px;
  border: 3px solid var(--accent-green);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  margin-bottom: 4px;
}

.why-item span {
  font-weight: 500;
}

/* ========================================
   Page Header
   ======================================== */

.page-header {
  padding: 4rem 0 3rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 206, 178, 0.1) 0%, rgba(138, 43, 226, 0.05) 100%);
  margin-bottom: 2rem;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   Search & Filters
   ======================================== */

.filters-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 250px;
  padding: 0.875rem 1rem 0.875rem 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-green);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-wrapper {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 18px;
  height: 18px;
}

/* CSS Search Icon */
.search-icon::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  top: 0;
  left: 0;
}

.search-icon::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 2px;
  background: var(--text-muted);
  transform: rotate(45deg);
  bottom: 2px;
  right: 0;
}

/* CSS Location Pin */
.icon-location {
  display: inline-flex;
  width: 16px;
  height: 16px;
  position: relative;
}

.icon-location::before {
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent-green);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

/* CSS Calendar Icon */
.icon-calendar {
  display: inline-flex;
  width: 16px;
  height: 16px;
  position: relative;
}

.icon-calendar::before {
  content: '';
  width: 14px;
  height: 12px;
  border: 2px solid var(--text-secondary);
  border-radius: 2px;
  margin-top: 2px;
}

/* CSS Users Icon */
.icon-users {
  display: inline-flex;
  width: 16px;
  height: 16px;
  position: relative;
}

.icon-users::before {
  content: '';
  width: 8px;
  height: 8px;
  border: 2px solid var(--text-secondary);
  border-radius: 50%;
}

.icon-users::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border: 2px solid var(--text-secondary);
  border-radius: 50%;
  right: 0;
  opacity: 0.6;
}

/* CSS Filter/Settings Icon */
.icon-filter {
  display: inline-flex;
  width: 16px;
  height: 16px;
  position: relative;
}

.icon-filter::before {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--accent-green);
  border-radius: 1px;
  box-shadow: 
    0 5px 0 var(--accent-green),
    0 10px 0 var(--accent-green);
}

.icon-filter::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--bg-primary);
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  left: 2px;
  top: -1px;
}

/* Avatar Icon */
.avatar-icon {
  width: 40px;
  height: 40px;
  background: var(--translucent-bg);
  border: 1px solid var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.avatar-icon::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  position: absolute;
  top: 6px;
}

.avatar-icon::after {
  content: '';
  width: 22px;
  height: 10px;
  border: 2px solid var(--accent-green);
  border-radius: 10px 10px 0 0;
  position: absolute;
  bottom: 6px;
}

/* Sidebar Icons */
.sidebar-link-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-sidebar-chart::before {
  content: '';
  width: 4px;
  height: 12px;
  background: currentColor;
  border-radius: 2px;
  box-shadow: 6px 4px 0 currentColor, 12px -2px 0 currentColor;
}

.icon-sidebar-calendar::before {
  content: '';
  width: 14px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 2px;
  margin-top: 4px;
}

.icon-sidebar-calendar::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: currentColor;
  top: 2px;
  left: 4px;
  box-shadow: 6px 0 0 currentColor;
}

.icon-sidebar-plus::before {
  content: '';
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.icon-sidebar-plus::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 14px;
  background: currentColor;
  border-radius: 1px;
}

.icon-sidebar-money::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-sidebar-money::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  background: currentColor;
  border-radius: 1px;
}

.icon-sidebar-boost::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid currentColor;
  position: relative;
  top: -2px;
}

.icon-sidebar-boost::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  background: currentColor;
  bottom: 0;
}

.icon-sidebar-settings::before {
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-sidebar-settings::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 2px;
  background: currentColor;
  box-shadow: 
    0 -8px 0 currentColor,
    0 8px 0 currentColor,
    8px 0 0 currentColor,
    -8px 0 0 currentColor;
}

.icon-sidebar-logout::before {
  content: '';
  width: 10px;
  height: 12px;
  border: 2px solid currentColor;
  border-right: none;
  border-radius: 2px 0 0 2px;
}

.icon-sidebar-logout::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: currentColor;
  right: 0;
}

.filter-select {
  padding: 0.875rem 2.5rem 0.875rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  min-width: 160px;
}

.filter-select:focus {
  outline: none;
  border-color: var(--accent-green);
}

.btn-filter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--translucent-bg);
  border: 1px solid var(--translucent-border);
  border-radius: 0.5rem;
  color: var(--accent-green);
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-filter:hover {
  background: rgba(16, 185, 129, 0.25);
}

.results-count {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ========================================
   Event Cards
   ======================================== */

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-green), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-card:hover {
  border-color: var(--accent-green);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
}

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

/* Event Image Placeholder */
.event-image {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Placeholder pattern until images are added */
.event-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 40%, var(--translucent-bg) 40%, var(--translucent-bg) 60%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, var(--translucent-bg) 40%, var(--translucent-bg) 60%, transparent 60%);
  background-size: 20px 20px;
  opacity: 0.3;
}

.event-image::after {
  content: 'Add Image';
  color: var(--text-muted);
  font-size: 0.75rem;
  z-index: 1;
}

/* When image is added, hide placeholder text */
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.event-image:has(img)::before,
.event-image:has(img)::after {
  display: none;
}

.event-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.event-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.tag-outline {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.tag-filled {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.tag-free {
  background: transparent;
  color: #10B981;
  border: 1px solid #10B981;
}

.tag-price {
  background: transparent;
  color: #F59E0B;
  border: 1px solid #F59E0B;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-actions {
  display: flex;
  gap: 0.75rem;
}

.event-actions .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
  display: inline-flex;
  align-items: center;
}

/* ========================================
   Dashboard Layout with Sidebar
   ======================================== */

.dashboard-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 4.5rem;
}

.dashboard-container {
  display: flex;
  flex: 1;
}

.dashboard-footer {
  width: 100%;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.dashboard-footer p {
  margin: 0;
  color: var(--text-secondary);
}

/* Sidebar */
.sidebar {
  width: var(--sidebar-width);
  background: var(--bg-card);
  border-right: 1px solid var(--border-color);
  padding: 2rem 0;
  position: fixed;
  top: 4.5rem;
  left: 0;
  bottom: 0;
  overflow-y: auto;
}

.sidebar-header {
  padding: 0 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

.sidebar-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.sidebar-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.sidebar-nav {
  padding: 0 1rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  color: var(--text-secondary);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  margin-bottom: 0.25rem;
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.sidebar-link.active {
  background: var(--translucent-bg);
  color: var(--accent-green);
  border: 1px solid var(--translucent-border);
}

.sidebar-link-icon {
  width: 20px;
  text-align: center;
}

.sidebar-divider {
  height: 1px;
  background: var(--border-color);
  margin: 1rem 0;
}

.sidebar-link.logout {
  color: #ef4444;
}

.sidebar-link.logout:hover {
  background: rgba(239, 68, 68, 0.1);
}

/* Main Content */
.dashboard-main {
  flex: 1;
  margin-left: var(--sidebar-width);
  padding: 2rem;
  width: calc(100% - var(--sidebar-width));
  max-width: calc(100% - var(--sidebar-width));
}

.dashboard-breadcrumb {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Dashboard Header */
.dashboard-header {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}

.dashboard-header .header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 2rem;
}

.dashboard-welcome h1 {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.dashboard-welcome p {
  color: var(--text-secondary);
}

.dashboard-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
}

.dashboard-summary-item {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.25rem 0;
}

.dashboard-summary-label {
  color: var(--text-secondary);
}

.dashboard-summary-value {
  color: var(--accent-green);
  font-weight: 600;
}

/* Dashboard Stats */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.dashboard-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.dashboard-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
}

.dashboard-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.dashboard-stat-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Activity Feed */
.activity-feed {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
}

.activity-feed h3 {
  margin-bottom: 1.5rem;
}

.activity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.activity-item:last-child {
  border-bottom: none;
}

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

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

/* Performance Overview */
.performance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.performance-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.performance-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.performance-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-green);
}

/* Dashboard Section */
.dashboard-section {
  margin-bottom: 2rem;
}

.dashboard-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.dashboard-section-subtitle {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.tab {
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0.5rem;
}

.tab:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.tab.active {
  color: var(--accent-green);
  background: var(--translucent-bg);
}

/* Event List Items */
.event-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.event-list-item:hover {
  border-color: var(--border-green);
}

.event-list-info {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.event-list-image {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* CSS Event Image Patterns */
.event-image-web3::before {
  content: '';
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.8);
  border-radius: 50%;
}

.event-image-web3::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  top: 10px;
  right: 10px;
}

.event-image-blockchain::before {
  content: '';
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255,255,255,0.8);
  transform: rotate(45deg);
}

.event-image-blockchain::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  top: 50px;
  left: 50px;
}

.event-image-nft::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 35px solid rgba(255,255,255,0.8);
}

.event-image-defi::before {
  content: '';
  width: 30px;
  height: 30px;
  border: 4px solid rgba(255,255,255,0.8);
  border-radius: 50%;
}

.event-image-defi::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: rgba(255,255,255,0.8);
  transform: rotate(45deg);
}

.event-list-details h4 {
  margin-bottom: 0.25rem;
}

.event-list-details p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.event-list-status {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background: var(--translucent-bg);
  color: var(--accent-green);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.event-list-actions {
  display: flex;
  gap: 0.5rem;
}

/* Filters Panel */
.filters-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.filters-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.filters-panel-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.filter-group label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent-green);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-brand {
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  justify-content: center;
}

.footer-brand p {
  color: var(--text-secondary);
}

/* ========================================
   404 Page
   ======================================== */

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content h1 {
  font-size: 8rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.error-content p {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1200px) {
  .dashboard-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .stats-grid,
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .filters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  .problems-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    width: 220px;
  }
  
  .dashboard-main {
    margin-left: 220px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  /* Mobile Navigation */
  .navbar .container {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    z-index: 100;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    width: 100%;
  }
  
  .nav-actions {
    gap: 0.5rem;
  }
  
  .nav-actions .nav-link {
    display: none;
  }
  
  /* Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
  }
  
  /* Hero Section Mobile */
  .hero {
    padding: 5rem 1rem 3rem;
    min-height: auto;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
    align-items: center;
  }
  
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 0.5rem;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    padding: 0 1rem;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Section Headers Mobile */
  .section-header {
    text-align: center;
    padding: 0 1rem;
  }
  
  .section-header h2 {
    text-align: center;
  }
  
  .section-header p {
    text-align: center;
  }
  
  /* Problem/Solution Intro Mobile */
  .problem-intro,
  .solution-intro {
    text-align: center;
    padding: 0 1rem;
  }
  
  /* Stats Grid Mobile */
  .stats-grid,
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .dashboard-stat-card {
    padding: 1rem;
    min-height: 90px;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
  
  /* Filters Mobile */
  .filters-bar {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .filters-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  /* Dashboard Mobile */
  .dashboard-header {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .dashboard-header .header-row {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }
  
  .dashboard-header h1 {
    text-align: center;
    font-size: 1.5rem;
  }
  
  .dashboard-header p {
    text-align: center;
  }
  
  .breadcrumb {
    text-align: center;
  }
  
  .sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 4rem;
  }
  
  .sidebar.active {
    display: block;
  }
  
  .dashboard-main {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  
  /* Cards Mobile */
  .why-list,
  .features-grid,
  .performance-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card,
  .trust-card,
  .model-step {
    padding: 1.25rem;
  }
  
  /* Actions Grid Mobile */
  .actions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .action-card {
    padding: 1.25rem;
    text-align: center;
  }
  
  .action-icon {
    margin: 0 auto 1rem;
  }
  
  /* Quick Actions Section Mobile */
  .quick-actions h3 {
    text-align: center;
  }
  
  /* Recent Section Mobile */
  .recent-section h3 {
    text-align: center;
  }
  
  /* Empty State Mobile */
  .empty-state {
    text-align: center;
    padding: 2rem 1rem;
  }
  
  /* Event Cards Mobile */
  .events-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .event-card {
    padding: 1rem;
  }
  
  .event-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .event-actions .btn {
    width: 100%;
  }
  
  /* Event List Mobile */
  .event-list-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .event-list-image {
    width: 100%;
    height: 150px;
  }
  
  .event-list-actions-col {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .event-list-actions-col .btn {
    flex: 1;
    min-width: 100px;
  }
  
  /* Trust Grid Mobile */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .trust-card {
    text-align: center;
  }
  
  /* Feature Cards Mobile */
  .feature-card {
    text-align: center;
  }
  
  .feature-card img {
    margin: 0 auto 1rem;
  }
  
  /* Model Steps Mobile */
  .model-step {
    text-align: center;
  }
  
  .model-step img {
    margin: 0 auto 1rem;
  }
  
  /* Problem/Solution Cards Mobile */
  .problem-card,
  .solution-card {
    text-align: center;
  }
  
  .problem-card img,
  .solution-card img {
    margin: 0 auto 1rem;
  }
  
  /* Pillar Cards Mobile */
  .pillar {
    text-align: center;
  }
  
  /* Carousel Mobile */
  .benefits-scroll-container {
    padding: 0;
  }
  
  .benefits-scroll {
    justify-content: flex-start;
    padding-left: 1rem;
  }
  
  .benefit-card-square {
    flex: 0 0 280px;
    width: 280px;
    min-width: 280px;
    height: 350px;
    min-height: 350px;
    max-height: 350px;
    text-align: center;
  }
  
  .benefit-card-square img {
    height: 180px;
    min-height: 180px;
    max-height: 180px;
    margin: 0 auto;
  }
  
  .benefit-card-square p {
    text-align: center;
  }
  
  .scroll-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  /* Scroll nav buttons positioning on mobile */
  .benefits-section h3 {
    text-align: center;
  }
  
  /* Comparison Cards Mobile */
  .comparison-grid {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .comparison-card {
    max-width: 100%;
    min-width: 100%;
    min-height: auto;
    height: auto;
    padding: 1.5rem;
    text-align: center;
  }
  
  .comparison-card img {
    margin: 0 auto 1rem;
  }
  
  .vs-badge {
    margin: 0.5rem auto;
    text-align: center;
  }
  
  /* Form Mobile */
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions .btn {
    width: 100%;
  }
  
  /* Business Model Mobile */
  .business-model-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .model-step {
    padding: 1.25rem;
  }
  
  /* Problems Grid Mobile */
  .problems-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Solutions Grid Mobile */
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Mobile Menu Toggle - Hidden on Desktop */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
  }
  
  .mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    padding: 0;
  }
  
  .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }
  
  .event-actions {
    flex-direction: column;
  }
  
  /* Stats on very small screens */
  .stats-grid,
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
  
  .dashboard-stat-card {
    min-height: 80px;
  }
  
  /* Even smaller cards on mobile */
  .benefit-card-square {
    flex: 0 0 260px;
    width: 260px;
    min-width: 260px;
    height: 320px;
    min-height: 320px;
    max-height: 320px;
  }
  
  .benefit-card-square img {
    height: 160px;
    min-height: 160px;
    max-height: 160px;
  }
  
  .benefit-card-square p {
    font-size: 0.95rem;
  }
}

/* ========================================
   Pitch Deck Sections
   ======================================== */

/* Problem Section - Broken connections theme */
.problems-section {
  padding: 5rem 0;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.88) 100%),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80') center/cover no-repeat fixed;
  position: relative;
}

.problems-section .container {
  position: relative;
  z-index: 1;
}

.problem-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.highlight-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.problem-card:hover {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.1);
}

.problem-card h3 {
  color: #ef4444;
  margin-bottom: 1rem;
}

.problem-card p {
  color: var(--text-secondary);
}

/* Disconnection Section */
.disconnection-section {
  margin-top: 3rem;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
}

.comparison-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.comparison-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  width: 400px;
  min-width: 400px;
  max-width: 400px;
  height: 420px;
  min-height: 420px;
  max-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}

.comparison-card h4 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.comparison-benefit {
  color: var(--accent-green);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.comparison-issue {
  color: #ef4444;
  font-size: 0.875rem;
}

.comparison-vs {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 50%;
  align-self: center;
  flex-shrink: 0;
}

/* Solution Highlight */
.solution-highlight {
  background: var(--bg-card);
  border: 1px solid var(--translucent-border);
  border-radius: 1.5rem;
  padding: 3rem;
  margin-top: 2rem;
}

.solution-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pillar {
  text-align: center;
  padding: 1.5rem 2rem;
  background: var(--translucent-bg);
  border-radius: 1rem;
  border: 1px solid var(--translucent-border);
}

.pillar .pillar-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
}

.pillar h4 {
  color: var(--accent-green);
}

.pillar-arrow {
  font-size: 2rem;
  color: var(--accent-green);
}

/* W3AP Section */
.w3ap-section {
  padding: 5rem 0;
  background: 
    linear-gradient(180deg, var(--bg-primary) 0%, rgba(16, 185, 129, 0.08) 50%, var(--bg-primary) 100%),
    url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?w=1920&q=80') center/cover no-repeat fixed;
  position: relative;
}

.w3ap-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 0;
}

.w3ap-section .container {
  position: relative;
  z-index: 1;
}

.w3ap-stats {
  text-align: center;
  margin: 2rem 0 3rem;
}

.w3ap-big-stat {
  display: inline-block;
  padding: 2rem 4rem;
  background: var(--translucent-bg);
  border: 2px solid var(--translucent-border);
  border-radius: 1.5rem;
  box-shadow: 0 0 50px var(--glow-green);
}

.w3ap-big-stat .stat-value {
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent-green);
}

.w3ap-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.w3ap-feature {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.w3ap-feature:hover {
  border-color: var(--translucent-border);
  transform: translateY(-5px);
}

.w3ap-feature h4 {
  margin: 1rem 0 0.5rem;
}

.w3ap-feature p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Flow Timeline */
.flow-timeline {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
}

.flow-step {
  flex: 1;
  max-width: 300px;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.flow-step.active {
  border-color: var(--accent-green);
  box-shadow: 0 0 30px var(--glow-green);
}

.flow-phase {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--translucent-bg);
  border-radius: 2rem;
  font-size: 0.875rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.flow-step h3 {
  margin-bottom: 1rem;
}

.flow-step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.flow-connector {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-green-light));
  align-self: center;
}

/* Target Market Section */
.target-section {
  padding: 5rem 0;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.85) 100%),
    url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1920&q=80') center/cover no-repeat fixed;
  position: relative;
}

.target-section .container {
  position: relative;
  z-index: 1;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.target-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.target-card:hover {
  border-color: var(--translucent-border);
  transform: translateY(-5px);
}

.target-card h3 {
  color: var(--accent-green);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.target-card ul {
  list-style: none;
}

.target-card li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.target-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.88) 50%, rgba(0,0,0,0.92) 100%),
    url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920&q=80') center/cover no-repeat fixed;
  position: relative;
}

.benefits-section .container {
  position: relative;
  z-index: 1;
}

.benefits-block {
  margin-bottom: 4rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: var(--translucent-border);
}

.benefit-number {
  width: 32px;
  height: 32px;
  background: var(--translucent-bg);
  border: 1px solid var(--translucent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--accent-green);
  flex-shrink: 0;
}

.benefit-item p {
  color: var(--text-secondary);
  margin: 0;
}

/* Business Model Section */
.business-model-section {
  padding: 5rem 0;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.85) 100%),
    url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1920&q=80') center/cover no-repeat fixed;
  position: relative;
}

.business-model-section .container {
  position: relative;
  z-index: 1;
}

.business-model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.model-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.model-step:hover {
  border-color: var(--translucent-border);
  box-shadow: 0 0 30px var(--glow-green);
}

.model-number {
  width: 50px;
  height: 50px;
  background: var(--translucent-bg);
  border: 2px solid var(--translucent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-green);
  margin: 0 auto 1rem;
}

.model-step h4 {
  margin-bottom: 0.5rem;
}

.model-step p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Trust Section */
.trust-section {
  padding: 5rem 0;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.95), rgba(0,0,0,0.85)),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80') center/cover no-repeat;
  position: relative;
}

.trust-section .container {
  position: relative;
  z-index: 1;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: stretch;
}

@media (min-width: 1100px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.trust-card:hover {
  border-color: var(--translucent-border);
}

.trust-card h4 {
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.trust-card p {
  color: var(--text-secondary);
}

.trust-tagline {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--translucent-bg), transparent);
  border-radius: 1rem;
}

.trust-tagline p {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-green);
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
  .problems-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-grid {
    flex-direction: column;
  }
  
  .comparison-vs {
    transform: rotate(90deg);
  }
  
  .w3ap-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .flow-timeline {
    flex-direction: column;
    align-items: center;
  }
  
  .flow-connector {
    width: 3px;
    height: 30px;
  }
  
  .flow-step {
    max-width: 100%;
  }
  
  .target-grid,
  .business-model-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .solution-pillars {
    flex-direction: column;
  }
  
  .pillar-arrow {
    transform: rotate(90deg);
  }
}

/* ========================================
   Advanced Visual Enhancements
   ======================================== */

/* Floating Particles Animation */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--glow-green); }
  50% { box-shadow: 0 0 40px var(--glow-green), 0 0 60px rgba(16, 185, 129, 0.3); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Glowing accent lines */
.section-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-green-light), var(--accent-green));
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* Enhanced Card Hover Effects */
.event-card:hover .event-image img {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}

.event-image img {
  transition: transform 0.5s ease;
}

/* Glassmorphism enhancements */
.stat-card,
.w3ap-feature,
.target-card,
.trust-card {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Animated border gradient */
.hero-badge {
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-green-light), var(--accent-green));
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
  border-radius: inherit;
  z-index: -1;
  opacity: 0.5;
}

/* Stats counter animation */
.stat-value {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Better button hover states */
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

/* Flow step pulse animation */
.flow-step.active {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Target card hover lift */
.target-card:hover,
.trust-card:hover,
.w3ap-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--glow-green);
}

/* Benefit number pulse */
.benefit-number {
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-number {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--glow-green);
}

/* Model step number animation */
.model-number {
  transition: all 0.3s ease;
}

.model-step:hover .model-number {
  transform: scale(1.15) rotate(10deg);
}

/* Smooth scroll indicator for hero */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator::before {
  content: '';
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid var(--accent-green);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 2px;
  animation: float 1.5s ease-in-out infinite;
}

/* Navbar scroll effect */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Loading skeleton for images */
.event-image {
  background: linear-gradient(90deg, var(--bg-secondary) 0%, var(--bg-card) 50%, var(--bg-secondary) 100%);
  background-size: 200% 100%;
  animation: gradient-shift 1.5s ease infinite;
}

.event-image:has(img) {
  animation: none;
  background: var(--bg-secondary);
}

/* ========================================
   Benefits Horizontal Scroll Carousel
   ======================================== */

.benefits-scroll-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 2rem;
}

.benefits-scroll {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem 2rem 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-green) transparent;
}

.benefits-scroll::-webkit-scrollbar {
  height: 8px;
}

.benefits-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.benefits-scroll::-webkit-scrollbar-thumb {
  background: var(--accent-green);
  border-radius: 4px;
}

.benefits-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover);
}

.benefit-card-square {
  flex: 0 0 380px !important;
  width: 380px !important;
  min-width: 380px !important;
  height: 420px !important;
  min-height: 420px !important;
  max-height: 420px !important;
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 16px !important;
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden !important;
}

.benefit-card-square:hover {
  border-color: var(--accent-green) !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.benefit-card-square img {
  width: 100% !important;
  height: 250px !important;
  min-height: 250px !important;
  max-height: 250px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  margin-bottom: 1rem !important;
}

.benefit-card-square .benefit-number {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-hover)) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: bold !important;
  color: var(--bg-primary) !important;
  font-size: 0.8rem !important;
  margin-bottom: 0.5rem !important;
}

.benefit-card-square p {
  font-size: 1.1rem !important;
  color: var(--text-secondary) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* ========================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ======================================== */

/* Mobile Modal Styles */
@media (max-width: 768px) {
  .modal,
  .pricing-modal,
  .contact-modal,
  .payment-modal {
    padding: 1rem;
  }

  .modal-content,
  .pricing-modal-content,
  .contact-modal-content,
  .payment-modal-content {
    width: 95% !important;
    max-width: 100% !important;
    max-height: 90vh;
    overflow-y: auto;
    margin: 1rem auto;
    padding: 1.5rem !important;
  }

  .pricing-tiers {
    flex-direction: column;
    gap: 1rem;
  }

  .pricing-tier {
    width: 100%;
  }

  /* Mobile Form Styles */
  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .form-group {
    width: 100%;
  }

  input, textarea, select {
    font-size: 16px !important; /* Prevents iOS zoom on focus */
  }

  /* Mobile Dashboard Sidebar */
  .dashboard-layout {
    flex-direction: column;
  }

  .dashboard-sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    height: 100vh;
    width: 280px;
    z-index: 1000;
    transition: left 0.3s ease;
    background: var(--bg-secondary);
    padding-top: 60px;
  }

  .dashboard-sidebar.active {
    left: 0;
  }

  .dashboard-main {
    width: 100%;
    padding: 1rem;
  }

  /* Mobile Event Cards */
  .event-card {
    padding: 1rem;
  }

  .event-actions {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .event-actions .btn {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 120px;
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }

  /* Mobile Table Responsiveness */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table {
    min-width: 600px;
  }

  /* Mobile Page Hero */
  .page-hero {
    padding: 2rem 1rem 1.5rem;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .page-hero p {
    font-size: 0.9rem;
  }

  /* Mobile Filters */
  .filters-section {
    flex-direction: column;
    gap: 1rem;
  }

  .filter-select {
    width: 100%;
  }

  /* Mobile Share Modal */
  .share-modal-content {
    width: 90%;
    padding: 1.5rem;
  }

  .share-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Mobile Tab Buttons */
  .tabs,
  .tab-buttons {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .tab-btn {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 100px;
    text-align: center;
    font-size: 0.85rem;
    padding: 0.5rem;
  }

  /* Mobile Navigation Actions */
  .nav-actions {
    gap: 0.5rem;
  }

  .btn-signin,
  .btn-mypage {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.85rem !important;
  }
}

/* Extra Small Mobile Styles */
@media (max-width: 380px) {
  .navbar .container {
    padding: 0 0.75rem;
  }

  .logo {
    font-size: 1rem;
  }

  .btn-signin,
  .btn-mypage {
    padding: 0.4rem 0.6rem !important;
    font-size: 0.8rem !important;
  }

  .event-actions .btn {
    flex: 1 1 100%;
    width: 100%;
  }

  .pricing-tier {
    padding: 1rem;
  }

  .tab-btn {
    flex: 1 1 100%;
  }
}

/* Sidebar Toggle for Mobile */
.sidebar-toggle-mobile {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-green);
  color: var(--bg-primary);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 206, 178, 0.3);
}

@media (max-width: 768px) {
  .sidebar-toggle-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Dashboard Mobile Overlay */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.sidebar-overlay.active {
  display: block;
}

/* Touch-friendly button sizes */
@media (max-width: 768px) {
  .btn,
  button {
    min-height: 44px;
  }

  .btn-small {
    min-height: 36px;
    padding: 0.5rem 0.75rem;
  }

  /* Improved touch targets for links */
  .nav-link,
  .sidebar-link,
  .footer-link {
    padding: 0.75rem 1rem;
  }

  /* Better spacing for mobile cards */
  .role-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .role-card {
    padding: 1.5rem;
  }

  /* Messages card mobile */
  .message-card,
  .message-item {
    padding: 1rem;
  }

  /* Transaction table mobile */
  .transactions-table th,
  .transactions-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }
}

/* ============================================
   COMPREHENSIVE MOBILE OPTIMIZATION v2
   ============================================ */

/* Mobile Navbar Fixes */
@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar .container {
    padding: 0 0.75rem;
  }
  
  .logo {
    font-size: 1.1rem;
  }
  
  .logo-icon {
    width: 28px;
    height: 28px;
  }
  
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .btn-mypage {
    padding: 0.4rem 0.75rem !important;
    font-size: 0.8rem !important;
  }
  
  .nav-avatar {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.7rem !important;
  }
}

/* Mobile Hero Sections */
@media (max-width: 768px) {
  .hero {
    padding: 5rem 1rem 3rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
    gap: 0.75rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Page Hero Banner */
  .page-hero {
    padding: 1.5rem 1rem;
    margin-top: 60px;
  }
  
  .page-hero h1,
  .page-title {
    font-size: 1.4rem;
  }
  
  .page-hero p,
  .page-subtitle {
    font-size: 0.85rem;
  }
}

/* Mobile Event Cards */
@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .event-card {
    padding: 1rem;
  }
  
  .event-image {
    height: 180px;
    margin: -1rem -1rem 1rem;
    border-radius: 0.75rem 0.75rem 0 0;
  }
  
  .event-image img {
    height: 100%;
  }
  
  .event-title {
    font-size: 1.1rem;
  }
  
  .event-tags {
    flex-wrap: wrap;
    gap: 0.35rem;
  }
  
  .tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }
  
  .event-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .event-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
  }
  
  /* Exclusive Event Card Actions */
  .exclusive-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .exclusive-actions .btn {
    width: 100% !important;
    flex: none !important;
  }
  
  .exclusive-actions .btn-share-dark {
    width: 100% !important;
    justify-content: center;
    padding: 0.75rem !important;
  }
}

/* Mobile Modals - Critical Fixes */
@media (max-width: 768px) {
  .modal,
  .pricing-modal,
  .contact-modal,
  .share-modal {
    padding: 0.5rem;
    align-items: flex-start;
    padding-top: 60px;
  }
  
  .modal-content,
  .pricing-modal-content,
  .contact-modal-content,
  .share-modal-content {
    width: 95% !important;
    max-width: none !important;
    max-height: calc(100vh - 80px);
    margin: 0 auto;
    padding: 1rem !important;
    border-radius: 1rem !important;
  }
  
  .modal-close,
  .pricing-modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
  }
  
  /* Pricing Modal Mobile */
  .pricing-modal-header {
    height: 120px;
    margin: -1rem -1rem 1rem;
    border-radius: 1rem 1rem 0 0;
  }
  
  .pricing-modal-header-overlay {
    padding: 1rem;
  }
  
  .pricing-modal-header-overlay h2 {
    font-size: 1.1rem;
  }
  
  .pricing-modal-header-overlay p {
    font-size: 0.8rem;
    display: none;
  }
  
  .pricing-modal-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
  
  .pricing-tiers,
  .host-tiers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .pricing-tier {
    padding: 1rem;
  }
  
  .pricing-tier.featured {
    transform: none;
  }
  
  .tier-header h3 {
    font-size: 1rem;
  }
  
  .tier-price {
    font-size: 1.75rem;
  }
  
  .tier-features {
    font-size: 0.85rem;
  }
  
  .tier-features li {
    padding: 0.35rem 0;
  }
  
  /* Contact Modal Mobile */
  .contact-modal-content {
    padding: 1.5rem !important;
  }
  
  .contact-modal-content h2 {
    font-size: 1.25rem;
  }
  
  .contact-modal-content textarea {
    min-height: 100px;
  }
  
  /* Share Modal Mobile */
  .share-modal-content {
    width: 90% !important;
    padding: 1.5rem !important;
  }
  
  .share-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  
  .share-btn {
    padding: 0.75rem;
    font-size: 0.75rem;
  }
  
  .share-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .copy-link-section {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .copy-link-section input {
    width: 100%;
    font-size: 0.85rem;
  }
  
  .copy-link-section button {
    width: 100%;
  }
}

/* Mobile Dashboard Layout */
@media (max-width: 768px) {
  .dashboard-layout {
    flex-direction: column;
  }
  
  .dashboard-sidebar {
    position: fixed;
    left: -100%;
    top: 0;
    width: 85%;
    max-width: 300px;
    height: 100vh;
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 70px 1rem 2rem;
    background: var(--bg-secondary);
  }
  
  .dashboard-sidebar.active {
    left: 0;
  }
  
  .sidebar-link {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .sidebar-badge {
    font-size: 0.7rem;
    padding: 0.15rem 0.4rem;
  }
  
  .dashboard-main {
    width: 100%;
    padding: 1rem;
    margin-left: 0;
  }
  
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .stat-card {
    padding: 1rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  /* Quick Actions Grid */
  .actions-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  .action-card {
    padding: 1.25rem;
  }
  
  /* Company Info */
  .company-badge {
    font-size: 0.9rem;
  }
}

/* Mobile User Dashboard (dashboard.html) */
@media (max-width: 768px) {
  .dashboard-page {
    padding: 70px 0 2rem;
  }
  
  .dashboard-welcome {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  
  .dashboard-welcome h1 {
    font-size: 1.5rem;
  }
  
  .role-cards {
    grid-template-columns: 1fr !important;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .role-card {
    padding: 1.5rem;
  }
  
  .role-card h3 {
    font-size: 1.1rem;
  }
  
  .role-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

/* Mobile My Page */
@media (max-width: 768px) {
  .my-page {
    padding: 70px 0 2rem;
  }
  
  .profile-header {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .profile-avatar {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .avatar-url-input {
    width: 100%;
  }
  
  .profile-info h1 {
    font-size: 1.25rem;
  }
  
  .profile-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }
  
  .profile-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .tab-btn {
    flex: 0 0 auto;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  
  .tab-content {
    padding: 1rem;
  }
  
  .profile-form .form-row {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  /* Billing Section */
  .transaction-item {
    padding: 1rem;
  }
  
  .transaction-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .transaction-amount {
    font-size: 1.1rem;
  }
  
  .transaction-details {
    font-size: 0.85rem;
  }
  
  /* Events List */
  .event-list-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .event-list-item .event-info {
    width: 100%;
  }
  
  .event-list-item .event-actions {
    width: 100%;
    justify-content: stretch;
  }
  
  /* Notifications */
  .notifications-list {
    gap: 0.75rem;
  }
  
  .notification-item {
    padding: 1rem;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .notification-content {
    font-size: 0.9rem;
  }
}

/* Mobile Messages Pages */
@media (max-width: 768px) {
  .messages-section {
    padding: 1rem;
  }
  
  .messages-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .messages-stats {
    width: 100%;
    justify-content: space-between;
  }
  
  .stat-box {
    flex: 1;
    padding: 0.75rem;
    text-align: center;
  }
  
  .stat-box .stat-value {
    font-size: 1.25rem;
  }
  
  .stat-box .stat-label {
    font-size: 0.7rem;
  }
  
  .message-card,
  .message-item {
    padding: 1rem;
  }
  
  .message-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .message-sender {
    font-size: 0.95rem;
  }
  
  .message-date {
    font-size: 0.75rem;
  }
  
  .message-subject {
    font-size: 0.9rem;
  }
  
  .message-preview {
    font-size: 0.85rem;
  }
  
  .message-actions {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .message-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Contact Support Modal */
  .support-modal-content {
    width: 95% !important;
    padding: 1.5rem !important;
  }
  
  .support-prompt {
    font-size: 0.95rem;
    padding: 1rem;
  }
}

/* Mobile Admin Transactions Page */
@media (max-width: 768px) {
  .transactions-section {
    padding: 1rem;
  }
  
  .table-responsive {
    margin: 0 -1rem;
    padding: 0 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .transactions-table {
    min-width: 700px;
  }
  
  .transactions-table th,
  .transactions-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  
  .status-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
}

/* Mobile Event Detail Page */
@media (max-width: 768px) {
  .event-hero {
    padding: 100px 1rem 2rem;
    min-height: auto;
  }
  
  .event-hero-content {
    text-align: center;
  }
  
  .event-category-badge {
    margin: 0 auto 0.5rem;
  }
  
  .event-hero h1 {
    font-size: 1.5rem;
  }
  
  .event-meta {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .event-detail-content {
    padding: 1rem;
  }
  
  .event-sidebar {
    position: relative;
    top: 0;
    margin-top: 1rem;
  }
  
  .event-section {
    padding: 1.25rem;
  }
  
  .event-section h3 {
    font-size: 1.1rem;
  }
  
  /* Map Container */
  .map-container {
    margin: 1rem -1.25rem;
    border-radius: 0;
  }
  
  .map-container iframe {
    height: 250px;
  }
  
  /* Organizer Info */
  .organizer-info {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .organizer-avatar {
    margin: 0 auto;
  }
}

/* Mobile Create Event Form */
@media (max-width: 768px) {
  .create-event-page {
    padding: 70px 0 2rem;
  }
  
  .form-container {
    padding: 1rem;
  }
  
  .form-section {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .form-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-group {
    width: 100%;
  }
  
  .checkbox-group {
    padding: 0.75rem;
  }
  
  .checkbox-group label {
    font-size: 0.9rem;
  }
  
  .form-hint {
    font-size: 0.8rem;
  }
  
  /* Form Actions */
  .form-actions {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
  }
  
  .form-actions .btn {
    width: 100%;
  }
}

/* Mobile Event Photos Page */
@media (max-width: 768px) {
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .photo-item {
    aspect-ratio: 1;
  }
  
  .photo-overlay {
    padding: 0.5rem;
  }
  
  .photo-overlay .btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }
  
  .upload-section {
    padding: 1rem;
  }
  
  .upload-zone {
    padding: 2rem 1rem;
  }
}

/* Mobile Login/Signup Pages */
@media (max-width: 768px) {
  .auth-page {
    padding: 80px 1rem 2rem;
  }
  
  .auth-container {
    padding: 1.5rem;
    max-width: 100%;
  }
  
  .auth-container h1 {
    font-size: 1.5rem;
  }
  
  .auth-divider {
    margin: 1.5rem 0;
  }
  
  .social-btn {
    padding: 0.75rem;
  }
}

/* Mobile Footer */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-section {
    width: 100%;
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .footer-bottom {
    padding: 1rem 0;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

/* Mobile Organizer Events Page */
@media (max-width: 768px) {
  .organizer-events-list {
    gap: 1rem;
  }
  
  .organizer-event-item {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
  
  .organizer-event-image {
    width: 100%;
    height: 150px;
  }
  
  .organizer-event-info {
    width: 100%;
  }
  
  .organizer-event-info h4 {
    font-size: 1rem;
  }
  
  .organizer-event-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  
  .organizer-event-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile Tickets Page */
@media (max-width: 768px) {
  .tickets-section {
    padding: 1rem;
  }
  
  .ticket-card {
    padding: 1rem;
  }
  
  .ticket-header {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .ticket-info h3 {
    font-size: 1rem;
  }
  
  .ticket-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .ticket-qr {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
}

/* Utility Classes for Mobile */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  
  .show-mobile {
    display: block !important;
  }
  
  .text-center-mobile {
    text-align: center !important;
  }
  
  .full-width-mobile {
    width: 100% !important;
  }
}

/* Fix Squished Elements */
@media (max-width: 768px) {
  /* Prevent horizontal overflow */
  body {
    overflow-x: hidden;
  }
  
  .container {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Fix images */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Fix iframes */
  iframe {
    max-width: 100%;
  }
  
  /* Prevent text overflow */
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Fix long URLs/text */
  p, span, a {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Extra Small Devices */
@media (max-width: 380px) {
  .logo {
    font-size: 0.95rem;
  }
  
  .logo-icon {
    width: 24px;
    height: 24px;
  }
  
  .hero-title {
    font-size: 1.4rem;
  }
  
  .page-title {
    font-size: 1.2rem;
  }
  
  .event-title {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  .profile-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .stat-card {
    padding: 0.75rem;
  }
  
  .stat-value {
    font-size: 1.25rem;
  }
  
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
  
  .share-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}
