/* === BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', sans-serif;
  background: #0f1117;
  color: #c8cdd5;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === COLOR VARIABLES (SocialIA - Blue) === */
:root {
  --primary: #3b82f6;
  --primary-light: #60a5fa;
  --primary-dark: #2563eb;
  --secondary: #6366f1;
  --secondary-light: #818cf8;
  --accent: #8b5cf6;
  --accent-light: #a78bfa;
  --success: #22c55e;
  --warning: #fbbf24;
  --danger: #ef4444;
  --bg-dark: #0f1117;
  --bg-card: rgba(59, 130, 246, 0.03);
  --border: #1e293b;
  --border-light: rgba(59, 130, 246, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
}

/* === UTILITIES === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.text-red { color: var(--danger); }
.text-cyan { color: var(--primary); }
.text-green { color: var(--success); }
.text-dim { color: var(--text-muted); }

/* === NAV === */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15, 17, 23, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s;
}
#navbar.scrolled { background: rgba(15, 17, 23, 0.95); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
}
.nav-logo {
  font-size: 1.1rem; font-weight: 800; color: #fff;
  text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  font-size: 0.9rem;
  color: #fff;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none; font-size: 0.85rem;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  padding: 8px 20px !important;
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  color: #fff !important; border-radius: 50px;
  font-weight: 600 !important;
}
.nav-lang {
  padding: 4px 12px !important;
  border: 1px solid var(--border) !important;
  border-radius: 6px;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  color: var(--text-muted) !important;
  transition: all 0.2s;
}
.nav-lang:hover { border-color: var(--primary) !important; color: var(--primary) !important; }
.mobile-menu { display: none; background: none; border: none; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; }
.mobile-menu span {
  display: block; width: 24px; height: 2px;
  background: var(--text-secondary); margin: 5px 0; transition: 0.3s;
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; font-size: 0.95rem; font-weight: 600;
  border-radius: 50px; text-decoration: none;
  font-family: 'Inter', sans-serif; cursor: pointer;
  transition: all 0.2s; border: none;
  -webkit-tap-highlight-color: rgba(59, 130, 246, 0.3);
  touch-action: manipulation;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35); }
.btn-ghost {
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: 12px 20px; font-size: 0.8rem; min-height: 44px; }
.btn-lg { padding: 18px 48px; font-size: 1.1rem; }

/* === HERO === */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; text-align: center;
  padding: 120px 24px 80px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.bg-glow {
  position: absolute; width: 500px; height: 500px;
  border-radius: 50%; filter: blur(150px); opacity: 0.08;
}
.bg-glow.blue { background: var(--primary); top: -150px; right: -100px; }
.bg-glow.purple { background: var(--accent); bottom: -150px; left: -100px; }
.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.04));
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

#hero h1 {
  font-size: 3.8rem; font-weight: 800; line-height: 1.1;
  color: #fff; margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem; color: var(--text-secondary); max-width: 600px;
  margin: 0 auto 32px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 60px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 48px; justify-content: center;
  border-top: 1px solid var(--border); padding-top: 32px;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block; font-size: 2rem; font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* === SECTIONS === */
section { padding: 100px 0; position: relative; }
section:nth-child(even) { background: rgba(59, 130, 246, 0.02); }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.02));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--primary-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
section h2 {
  font-size: 2.5rem; font-weight: 800; color: #fff;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-muted); max-width: 600px;
  margin-bottom: 48px; line-height: 1.7;
}

/* === PROBLEM === */
.problem-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-bottom: 80px;
}
.problem-card {
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.04), rgba(239, 68, 68, 0.01));
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 16px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 40px;
  height: 8px;
  background: var(--bg-dark);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.1);
}
.problem-num {
  font-size: 2.8rem; font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
}
.problem-label {
  font-size: 0.85rem; font-weight: 600; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 1px;
  margin: 8px 0 12px;
}
.problem-card p { font-size: 0.85rem; color: var(--text-muted); }

/* === STEPS === */
.steps-grid {
  display: flex; align-items: flex-start; gap: 0;
  flex-wrap: wrap; justify-content: center;
}
.step-card {
  flex: 1; min-width: 200px; max-width: 240px;
  padding: 32px 24px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.06), rgba(59, 130, 246, 0.01));
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.step-card::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 30px;
  width: 16px;
  height: 16px;
  background: inherit;
  border: inherit;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.1);
}
.step-num {
  font-size: 2rem; font-weight: 800; color: var(--primary); opacity: 0.4;
  font-family: 'JetBrains Mono', monospace; margin-bottom: 12px;
}
.step-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); }
.step-arrow {
  font-size: 1.5rem; color: var(--border); padding: 0 8px;
  align-self: center; margin-top: 20px;
}

