/* ============================================
   Home Page Styles
   ============================================ */

.hero-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 40%, #2563eb 100%);
  position: relative;
  overflow: hidden;
}

.hero-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Buttons - Primary
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background-color: #2563eb;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
  transform: translateY(-1px);
}

/* ============================================
   Buttons - Secondary / Outline
   ============================================ */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background-color: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-1px);
}

/* ============================================
   Buttons - WhatsApp
   ============================================ */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #25d366;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background-color: #1fb855;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-1px);
}

/* ============================================
   Buttons - Dark
   ============================================ */
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background-color: #111827;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  background-color: #1f2937;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

/* ============================================
   Buttons - White (for blue backgrounds)
   ============================================ */
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background-color: #ffffff;
  color: #1d4ed8;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-white:hover {
  background-color: #eff6ff;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* ============================================
   Nav links refinement
   ============================================ */
.nav-link-desktop {
  position: relative;
  color: #374151;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
  text-decoration: none;
}

.nav-link-desktop::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 1px;
}

.nav-link-desktop:hover {
  color: #2563eb;
}

.nav-link-desktop:hover::after {
  width: 100%;
  left: 0;
}

/* ============================================
   Mobile menu links
   ============================================ */
.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: #374151;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 0.5rem;
  transition: all 0.15s ease;
  text-decoration: none;
}

.mobile-nav-link:hover {
  color: #2563eb;
  background-color: #eff6ff;
}

/* ============================================
   Pricing card featured glow
   ============================================ */
.pricing-featured {
  background: linear-gradient(145deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.3);
  border: 2px solid #3b82f6 !important;
}

/* ============================================
   Section subtitle badge
   ============================================ */
.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background-color: #eff6ff;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* ============================================
   Heading Font
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #9ca3af;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: '\2212';
  color: #2563eb;
}
.faq-item[open] summary {
  color: #2563eb;
  margin-bottom: 1rem;
}

/* ============================================
   Social Proof Counter
   ============================================ */
.stat-number {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ============================================
   Process Timeline Connector
   ============================================ */
.process-step {
  position: relative;
}
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: -50%;
    width: 100%;
    height: 2px;
    border-top: 2px dashed #cbd5e1;
    z-index: 0;
  }
}
.process-step .step-number {
  position: relative;
  z-index: 1;
}

/* ============================================
   WhatsApp Floating Button Pulse
   ============================================ */
.whatsapp-float {
  animation: whatsapp-pulse 2s ease-in-out infinite;
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
}

/* ============================================
   Browser Mockup (Hero)
   ============================================ */
.browser-mockup {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.browser-mockup-bar {
  background: #e5e7eb;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.browser-mockup-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

/* ============================================
   Guarantee Section
   ============================================ */
.guarantee-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ============================================
   Testimonial Card Hover
   ============================================ */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ============================================
   Service Card Spacing
   ============================================ */
.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  height: 100%;
}
