.elementor-16 .elementor-element.elementor-element-5c42747{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-16 .elementor-element.elementor-element-b02714a{--spacer-size:100px;}.elementor-16 .elementor-element.elementor-element-aecd817{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-cc5523f *//* ============================================ */
/* GLOBAL RESET & BASE                          */
/* ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
}

/* ============================================ */
/* BUTTONS                                      */
/* ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: #ff0000;
  color: #ffffff;
}

.btn-primary:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: #ff0000;
  color: #ff0000;
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.1rem;
}

/* ============================================ */
/* SECTION HEADERS                              */
/* ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  color: #ff0000;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 0, 0, 0.2);
  padding: 4px 16px;
  border-radius: 30px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-header h2 span {
  color: #ff0000;
}

.section-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================ */
/* HERO SECTION                                 */
/* ============================================ */
.hero-section {
  padding: 60px 0 80px;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span {
  color: #ff0000;
  position: relative;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
  animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
  0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
  50% { opacity: 1; transform: scaleX(1); }
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-dot {
  width: 6px;
  height: 6px;
  background: #ff0000;
  border-radius: 50%;
  display: inline-block;
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ============================================ */
/* TIGER WITH AI EYES                          */
/* ============================================ */
.hero-image {
  flex: 1;
  max-width: 550px;
}

.tiger-wrapper {
  position: relative;
  width: 100%;
}

.tiger-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 80px rgba(255, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tiger-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================ */
/* AI EYES OVERLAY                             */
/* ============================================ */
.ai-eyes-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ai-eye {
  position: absolute;
  width: 12%;
  height: 14%;
  top: 34%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  border: 2px solid rgba(255, 0, 0, 0.6);
  box-shadow: 
    0 0 20px rgba(255, 0, 0, 0.3),
    inset 0 0 20px rgba(255, 0, 0, 0.1);
  animation: eyePulse 2s ease-in-out infinite;
}

.eye-left {
  left: 28%;
}

.eye-right {
  right: 28%;
}

@keyframes eyePulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3), inset 0 0 20px rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.6);
  }
  50% { 
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.6), inset 0 0 30px rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 1);
  }
}

.eye-pupil {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  height: 45%;
  background: #ff0000;
  border-radius: 50%;
  box-shadow: 
    0 0 20px rgba(255, 0, 0, 0.8),
    0 0 40px rgba(255, 0, 0, 0.4),
    0 0 60px rgba(255, 0, 0, 0.2);
  animation: pupilGlow 1.5s ease-in-out infinite;
}

@keyframes pupilGlow {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.4);
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 30px rgba(255, 0, 0, 1), 0 0 60px rgba(255, 0, 0, 0.6), 0 0 80px rgba(255, 0, 0, 0.3);
  }
}

.eye-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowRing 3s ease-in-out infinite;
}

@keyframes glowRing {
  0%, 100% { 
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% { 
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* ============================================ */
/* AI STATUS INDICATOR                         */
/* ============================================ */
.ai-status {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 0, 0, 0.2);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  z-index: 5;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #00ff00;
  border-radius: 50%;
  animation: statusBlink 1.5s ease-in-out infinite;
}

@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* ============================================ */
/* SOLUTIONS SECTION                            */
/* ============================================ */
.solutions-section {
  padding: 80px 0;
  background: #0f0f0f;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 35px 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 0, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.solution-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.solution-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.solution-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================ */
/* AI COMMAND CENTER                            */
/* ============================================ */
.ai-command-center {
  padding: 80px 0;
  background: #0a0a0a;
}

.dashboard-preview {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.dashboard-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-dots {
  display: flex;
  gap: 8px;
}

.dashboard-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.dashboard-dots span:first-child { background: #ff5f57; }
.dashboard-dots span:nth-child(2) { background: #ffbd2e; }
.dashboard-dots span:last-child { background: #28c840; }

.dashboard-title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-left: 8px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-card h4 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.dashboard-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

.dashboard-change {
  font-size: 0.8rem;
  font-weight: 600;
}

.dashboard-change.positive {
  color: #28c840;
}

.dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 30px;
  height: 150px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-bar {
  flex: 1;
  background: rgba(255, 0, 0, 0.5);
  border-radius: 4px 4px 0 0;
  height: 40%;
  transition: height 0.3s ease;
  min-height: 20px;
}

.chart-bar:nth-child(1) { height: 60%; }
.chart-bar:nth-child(2) { height: 80%; }
.chart-bar:nth-child(3) { height: 45%; }
.chart-bar:nth-child(4) { height: 70%; }
.chart-bar:nth-child(5) { height: 90%; }
.chart-bar:nth-child(6) { height: 55%; }
.chart-bar:nth-child(7) { height: 75%; }
.chart-bar:nth-child(8) { height: 50%; }
.chart-bar:nth-child(9) { height: 85%; }
.chart-bar:nth-child(10) { height: 65%; }
.chart-bar:nth-child(11) { height: 95%; }
.chart-bar:nth-child(12) { height: 40%; }

.chart-bar:hover {
  background: #ff0000;
}

.dashboard-footer {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.status-online {
  color: #28c840;
}

/* ============================================ */
/* SOCIAL PROOF                                 */
/* ============================================ */
.social-proof {
  padding: 80px 0;
  background: #0f0f0f;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: #ff0000;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 0, 0, 0.2);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author strong {
  display: block;
  color: #ffffff;
  font-weight: 600;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* ============================================ */
/* FINAL CTA                                    */
/* ============================================ */
.final-cta {
  padding: 80px 0;
  background: #0a0a0a;
}

.cta-box {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 0, 0, 0.01));
  padding: 70px 50px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-box h2 span {
  color: #ff0000;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-image {
    order: 0;
    max-width: 100%;
  }
  
  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .cta-box h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 40px 0 50px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .hero-feature {
    font-size: 0.8rem;
    padding: 4px 12px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .solution-card {
    padding: 25px 20px;
  }
  
  .ai-command-center {
    padding: 50px 0;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
  }
  
  .dashboard-card {
    padding: 15px;
  }
  
  .dashboard-number {
    font-size: 1.4rem;
  }
  
  .dashboard-chart {
    padding: 16px;
    height: 100px;
    gap: 6px;
  }
  
  .dashboard-footer {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .final-cta {
    padding: 50px 0;
  }
  
  .cta-box {
    padding: 40px 20px;
  }
  
  .cta-box h2 {
    font-size: 1.6rem;
  }
  
  .cta-box p {
    font-size: 0.95rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width:/* End custom CSS */