/* ============================================
   MODIBHOST LANDING PAGE - CUSTOM STYLES
   Modern, Premium, Responsive Design
   ============================================ */

/* === ROOT VARIABLES === */
:root {
  --primary: #6366f1;
  --secondary: #8b5cf6;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  --dark: #0f172a;
  --light: #f1f5f9;
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-danger: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  --gradient-info: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* === GLOBAL STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

/* === GRADIENT TEXT === */
.gradient-text {
  background: linear-gradient(90deg, #00D4FF 0%, #00E5A0 35%, #5B8DEF 70%, #6366F1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* ModibHost brand specific gradient - matches logo exactly */
.navbar-brand .gradient-text {
  background: linear-gradient(90deg, 
    #00D4FF 0%,      /* mo - cyan terang */
    #00D4FF 20%,     /* mo - cyan terang */
    #00E5A0 35%,     /* dib - hijau/tosca */
    #00E5A0 50%,     /* dib - hijau/tosca */
    #5B8DEF 70%,     /* Host - biru */
    #6366F1 100%     /* Host - biru tua */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: brightness(1.15);
  letter-spacing: -0.5px;
}

/* === BUTTONS === */
.btn-gradient {
  background: var(--gradient-primary);
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  color: white;
}

/* Hero button size */
.btn-hero {
  padding: 0.65rem 1.5rem !important;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

/* === NAVBAR === */
.modibhost-navbar {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.modibhost-navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
}

.nav-link {
  color: var(--light) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(99, 102, 241, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(139, 92, 246, 0.15) 0%,
      transparent 50%
    );
  z-index: 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(241, 245, 249, 0.8);
  line-height: 1.6;
}

/* Hero note text */
.hero-note {
  color: rgba(241, 245, 249, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-note i {
  color: var(--success);
}

/* === FLOATING CARDS === */
.hero-image-wrapper {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.floating-card.card-1 {
  top: 10%;
  left: 0;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 50%;
  right: 0;
  animation-delay: 1s;
}

.floating-card.card-3 {
  bottom: 10%;
  left: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* === BROWSER MOCKUP === */
.hero-main-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 500px;
}

.browser-mockup {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.browser-header {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.browser-dots {
  display: flex;
  gap: 0.5rem;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.browser-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  text-align: center;
}

/* Demo link styles */
.demo-link {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.demo-link:hover {
  color: var(--primary);
  text-decoration: none;
}

.browser-content {
  padding: 1.5rem;
  min-height: 300px;
}

/* === CMS DASHBOARD PREVIEW === */
.cms-dashboard-preview {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
}

.header-badge {
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.mini-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease-out;
}

.mini-stat-card:nth-child(1) { animation-delay: 0.1s; }
.mini-stat-card:nth-child(2) { animation-delay: 0.2s; }
.mini-stat-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.mini-stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.mini-stat-icon {
  width: 35px;
  height: 35px;
  min-width: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
}

.mini-stat-icon.bg-primary {
  background: var(--gradient-primary);
}

.mini-stat-icon.bg-success {
  background: var(--gradient-success);
}

.mini-stat-icon.bg-warning {
  background: var(--gradient-warning);
}

.mini-stat-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mini-stat-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.mini-stat-label {
  font-size: 0.65rem;
  color: rgba(241, 245, 249, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 600;
}

/* Old placeholder styles - keep for backwards compatibility */
.content-placeholder {
  animation: pulse 2s ease-in-out infinite;
}

.placeholder-header {
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  margin-bottom: 1rem;
  width: 60%;
}

.placeholder-text {
  height: 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.placeholder-text.short {
  width: 40%;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.placeholder-card {
  height: 80px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* === STATS SECTION === */
.stats-section {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.stat-icon {
  font-size: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  display: inline-block;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-block;
}

.stat-label {
  color: rgba(241, 245, 249, 0.7);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* === SECTION TITLE === */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
}

/* === FEATURES SECTION === */
.features-section {
  padding: 5rem 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}
.bg-gradient-success {
  background: var(--gradient-success);
}
.bg-gradient-warning {
  background: var(--gradient-warning);
}
.bg-gradient-danger {
  background: var(--gradient-danger);
}
.bg-gradient-info {
  background: var(--gradient-info);
}
.bg-gradient-purple {
  background: var(--gradient-purple);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.feature-desc {
  color: rgba(241, 245, 249, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  color: rgba(241, 245, 249, 0.8);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list i {
  color: var(--success);
  font-size: 1.1rem;
}

/* === BENEFITS SECTION === */
.benefits-section {
  background: rgba(255, 255, 255, 0.02);
  padding: 5rem 0;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
}

.benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.benefits-visual {
  position: relative;
  height: 500px;
}

.visual-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

.visual-card.card-primary {
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.visual-card.card-success {
  top: 40%;
  right: 0;
  animation-delay: 1.5s;
}

.visual-card.card-warning {
  bottom: 0;
  left: 20%;
  animation-delay: 3s;
}

/* === PRICING SECTION === */
.pricing-section {
  padding: 5rem 0;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
}

.pricing-popular {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.pricing-price {
  margin: 2rem 0;
  text-align: center;
}

.currency {
  font-size: 1.5rem;
  color: rgba(241, 245, 249, 0.7);
}

.amount {
  font-size: 3rem;
  font-weight: 900;
  color: white;
}

.amount-custom {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.period {
  font-size: 1rem;
  color: rgba(241, 245, 249, 0.6);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: rgba(241, 245, 249, 0.8);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features i {
  color: var(--success);
  font-size: 1.25rem;
}

/* Red X for unavailable features */
.pricing-features .text-danger {
  color: var(--danger) !important;
}

/* Pricing bonus badge */
.pricing-bonus {
  text-align: center;
  padding: 0.5rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Ensure all feature lists have same height */
.pricing-features {
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

/* Pricing footer text */
.pricing-footer-text {
  color: rgba(241, 245, 249, 0.9);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.pricing-footer-text i {
  color: var(--success);
  font-size: 1.1rem;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

/* Testimonials Carousel Wrapper */
.testimonials-carousel-wrapper {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

/* Testimonials Carousel */
.testimonials-carousel {
  display: flex;
  gap: 2rem;
  animation: scrollTestimonials 180s linear infinite;
  width: max-content;
}

/* Pause on hover */
.testimonials-carousel:hover {
  animation-play-state: paused;
}

/* Scroll Animation */
@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-350px * 30 - 2rem * 30));
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 350px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-text {
  color: rgba(241, 245, 249, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  color: rgba(241, 245, 249, 0.95);
  font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .testimonials-carousel {
    gap: 1rem;
  }
  
  .testimonial-card {
    width: 280px;
    padding: 1.5rem;
    min-height: 260px;
  }
  
  @keyframes scrollTestimonials {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-280px * 30 - 1rem * 30));
    }
  }
  
  .testimonial-text {
    font-size: 0.9rem;
  }
  
  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .author-name {
    font-size: 0.9rem;
  }
}

/* === FAQ SECTION === */
.faq-section {
  background: rgba(255, 255, 255, 0.02);
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateX(5px);
}

.faq-item .accordion-button {
  background: transparent;
  color: rgba(241, 245, 249, 0.95);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.5rem;
  border: none;
  box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--primary);
}

.faq-item .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.faq-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236366f1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  filter: brightness(1.2);
}

.faq-item .accordion-button i {
  color: var(--primary);
  font-size: 1.3rem;
}

.faq-item .accordion-body {
  background: transparent;
  color: rgba(241, 245, 249, 0.85);
  line-height: 1.8;
  padding: 1.5rem;
  padding-top: 0;
  font-size: 0.95rem;
}

/* Mobile Responsive for FAQ */
@media (max-width: 767px) {
  .faq-item .accordion-button {
    font-size: 0.95rem;
    padding: 1.2rem;
  }
  
  .faq-item .accordion-button i {
    font-size: 1.1rem;
  }
  
  .faq-item .accordion-body {
    font-size: 0.9rem;
    padding: 1.2rem;
    padding-top: 0;
  }
  
  .faq-item:hover {
    transform: none;
  }
}

.author-role {
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.6);
}

/* === CTA SECTION === */
.cta-section {
  padding: 5rem 0;
}

.cta-wrapper {
  background: var(--gradient-primary);
  border-radius: 24px;
  padding: 3rem 2rem;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: white;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.cta-feature-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* === FOOTER === */
.footer-section {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
}

.footer-description {
  color: rgba(241, 245, 249, 0.85);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(241, 245, 249, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-copyright,
.footer-made {
  color: rgba(241, 245, 249, 0.6);
  font-size: 0.9rem;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

@keyframes pulse-whatsapp {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-image-wrapper {
    height: 400px;
    margin-top: 3rem;
  }

  .floating-card {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 100px;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-image-wrapper {
    height: 300px;
  }

  .floating-card {
    padding: 0.75rem;
    font-size: 0.8rem;
  }

  .floating-card i {
    font-size: 1.5rem !important;
  }

  .stat-card {
    padding: 1.25rem 0.75rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-icon {
    font-size: 2rem;
  }

  .feature-card,
  .pricing-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .benefit-item {
    gap: 1rem;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1.5rem;
  }

  .benefits-visual {
    height: 350px;
    margin-top: 3rem;
  }

  .visual-card {
    padding: 1.5rem;
  }

  .cta-wrapper {
    padding: 2rem 1.5rem;
  }

  .cta-features {
    flex-direction: column;
    gap: 0.75rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.75rem;
    bottom: 20px;
    right: 20px;
  }
  
  /* Dashboard cards responsive */
  .dashboard-stats {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .mini-stat-card {
    padding: 0.75rem 0.5rem;
  }
  
  .mini-stat-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    font-size: 1.1rem;
  }
  
  .mini-stat-number {
    font-size: 1.1rem;
  }
  
  .mini-stat-label {
    font-size: 0.65rem;
  }
  
  .header-title {
    font-size: 0.85rem;
  }
  
  .header-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }
  
  .browser-content {
    padding: 1rem;
  }
}

/* === SMOOTH SCROLL === */
html {
  scroll-behavior: smooth;
}

/* === SELECTION === */
::selection {
  background: var(--primary);
  color: white;
}
