/* AIReachList - Custom Styles */

:root {
  --beacon-purple: #534AB7;
  --beacon-purple-light: #EEEDFE;
  --beacon-purple-dark: #3C3489;
  --beacon-blue: #185FA5;
  --beacon-teal: #0F6E56;
  --beacon-amber: #BA7517;
  --beacon-coral: #D85A30;
  --beacon-gray: #5F5E5A;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
}

.nav-link {
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--beacon-purple); }

/* Buttons */
.btn-primary {
  background: var(--beacon-purple);
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--beacon-purple-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: var(--beacon-purple);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 8px;
  border: 1.5px solid var(--beacon-purple);
  transition: all 0.15s;
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--beacon-purple-light);
}

.btn-ghost {
  color: #4b5563;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
  background: transparent;
}
.btn-ghost:hover { background: #f3f4f6; }

/* Hero */
.hero-gradient {
  background: linear-gradient(180deg, #EEEDFE 0%, #ffffff 100%);
}

/* Cards */
.card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.2s;
}
.card:hover {
  border-color: var(--beacon-purple);
  box-shadow: 0 4px 20px rgba(83,74,183,0.1);
}

.pricing-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.2s;
  position: relative;
}
.pricing-card.featured {
  border: 2px solid var(--beacon-purple);
  box-shadow: 0 8px 30px rgba(83,74,183,0.12);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.badge-purple { background: var(--beacon-purple-light); color: var(--beacon-purple-dark); }
.badge-green { background: #E1F5EE; color: #085041; }
.badge-blue { background: #E6F1FB; color: #0C447C; }
.badge-amber { background: #FAEEDA; color: #633806; }
.badge-coral { background: #FAECE7; color: #712B13; }

/* Feature icon */
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

/* Directory table */
.dir-table {
  width: 100%;
  border-collapse: collapse;
}
.dir-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
}
.dir-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
}
.dir-table tr:hover { background: #f9fafb; }

/* Tracker */
.tracker-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
}
.tracker-step.done { background: #E1F5EE; border-color: #5DCAA5; }
.tracker-step.active { background: #E6F1FB; border-color: #85B7EB; }
.tracker-step.pending { background: #f9fafb; }

.tracker-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.tracker-dot.done { background: #1D9E75; color: white; }
.tracker-dot.active { background: #378ADD; color: white; }
.tracker-dot.pending { background: #d1d5db; color: #6b7280; }

/* Stats */
.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--beacon-purple-dark);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}

/* Tool panel */
.tool-panel {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
}

.tool-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.15s;
}
.tool-input:focus {
  outline: none;
  border-color: var(--beacon-purple);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 0;
  cursor: pointer;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 12px;
}

/* Footer */
.footer {
  background: #111827;
  color: #9ca3af;
  padding: 48px 0 24px;
}
.footer a { color: #9ca3af; text-decoration: none; font-size: 14px; }
.footer a:hover { color: white; }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.lang-toggle button {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  background: white;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s;
}
.lang-toggle button.active {
  background: var(--beacon-purple);
  color: white;
}

/* Mobile menu */
.mobile-menu { display: none; }
.mobile-menu.open { display: block; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.5s ease forwards; }

/* Logo */
.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--beacon-purple-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--beacon-purple);
  display: flex;
  align-items: center;
  justify-content: center;
}
