:root {
  --color-orange: #F97316;
  --color-orange-dark: #EA580C;
  --color-blue: #2563EB;
  
  --bg-site: #FFFFFF;
  --bg-gray: #F8FAFC;
  
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #CBD5E1;
  
  --border: #E2E8F0;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
  font-family: 'Inter', sans-serif; 
}

body { 
  background: var(--bg-gray); 
  color: var(--text-dark); 
}

/* Utilities */
.site-container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.flex { display: flex; } 
.flex-between { display: flex; justify-content: space-between; align-items: center; } 
.flex-center { display: flex; justify-content: center; align-items: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); }
.gap-1 { gap: 8px; }
.gap-2 { gap: 15px; } 
.w-full { width: 100%; }
.mt-1 { margin-top: 5px; } 
.mt-2 { margin-top: 10px; } 
.mt-3 { margin-top: 15px; } 
.mb-1 { margin-bottom: 5px; } 
.mb-2 { margin-bottom: 10px; } 
.mb-3 { margin-bottom: 15px; } 
.mb-4 { margin-bottom: 20px; }
.mr-1 { margin-right: 5px; } 
.mr-2 { margin-right: 10px; } 
.p-2 { padding: 10px; } 
.p-3 { padding: 15px; } 
.p-4 { padding: 25px; }
.text-center { text-align: center; } 
.text-muted { color: var(--text-muted); } 
.text-light { color: var(--text-light); }
.text-small { font-size: 0.85rem; } 
.text-orange { color: var(--color-orange); } 
.text-blue { color: var(--color-blue); } 
.text-green { color: #10B981; }

.badge { 
  display: inline-block; 
  padding: 4px 8px; 
  border-radius: 6px; 
  font-size: 0.7rem; 
  font-weight: 700; 
}
.badge-gray { background: #F1F5F9; color: var(--text-muted); } 
.badge-green { background: #DCFCE7; color: #166534; }
.ml-2 { margin-left: 10px; }
.dot-green { display: inline-block; width: 8px; height: 8px; background: #10B981; border-radius: 50%; }
.dot-yellow { display: inline-block; width: 8px; height: 8px; background: #F59E0B; border-radius: 50%; }

/* Buttons & Interactions */
button, .actionable-area {
  cursor: pointer;
  border: none;
  background: transparent;
}

button { 
  border-radius: 8px; 
  font-weight: 600; 
  font-size: 0.9rem; 
  transition: all 0.2s; 
}

button:focus-visible, 
.actionable-area:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
}

.btn-orange { background: var(--color-orange); color: white; padding: 10px 20px; }
.btn-orange:hover { background: var(--color-orange-dark); }
.btn-whatsapp { background: var(--color-orange); color: white; padding: 10px 20px; text-decoration: none; display: inline-flex; align-items: center; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: background 0.2s; border: none; cursor: pointer; white-space: nowrap; }
.btn-whatsapp:hover { background: var(--color-orange-dark); color: white; }
.btn-blue { background: var(--color-blue); color: white; }
.btn-outline-box { background: white; border: 1px solid var(--border); color: var(--text-dark);} 
.btn-outline-box:hover{background:#F8FAFC;}

.actionable-area { transition: background 0.1s; }
.actionable-area:hover { filter: brightness(0.97); }

/* Header */
.site-header { padding: 20px 0; background: var(--bg-site); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; }

/* Hero / Pitch Block */
.hero-section { padding: 80px 0 60px 0; text-align: center; }
.hero-section h1 { 
  font-size: clamp(1.8rem, 4vw, 2.5rem); 
  font-weight: 800; 
  letter-spacing: -0.03em; 
  margin-bottom: 15px; 
  color: var(--text-dark); 
}
.hero-sub { 
  font-size: clamp(1rem, 2vw, 1.1rem); 
  color: var(--text-muted); 
  max-width: 800px; 
  margin: 0 auto; 
  line-height: 1.6; 
}

/* Showcase Area */
.showcase-section { padding: 40px 0 60px 0; }
.showcase-tabs { 
  display: flex; 
  justify-content: center; 
  gap: 15px; 
  margin-bottom: 40px; 
  flex-wrap: wrap;
}
.showcase-tab { 
  padding: 12px 24px; 
  background: white; 
  border: 1px solid var(--border); 
  color: var(--text-muted); 
  box-shadow: var(--shadow-sm); 
  display: flex; 
  align-items: center; 
  gap: 8px;
}
.showcase-tab.active { background: var(--text-dark); color: white; border-color: var(--text-dark); }
.showcase-tab:hover:not(.active) { border-color: var(--text-dark); color: var(--text-dark); }

.demo-view { 
  display: none; 
  animation: fadeIn 0.4s ease-in-out; 
}
.demo-view.active { display: block; }

/* Hybrid Layout Split */
.split-layout { 
  display: flex; 
  background: white; 
  border-radius: 20px; 
  box-shadow: var(--shadow-lg); 
  overflow: hidden; 
  border: 1px solid var(--border); 
  min-height: 500px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.split-layout:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.12);
}

.mockup-side { 
  flex: 1.2; 
  background: #EEF2F6; 
  padding: 20px; 
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch !important;
}
.pitch-side { flex: 1; padding: 30px; display: flex; flex-direction: column; justify-content: center; min-width: 0; }

/* Pitch Bullets */
.pitch-side h2 { 
  font-size: clamp(1.4rem, 3vw, 1.75rem); 
  font-weight: 800; 
  margin-bottom: 30px; 
  letter-spacing: -0.02em;
}
.feature-bullets { list-style: none; }
.feature-bullets li { display: flex; gap: 20px; margin-bottom: 30px; }
.feature-bullets li i { font-size: 1.5rem; margin-top: 5px; width: 30px; text-align: center;}
.feature-bullets li strong { display: block; font-size: 1.1rem; margin-bottom: 5px; }
.feature-bullets li span { color: var(--text-muted); line-height: 1.5; font-size: 0.95rem; }

/* Laptop Chassis */
.laptop-chassis {
  background: #0F172A;
  padding: 15px 15px 20px 15px;
  border-radius: 12px 12px 0 0;
  position: relative;
  width: 100%;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15);
}
.laptop-base {
  height: 14px;
  background: #E2E8F0;
  border-radius: 0 0 16px 16px;
  position: relative;
  width: 112%;
  left: -6%;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 8px 10px -5px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
}
.laptop-base::after {
  content: '';
  width: 80px;
  height: 5px;
  background: #CBD5E1;
  border-radius: 0 0 5px 5px;
}
.camera-notch {
  width: 6px;
  height: 6px;
  background: #334155;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}

/* Mockup Visuals (Simplified Windows) */
.glass-browser { background: white; border-radius: 4px; overflow: hidden; aspect-ratio: 16 / 10; border: 1px solid #334155; display: flex; flex-direction: column; width: 100%;}
.gb-header { padding: 6px 12px; background: #F1F5F9; border-bottom: 1px solid var(--border); font-size: 0.7rem; font-weight: 500; color: var(--text-muted); display: flex; gap: 6px; align-items: center; flex-shrink: 0;}
.gb-header .dots { display: flex; gap: 4px; margin-right: 10px;}
.gb-header .dots span { width: 8px; height: 8px; border-radius: 50%; background: #CBD5E1;}
.gb-header .dots span:nth-child(1) { background: #EF4444;}
.gb-header .dots span:nth-child(2) { background: #F59E0B;}
.gb-header .dots span:nth-child(3) { background: #10B981;}
.gb-body { flex: 1; overflow: hidden; }

/* Admin Inner Visuals & Animations */
.db-content { font-size: 0.75rem; }
.db-content h3 { font-size: 1rem; margin-bottom: 8px; }
.db-content h4 { font-size: 0.85rem; margin-bottom: 6px; }
.db-content .stat-box { padding: 8px; border-radius: 6px; }
.db-content .stat-box h4 { font-size: 1rem; margin-top: 2px; margin-bottom: 0; }
.db-content .event-list-item { padding: 6px 10px; margin-bottom: 6px; border-radius: 6px; }
.db-content .badge { font-size: 0.6rem; padding: 2px 5px; }
.db-content .btn-blue, .db-content .btn-outline-box { padding: 4px 6px; font-size: 0.7rem; border-radius: 4px; }
.db-content .drag-zone { padding: 10px; border-radius: 8px; }
.db-content .drag-zone i { font-size: 1.2rem; margin-bottom: 4px; }
.db-content .text-small { font-size: 0.7rem; }
.db-content input { font-size: 0.7rem; padding: 5px; border-radius: 4px; }
.db-content .gap-2 { gap: 6px; }
.db-content .mb-3 { margin-bottom: 8px; }
.db-content .mt-3 { margin-top: 8px; }

.gb-sidebar { width: 155px; border-right: 1px solid var(--border); padding: 20px 0; }
.gb-nav-item { padding: 10px 15px; font-size: 0.75rem; color: var(--text-muted); display:flex; align-items:center; width: 100%; text-align: left;}
.gb-nav-item.active { background: #F1F5F9; color: var(--text-dark); border-left: 3px solid var(--color-orange); font-weight: 600;}
.gb-nav-item i { width: 20px; }
.gb-main { flex: 1; padding: 30px; background: #FAFAFA; position: relative;}

/* Inner Screens Toggle */
.mock-screen { display: none; width: 100%; height: 100%; overflow: hidden; animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);}

.mock-screen.active { display: block; }

.stat-box { background: white; border: 1px solid var(--border); padding: 15px; border-radius: 8px;}
.stat-box h4 { font-size: 1.4rem; margin-top: 5px; }
.event-list-item { background: white; border: 1px solid var(--border); padding: 15px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center;}

/* Upload specific */
.drag-zone { border: 2px dashed #CBD5E1; border-radius: 16px; padding: 50px 20px; background: white; text-align: center;}
.progress { height: 6px; background: #E2E8F0; border-radius: 3px; }
.progress .fill { height: 100%; background: var(--color-blue); border-radius: 3px; }

/* Mobile Visual Specifics */
.mobile-frame { width: 260px; height: 480px; background: white; border: 8px solid #0F172A; border-radius: 30px; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); margin: 0 auto;}
.mf-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100px; height: 20px; background: #0F172A; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px;}
.mf-header { padding: 30px 20px 15px 20px; font-weight: 600; text-align: center; border-bottom: 1px solid var(--border); }
.mf-body { padding: 30px 20px; }
.scanner-ui { width: 120px; height: 120px; border: 2px solid var(--border); border-radius: 50%; margin: 0 auto; display: flex; justify-content: center; align-items: center; position: relative; overflow: hidden;}
.scan-line { position: absolute; height: 4px; width: 100%; background: var(--color-blue); top: 0; box-shadow: 0 0 15px var(--color-blue); animation: scan 2s linear infinite; }

/* Animations */
@keyframes slideIn { 
  from { opacity: 0; transform: translateX(10px); } 
  to { opacity: 1; transform: translateX(0); } 
}

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

.pitch-content { animation: fadeIn 0.4s ease-in-out; }

@keyframes scan {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Responsive */
@media (max-width: 1024px) {
  .mockup-side { padding: 25px; }
  .pitch-side { padding: 30px; }
  .split-layout { min-height: 450px; }
}

@media (max-width: 900px) {
  .split-layout { flex-direction: column; }
  .mockup-side { padding: 20px 10px; min-height: auto; }
  .pitch-side { padding: 30px 15px; }
  .carousel-arrow { display: none; } /* Hide arrows on mobile, rely on swipe */
}

@media (max-width: 600px) {
  .mockup-side { padding: 10px 0; }
  .pitch-side { padding: 20px 10px; }
  .carousel-arrow { display: none !important; }
  .btn-whatsapp { padding: 8px 12px; font-size: 0.8rem; }
  .logo .badge { display: none; }
}

/* Scaler Wrappers for Perfect Container Proportions */
.carousel-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  position: relative;
  gap: 10px;
}
.carousel-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
  color: var(--text-dark);
  flex-shrink: 0;
  transition: all 0.2s;
  z-index: 10;
}
.carousel-arrow:hover {
  background: var(--bg-gray);
  transform: scale(1.05);
}
.car-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
  cursor: pointer;
  transition: all 0.2s;
}
.car-dot.active {
  background: var(--text-dark);
  transform: scale(1.2);
}

.laptop-scaler {
  container-type: inline-size;
  width: 100%;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  aspect-ratio: 640 / 430;
  position: relative;
  margin: 0 auto;
}
.laptop-scaler-inner {
  width: 640px;
  height: 430px;
  position: absolute;
  top: 0; left: 0;
  transform-origin: top left;
}

.mobile-scaler {
  container-type: inline-size;
  width: 100%;
  flex: 1;
  min-width: 0;
  max-width: 240px;
  aspect-ratio: 260 / 480;
  position: relative;
  margin: 0 auto;
}
.mobile-scaler-inner {
  width: 260px;
  height: 480px;
  position: absolute;
  top: 0; left: 0;
  transform-origin: top left;
}

/* FAQ Section */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; padding: 20px 0; background: none; border: none; font-size: 1.1rem; font-weight: 600; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.2s; }
.faq-question:hover { color: var(--color-orange); }
.faq-question i { transition: transform 0.3s ease; color: var(--text-muted); }
.faq-question.active i { transform: rotate(180deg); color: var(--color-orange); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding-bottom: 20px; color: var(--text-muted); line-height: 1.6; }