/* === DEMO === */
#demo { padding: 80px 0; background: linear-gradient(180deg, rgba(59, 130, 246, 0.02) 0%, transparent 100%); }
#demo h2 { text-align: center; font-size: 2.5rem; margin-bottom: 16px; }
#demo .section-sub { text-align: center; max-width: 600px; margin: 0 auto 40px; }

.demo-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.demo-stats {
  display: flex; gap: 24px; font-size: 0.9rem; color: var(--text-secondary);
}
.demo-stats b { color: var(--primary); font-weight: 600; }

.demo-dual {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; min-height: 520px;
}

/* === WhatsApp Chat Panel === */
.wa-chat {
  border: 1px solid var(--border-light);
  border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column; background: #0b141a;
}
.wa-header {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: #1f2c34;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wa-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff; flex-shrink: 0;
}
.wa-header-info h4 { font-size: 0.85rem; font-weight: 600; color: #e9edef; margin-bottom: 1px; }
.wa-header-info span { font-size: 0.7rem; color: #8696a0; }
.wa-body {
  flex: 1; min-height: 200px; padding: 12px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  display: flex; flex-direction: column; gap: 6px;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.02) 0%, transparent 50%), #0b141a;
  scrollbar-width: thin; scrollbar-color: #1f2c34 transparent;
}
.wa-body::-webkit-scrollbar { width: 4px; }
.wa-body::-webkit-scrollbar-track { background: transparent; }
.wa-body::-webkit-scrollbar-thumb { background: #1f2c34; border-radius: 4px; }

.wa-bubble {
  max-width: 85%; padding: 8px 12px; border-radius: 8px;
  font-size: 0.82rem; line-height: 1.45; position: relative;
  animation: bubbleIn 0.3s ease; word-wrap: break-word; overflow-wrap: break-word;
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-bubble.member {
  background: #1f2c34; color: #e9edef;
  align-self: flex-start; border-bottom-left-radius: 2px;
}
.wa-bubble.ai {
  background: #005c4b; color: #e9edef;
  align-self: flex-end; border-bottom-right-radius: 2px;
}
.wa-bubble.system {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-light);
  align-self: center;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  max-width: 90%;
}
.wa-bubble .wa-sender {
  display: block; font-size: 0.7rem; font-weight: 700;
  margin-bottom: 2px;
}
.wa-bubble .wa-sender.blue { color: #53bdeb; }
.wa-bubble .wa-sender.green { color: #25d366; }
.wa-bubble .wa-sender.orange { color: #f59e0b; }
.wa-bubble .wa-sender.red { color: #ef4444; }
.wa-bubble .wa-time {
  display: block; font-size: 0.6rem; color: rgba(255,255,255,0.45);
  text-align: right; margin-top: 4px;
}
.wa-bubble .wa-checks {
  color: #53bdeb; font-size: 0.6rem; margin-left: 4px;
}

.wa-typing {
  align-self: flex-start; background: #1f2c34;
  padding: 10px 16px; border-radius: 8px; border-bottom-left-radius: 2px;
  display: flex; gap: 4px; align-items: center; animation: bubbleIn 0.3s ease;
}
.wa-typing span {
  width: 6px; height: 6px; background: #8696a0;
  border-radius: 50%; animation: typingDot 1.4s ease-in-out infinite;
}
.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

.wa-footer {
  padding: 8px 12px; background: #1f2c34;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 8px;
}
.wa-input-fake {
  flex: 1; padding: 8px 14px; background: #2a3942;
  border-radius: 20px; font-size: 0.75rem; color: #8696a0;
}
.wa-send-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); border: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; flex-shrink: 0;
}

/* === Admin Dashboard Panel === */
.admin-panel {
  border: 1px solid var(--border-light);
  border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column;
  background: rgba(59, 130, 246, 0.02);
}
.admin-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  background: rgba(59, 130, 246, 0.05);
  border-bottom: 1px solid var(--border-light);
}
.admin-header h4 {
  font-size: 0.85rem; font-weight: 700; color: var(--text-primary);
  display: flex; align-items: center; gap: 8px;
}
.admin-header h4 span { font-size: 1rem; }
.admin-body {
  flex: 1; padding: 16px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 16px;
}

/* Admin Stats */
.admin-stats {
  display: flex; gap: 16px; padding: 12px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid var(--border-light); border-radius: 8px;
}
.admin-stat { flex: 1; text-align: center; }
.admin-stat-num {
  display: block; font-size: 1.3rem; font-weight: 800;
  color: var(--primary-light);
  font-family: 'JetBrains Mono', monospace;
}
.admin-stat-label {
  font-size: 0.65rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* Rules Grid */
.rules-grid {
  display: flex; flex-direction: column; gap: 6px;
}
.rule-item {
  padding: 8px 12px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 8px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem;
  transition: all 0.3s;
}
.rule-item .rule-name { color: var(--text-primary); font-weight: 600; }
.rule-item .rule-status {
  padding: 2px 8px; border-radius: 50px; font-size: 0.65rem; font-weight: 600;
}
.rule-item .rule-status.active {
  background: rgba(34, 197, 94, 0.1); color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.rule-item .rule-status.triggered {
  background: rgba(239, 68, 68, 0.1); color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.2);
  animation: pulse-rule 1s ease-in-out;
}
@keyframes pulse-rule {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; transform: scale(1.05); }
}

/* FAQs Grid */
.faqs-grid {
  display: flex; flex-direction: column; gap: 6px;
}
.faq-item {
  padding: 8px 12px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 8px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem;
  transition: all 0.3s;
}
.faq-item .faq-question { color: var(--text-secondary); }
.faq-item .faq-count {
  color: var(--primary-light); font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}
.faq-item.highlight {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.25);
}

/* Alert Card */
.admin-alert {
  padding: 12px;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  animation: bubbleIn 0.4s ease;
}
.admin-alert h5 {
  font-size: 0.75rem; font-weight: 700; color: var(--danger);
  margin-bottom: 4px; display: flex; align-items: center; gap: 6px;
}
.admin-alert p { font-size: 0.7rem; color: var(--text-muted); }

.product-grid-label {
  font-size: 0.7rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}

/* === INTEGRATIONS === */
.integrations-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.integration-group {
  padding: 28px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.04), transparent);
  border: 1px solid var(--border-light); border-radius: 16px;
  position: relative; overflow: hidden;
}
.integration-group::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent)); opacity: 0.6;
}
.integration-group h4 {
  font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.integration-group h4::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
}
.integration-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.integration-tags span {
  padding: 8px 16px; font-size: 0.8rem;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 50px; color: var(--text-secondary); font-weight: 500;
  transition: all 0.2s;
}
.integration-tags span:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
  color: var(--primary-light);
}

