/* 🌐 WebCero — Premium Styling Sheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg-color: #06080C;
  --panel-bg: rgba(255, 255, 255, 0.03);
  --panel-border: rgba(255, 255, 255, 0.07);
  --text-main: #F3F4F6;
  --text-muted: #9CA3AF;
  
  /* Brand Accents & Gradients */
  --wa-green: #25D366;
  --wa-green-hover: #1ebd59;
  --cyan: #00F2FE;
  --purple: #7F00FF;
  --accent-blue: #3B82F6;
  
  --grad-primary: linear-gradient(135deg, var(--wa-green) 0%, var(--cyan) 100%);
  --grad-primary-hover: linear-gradient(135deg, var(--wa-green-hover) 0%, #00d2dc 100%);
  --grad-dark: linear-gradient(180deg, #0A0F1D 0%, #06080C 100%);
  --grad-panel: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  --grad-whatsapp: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Glow FX */
.glow-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
}

.glow-1 {
  top: 0;
  left: 30%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, rgba(0, 242, 254, 0.05) 50%, transparent 70%);
}

.glow-2 {
  top: 1500px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, rgba(127, 0, 255, 0.05) 60%, transparent 80%);
}

.glow-3 {
  bottom: 800px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
  font-weight: 700;
}

/* --- HEADER & NAVIGATION --- */
header {
  position: sticky;
  top: 0;
  background: rgba(6, 8, 12, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--panel-border);
  z-index: 100;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--text-main);
  background: linear-gradient(135deg, #FFF 50%, #C3FFD8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

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

.desktop-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--wa-green);
}

.btn-cta-nav {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 99px;
  color: #06080C;
  background: var(--grad-primary);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* --- HERO SECTION --- */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: var(--wa-green);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.05);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--wa-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--wa-green);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #FFF;
}

