/* 
  Extrator Google Maps Pro
  Replica 1: Corporate B2B Light Mode
*/

:root {
  /* Colors - Light Theme Corporate */
  --bg-dark: #f8f9fa; /* Light grey background */
  --bg-card: #ffffff; /* Solid white cards */
  --text-main: #212529; /* Dark gray/black text */
  --text-muted: #6c757d; /* Muted gray text */
  
  --primary: #0b3b60; /* Navy Blue */
  --primary-hover: #082d4a;
  --secondary: #007bff; /* Bright Blue */
  --secondary-hover: #0056b3;
  
  --border-color: #dee2e6;
  --glass-border: 1px solid #e9ecef;
  --glass-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Soft shadow instead of glass shadow */
  
  /* Typography */
  --font-body: 'Roboto', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  
  /* Spacing */
  --container-width: 1200px;
  --section-pad: 5rem 1rem;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  /* Removed the gradient background for a cleaner solid look */
}

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

ul {
  list-style: none;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary); /* Headings are Navy Blue */
}

.highlight {
  color: var(--secondary); /* No gradient highlight, just bright blue */
  display: inline-block;
}

.text-center { text-align: center; }
.text-green { color: #28a745; } /* Standard success green instead of neon */

/* Layout Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 4px; /* Less rounded for corporate look */
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
  background: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.w-100 { width: 100%; }

/* Animations */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(0, 123, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

/* Fade in elements */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Header / Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
  padding: 0.8rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.logo i {
  color: var(--secondary);
  font-size: 1.5rem;
}

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

.nav-links a {
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--secondary);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  padding-top: 150px;
  padding-bottom: 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #ffffff; /* Solid white hero */
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e6f2ff;
  color: var(--secondary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid #b3d7ff;
}

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

.hero .subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -15px;
}

.avatars img:first-child {
  margin-left: 0;
}

.avatar-count {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: -15px;
  z-index: 1;
}

.proof-text .stars {
  color: #fbbf24;
  margin-bottom: 0.2rem;
}

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

.hero-image {
  position: relative;
}

.glass-panel {
  background: #fff;
  border: var(--border-color) solid 1px;
  border-radius: 8px; /* Sharper edges */
  padding: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08); /* Solid soft shadow */
  position: relative;
}

.mockup-img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 2rem;
  color: var(--secondary);
}

.floating-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
}

.floating-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stat-1 {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.stat-2 {
  bottom: -30px;
  left: -20px;
  animation-delay: 3s;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}


/* --- Global Sections --- */
section {
  padding: var(--section-pad);
}

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

.section-header h2 {
  font-size: 2.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Benefits --- */
.benefits {
  background-color: #f8f9fa;
}

.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.glass-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: #e6f2ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.glass-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.glass-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- How it Works --- */
.how-it-works {
  background-color: #ffffff;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 5px #e6f2ff;
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

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

.step-line {
  flex: 1;
  height: 2px;
  background: dashed 2px var(--border-color);
  margin-bottom: 80px;
  z-index: 1;
}

/* --- Video Demo --- */
.video-section {
  background-color: #f8f9fa;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0.5rem;
  border-radius: 8px;
}

/* --- Testimonials --- */
.testimonials {
  background-color: #ffffff;
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.testimonial-card {
  background: #f8f9fa;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
}

.testimonial-card .stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-card .quote {
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-main);
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.author strong {
  display: block;
  font-size: 1rem;
  color: var(--primary);
}

.author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Pricing --- */
.pricing {
  background-color: var(--primary);
  color: #fff;
}

.pricing .section-header h2, .pricing .section-header p {
  color: #fff;
}

.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 3rem;
  border-radius: 8px;
  background: #fff;
  color: var(--text-main);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.pricing-header {
  margin-bottom: 2.5rem;
}

.pricing-header h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.amount {
  font-size: 4rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}

.period {
  font-size: 1.2rem;
  color: var(--text-muted);
  align-self: flex-end;
  margin-bottom: 0.5rem;
}

.no-monthly {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.1rem;
}

.pricing-features ul {
  text-align: left;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.timer-box {
  background: #fff3cd;
  border: 1px solid #ffeeba;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.timer-box p {
  color: #856404;
  font-weight: 600;
  margin-bottom: 1rem;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #856404;
}

.time-block {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  min-width: 70px;
  border: 1px solid #ffeeba;
}

.time-block small {
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.guarantee i {
  color: var(--secondary);
  font-size: 1.2rem;
}

/* --- FAQ --- */
.faq {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
}

.accordion-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  color: var(--primary);
  text-align: left;
  padding: 1.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-body);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.accordion-header:hover {
  color: var(--secondary);
}

.accordion-header i {
  transition: transform 0.3s ease;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content p {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
}

/* --- Footer --- */
.footer {
  background: var(--primary);
  color: #fff;
  padding-top: 4rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col a {
  color: #d1d5db;
}

.footer-col a:hover {
  color: #fff;
}

.contact-info li, .contact-info a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #d1d5db !important;
}

.contact-info i {
  color: var(--secondary);
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
  color: #d1d5db;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  opacity: 0.6;
}

.logo {
  color: #fff;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: bounce 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #fff;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
  60% { transform: translateY(-7px); }
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero .subtitle {
    margin: 0 auto 2rem;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-social-proof {
    justify-content: center;
  }
  .stat-1 { top: 10px; right: 10px; }
  .stat-2 { bottom: 10px; left: 10px; }
  
  .steps-container {
    flex-direction: column;
    gap: 2rem;
  }
  .step-line {
    width: 2px;
    height: 50px;
    margin: 0;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .hero h1 { font-size: 2.2rem; }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-info li {
    justify-content: center;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }
}