/* === CTA === */
#cta { padding: 80px 0 100px; }
.cta-box {
  text-align: center; padding: 80px 40px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.06), rgba(59, 130, 246, 0.01));
  border: 1px solid var(--border-light);
  border-radius: 24px; position: relative; overflow: hidden;
}
.cta-box h2 { font-size: 2.8rem; position: relative; z-index: 1; }
.cta-box p { font-size: 1.05rem; color: var(--text-muted); margin: 16px 0 32px; line-height: 1.7; position: relative; z-index: 1; }
.cta-sub { margin-top: 16px; color: var(--text-muted); font-size: 0.85rem; position: relative; z-index: 1; }

/* === FOOTER === */
footer { padding: 24px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-logo {
  font-size: 0.9rem; font-weight: 700; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.footer-logo .logo-icon { width: 24px; height: 24px; font-size: 0.7rem; opacity: 0.7; }
.footer-links { display: flex; gap: 16px; font-size: 0.8rem; color: var(--text-muted); }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .integrations-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .steps-grid { gap: 16px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  #hero h1 { font-size: 2.4rem; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-card { max-width: 100%; }
  .step-card::after { display: none; }
}
@media (max-width: 480px) {
  #hero h1 { font-size: 2rem; }
  section h2 { font-size: 1.8rem; }
}
@media (max-width: 900px) {
  .demo-dual { grid-template-columns: 1fr; gap: 16px; }
  .wa-chat { min-height: 350px; max-height: 420px; }
  .wa-body { min-height: 200px; max-height: 320px; }
  .admin-panel { min-height: 300px; max-height: 400px; }
  .demo-controls { flex-direction: column; gap: 12px; }
  .demo-stats { gap: 12px; flex-wrap: wrap; justify-content: center; font-size: 0.8rem; }
  .wa-bubble { max-width: 90%; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; gap: 12px; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .wa-chat { min-height: 300px; max-height: 380px; }
  .admin-panel { min-height: 280px; max-height: 350px; }
}