.hero h1 span {
  background: linear-gradient(135deg, #FFF 20%, #25D366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* --- MAGIC SEARCH BOX --- */
.search-section-anchor {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.search-container {
  position: relative;
  background: rgba(10, 15, 28, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 0.65rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.search-container:focus-within {
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.15);
}

.search-box {
  display: flex;
  align-items: center;
  width: 100%;
}

.search-icon {
  padding: 0 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

#business-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.1rem;
  color: #FFF;
  font-family: inherit;
  padding: 0.75rem 0.5rem;
}

#business-search-input::placeholder {
  color: #525866;
}

.btn-search {
  padding: 0.8rem 2rem;
  background: var(--grad-primary);
  color: #06080C;
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-search:hover {
  background: var(--grad-primary-hover);
  transform: scale(1.02);
}

/* Search Suggestions dropdown */
.search-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: rgba(12, 17, 31, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  display: none;
  z-index: 50;
  text-align: left;
}

.suggestion-item {
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background: rgba(37, 211, 102, 0.08);
  color: #FFF;
}

.suggestion-item .s-loc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- RESULT CARD --- */
.magic-result-card {
  margin-top: 2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 2rem;
  text-align: left;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none; /* JS toggles this */
  animation: slideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  overflow: hidden;
}

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

.card-glow {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.result-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.result-logo {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(0, 242, 254, 0.2) 100%);
  border: 1px solid rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--wa-green);
}

.result-info {
  flex: 1;
  min-width: 200px;
}

.result-info h3 {
  font-size: 1.6rem;
  color: #FFF;
  margin-bottom: 0.25rem;
}

.result-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.result-category {
  color: var(--wa-green);
  font-weight: 600;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: var(--wa-green);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.result-reviews {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.75rem 1.25rem;
  border-radius: 14px;
  margin-bottom: 1.5rem;
}

.result-reviews .stars {
  letter-spacing: 2px;
}

.reviews-count {
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
}

.result-status {
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--wa-green);
  padding: 1rem 1.25rem;
  border-radius: 0 14px 14px 0;
  margin-bottom: 2rem;
}

.status-indicator {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.status-ping {
  width: 10px;
  height: 10px;
  background-color: var(--wa-green);
  border-radius: 50%;
  margin-top: 5px;
  position: relative;
  flex-shrink: 0;
}

.status-ping::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--wa-green);
  animation: pulse 1.8s infinite;
}

.status-text {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.status-text strong {
  color: #FFF;
}

.result-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.btn-claim-web {
  width: 100%;
  padding: 1.2rem;
  background: var(--wa-green);
  color: #FFF;
  border: none;
  border-radius: 18px;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-claim-web:hover {
  background: var(--wa-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45);
}

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

/* --- STATS --- */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 5rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFF 40%, var(--wa-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- SECTION GENERAL STYLE --- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4.5rem;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #FFF;
}

.section-title span {
  background: linear-gradient(135deg, var(--wa-green) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- 3 STEPS GRID --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 211, 102, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.step-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--wa-green);
  background: rgba(37, 211, 102, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
}

.step-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(0, 242, 254, 0.05) 100%);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.step-card h3 {
  font-size: 1.35rem;
  color: #FFF;
  margin-bottom: 1rem;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- WHATSAPP SIMULATOR --- */
.bg-dark-gradient {
  background: linear-gradient(180deg, #06080C 0%, #0A0F1D 50%, #06080C 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.simulator-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Phone Mockup Bases */
.phone-mockup {
  width: 320px;
  height: 580px;
  border-radius: 40px;
  background: #111;
  border: 10px solid #222;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.phone-header {
  height: 65px;
  background: #1A1A1A;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.speaker {
  width: 60px;
  height: 4px;
  background: #333;
  border-radius: 99px;
  margin-top: 8px;
}

.phone-screen {
  flex: 1;
  overflow-y: auto;
  position: relative;
}

/* Left Phone: WhatsApp Messenger */
.wa-chat-header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5rem 1rem 0;
  gap: 0.75rem;
}

.wa-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #128C7E;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.wa-user-info h4 {
  font-size: 0.9rem;
  color: #FFF;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}

.wa-verified-badge {
  color: #25D366;
  display: flex;
  align-items: center;
}

.wa-user-info span {
  font-size: 0.7rem;
  color: #8E8E93;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--wa-green);
  border-radius: 50%;
}

.wa-chat-body {
  background: #0E121A;
  background-image: radial-gradient(rgba(37, 211, 102, 0.03) 1px, transparent 0);
  background-size: 16px 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wa-date-divider {
  align-self: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.wa-msg {
  max-width: 80%;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  position: relative;
  font-size: 0.85rem;
  line-height: 1.4;
  word-break: break-word;
}

.wa-msg.received {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  color: #F3F4F6;
  border-top-left-radius: 2px;
}

.wa-msg.sent {
  align-self: flex-end;
  background: #128C7E;
  color: #FFF;
  border-top-right-radius: 2px;
}

.wa-time {
  display: block;
  text-align: right;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.wa-input-area {
  padding: 0.5rem;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.wa-input-container {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  padding: 0.4rem 0.75rem;
  display: flex;
  align-items: center;
}

#wa-text-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #FFF;
  font-size: 0.85rem;
}

.wa-mic-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #128C7E;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wa-mic-btn:hover {
  background: #0f7569;
}

/* Right Phone: Mock Website Preview */
.web-browser-bar {
  width: 100%;
  padding: 0.4rem 1rem 0;
}

.web-domain {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.3rem 0.6rem;
  font-size: 0.725rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.web-content {
  background: #0B0C10;
  display: flex;
  flex-direction: column;
  color: #ECEFF4;
  font-size: 0.85rem;
  text-align: left;
}

.web-mock-header {
  padding: 0.6rem 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.web-mock-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #FFF;
}

.web-mock-cta {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  background: var(--wa-green);
  color: #FFF;
  border-radius: 99px;
}

.web-mock-hero {
  padding: 1.25rem 0.85rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.04) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.web-mock-hero h1 {
  font-size: 1.15rem;
  line-height: 1.25;
  color: #FFF;
  margin-bottom: 0.4rem;
}

.web-mock-hero p {
  font-size: 0.725rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0.85rem;
}

.web-mock-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.web-mock-btn {
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}

.web-mock-btn.active {
  background: var(--wa-green);
  border-color: var(--wa-green);
  color: #FFF;
  font-weight: 600;
}

.web-mock-menu-section {
  padding: 1rem 0.85rem;
}

.web-mock-menu-section h4 {
  font-size: 0.85rem;
  color: #FFF;
  margin-bottom: 0.75rem;
  font-family: 'Outfit', sans-serif;
}

.web-mock-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background-color 0.4s ease;
}

.menu-item-info h5 {
  font-size: 0.8rem;
  color: #ECEFF4;
  margin-bottom: 0.15rem;
}

.menu-item-info p {
  font-size: 0.675rem;
  color: var(--text-muted);
}

.menu-item-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wa-green);
}

.web-mock-dessert-box {
  transition: all 0.4s ease;
  overflow: hidden;
}

.web-mock-reviews {
  padding: 0.85rem;
  margin: 0 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  font-size: 0.725rem;
}

.web-mock-reviews h5 {
  margin-bottom: 0.25rem;
  letter-spacing: 1px;
}

.web-mock-reviews p {
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.review-author {
  font-size: 0.65rem;
  color: var(--text-main);
  font-weight: 500;
}

.web-mock-status-badge {
  margin-top: auto;
  background: rgba(37, 211, 102, 0.06);
  border-top: 1px solid rgba(37, 211, 102, 0.1);
  padding: 0.6rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--wa-green);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.green-dot {
  width: 6px;
  height: 6px;
  background-color: var(--wa-green);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

/* Highlighter effect for updated mock fields */
.highlight-target {
  position: relative;
}

.highlight-flash::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(37, 211, 102, 0.15);
  border-radius: 6px;
  animation: flashEffect 1.2s ease-out;
  pointer-events: none;
}

@keyframes flashEffect {
  0% { opacity: 0; }
  20% { opacity: 1; }
  100% { opacity: 0; }
}

/* Simulator controls */
.simulator-controls {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.btn-simulator-play {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFF;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: inherit;
  transition: all 0.2s ease;
}

.btn-simulator-play:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
  color: var(--wa-green);
  transform: translateY(-2px);
}

.simulator-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- SECTORES (TARGET VERTICALS) --- */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.vertical-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.vertical-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.v-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.vertical-card h3 {
  font-size: 1.25rem;
  color: #FFF;
  margin-bottom: 0.75rem;
}

.vertical-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.v-list {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.v-list li {
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.v-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background-color: var(--wa-green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- PRICING SECTION --- */
.border-glow {
  position: relative;
}

.pricing-wrapper {
  max-width: 650px;
  margin: 0 auto;
}

.pricing-card.premium {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 30px;
  padding: 3rem;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: #06080C;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.4rem 1.25rem;
  border-radius: 99px;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 1.8rem;
  color: #FFF;
  margin-bottom: 1.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 2rem;
}

.price-currency {
  font-size: 2rem;
  font-weight: 700;
  color: #FFF;
}

.price-val {
  font-size: 5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #FFF;
  line-height: 1;
}

.price-period {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.billing-switcher {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.3rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
}

.switcher-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.switcher-btn.active {
  background: rgba(255, 255, 255, 0.08);
  color: #FFF;
}

.pricing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-features li {
  font-size: 0.95rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.4;
}

.pricing-features li strong {
  color: #FFF;
}

.feat-icon {
  color: var(--wa-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.btn-pricing-cta {
  width: 100%;
  max-width: 400px;
  padding: 1.1rem;
  background: var(--grad-primary);
  color: #06080C;
  text-decoration: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pricing-cta:hover {
  background: var(--grad-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.35);
}

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

/* --- FAQ ACCORDION --- */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFF;
}

.faq-chevron {
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Active FAQ states */
.faq-item.active {
  border-color: rgba(37, 211, 102, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--wa-green);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

/* --- FOOTER --- */
footer {
  background: #030406;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 5rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  max-width: 380px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.link-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.link-column h4 {
  font-size: 0.95rem;
  color: #FFF;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.link-column a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.link-column a:hover {
  color: var(--wa-green);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
  font-size: 0.8rem;
  color: #525866;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none; /* Hide on mobile/tablet */
  }
  
  .nav-container {
    padding: 1rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
  }
  
  .search-box {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  #business-search-input {
    width: 100%;
    padding: 0.5rem;
    text-align: center;
  }
  
  .btn-search {
    width: 100%;
  }
  
  .result-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .pricing-card.premium {
    padding: 2rem 1.25rem;
  }
  
  .price-val {
    font-size: 4rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .simulator-container {
    gap: 2rem;
  }
}
