/* Sabre Receptionist - Rich Aesthetics (Dark Theme default) */
:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --primary-light: #8b5cf6;
  --accent: #10b981;
  --accent-hover: #059669;
  --danger: #ef4444;
  --warning: #f59e0b;
  --bg-dark: #0f0f1a;
  --bg-darker: #080811;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --glass-bg: rgba(30,30,46,0.5);
  --glass-border: rgba(255,255,255,0.08);
  --brand-red: #ef4444;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 15, 26, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-image {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #fff, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.desktop-nav {
  display: flex;
  gap: 2rem;
}
.desktop-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.desktop-nav a:hover {
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(124, 58, 237, 0.39);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}
.btn-large {
  padding: 0.8rem 2rem;
  font-size: 1.125rem;
}
.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.875rem;
}
.full-width {
  width: 100%;
}

/* Hero Section */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.ping-container {
  position: relative;
  display: flex;
  height: 12px;
  width: 12px;
}
.bg-brand-red { background-color: var(--brand-red); }
.ping-wave {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.ping-dot {
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  height: 12px;
  width: 12px;
}
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}
.gradient-text {
  background: linear-gradient(135deg, #a78bfa, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-visual .image-wrapper {
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 25px 50px -12px rgba(124, 58, 237, 0.25);
  animation: float 6s ease-in-out infinite;
}
.hero-image {
  width: 100%;
  border-radius: 16px;
  display: block;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Trust Avatars */
.trust-avatars-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-avatars {
  display: flex;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  margin-left: -12px;
}
.avatar:first-child { margin-left: 0; }
.bg-purple { background: var(--primary); }
.bg-green { background: var(--accent); }
.bg-blue { background: #3b82f6; }
.bg-pink { background: #ec4899; }
.trust-text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
}
.bg-darker {
  background-color: var(--bg-darker);
  max-width: none;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card {
  padding: 2.5rem;
  text-align: left;
  transition: transform 0.3s;
}
.feature-card:hover {
  transform: translateY(-8px);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.currency-select {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: white;
  appearance: none;
  font-family: inherit;
  font-size: 1rem;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 1em;
}
.currency-select option {
  background: var(--bg-darker);
  color: white;
}
.billing-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 12px;
}
.billing-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}
.billing-btn.active {
  background: var(--primary);
  color: white;
}
.discount-badge {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 4px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  padding: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.15);
}
.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.tier-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
}
.currency-symbol { font-size: 1.5rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.period { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.feature-list {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
}

/* Download Card */
.download-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}
.download-icon { font-size: 3rem; }
.download-info h4 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.download-info p { color: var(--text-muted); }

/* Footer */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 4rem 2rem 2rem;
  background: var(--bg-darker);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.contact-info {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact-info h5 {
  color: white;
  margin-bottom: 0.5rem;
}
.link-group h4 { margin-bottom: 1.5rem; }
.link-group a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.link-group a:hover { color: var(--text-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}
.social-links { display: flex; gap: 1rem; }
.social-links a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.social-links a:hover { color: white; }

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-cta { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
  .btn { width: 100%; text-align: center; }
  .trust-avatars-container { justify-content: center; }
  .desktop-nav { display: none; }
  .footer-container { grid-template-columns: 1fr; }
}
