/* 
  MARKETING CSS for Sabre Payroll
  Conforms to standards: Dark Mode / Corporate Tech Palette
*/

:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --accent: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --bg-dark: #0f172a; /* standard dark default for this brand */
  --bg-card: #1e293b;
  --bg-alternate: #0c1220;
  --text-light: #f1f5f9;
  --text-muted: #94a3b8;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }

/* Dev Banner */
.dev-banner {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  color: #000;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  font-size: 13px;
  font-weight: 600;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: fit-content;
}
.dev-banner a { color: #fff; text-decoration: underline; margin: 0 5px; }

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 900;
  padding: 15px 0;
  transition: var(--transition);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 24px;
  color: var(--text-light);
}
.brand-logo { height: 36px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 500; font-size: 16px; transition: color 0.2s; color: var(--text-muted); }
.nav-links a:hover { color: var(--text-light); }
.nav-actions { display: flex; align-items: center; gap: 15px; }
.mobile-toggle { display: none; background: transparent; border: none; color: #fff; font-size: 24px; cursor: pointer; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4); }
.btn-secondary { background: rgba(255,255,255,0.1); color: white; }
.btn-secondary:hover { background: rgba(255,255,255,0.2); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: rgba(124, 58, 237, 0.1); }
.btn-lg { padding: 14px 28px; font-size: 18px; }
.btn-sm { padding: 6px 12px; font-size: 14px; }
.w-full { width: 100%; display: block; }

/* Hero Section */
.hero {
  padding: 120px 20px 80px;
  background: radial-gradient(circle at 50% 10%, rgba(124, 58, 237, 0.15) 0%, var(--bg-dark) 60%);
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-content h1 span {
  background: linear-gradient(90deg, #c4b5fd, #a78bfa, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 500px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 16px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 50px;
  color: #c4b5fd;
  font-weight: 500;
  margin-bottom: 30px;
}
.ping-indicator { position: relative; display: flex; height: 12px; width: 12px; }
.ping-animate {
  position: absolute; display: inline-flex; height: 100%; width: 100%;
  border-radius: 50%; background-color: var(--danger); 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; background-color: #f87171;
}
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }

.hero-cta-group { display: flex; gap: 15px; margin-bottom: 40px; }

.trust-statement { display: flex; align-items: center; gap: 16px; }
.trust-avatars { display: flex; }
.trust-avatars img {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -12px;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-statement span { font-size: 14px; color: var(--text-muted); }

.hero-visual img.dashboard-preview {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
}

/* Statistics */
.statistics { padding: 40px 20px; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); background: var(--bg-card); }
.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  text-align: center;
}
.stat-card h3 { font-size: 36px; color: var(--primary); margin-bottom: 8px; }
.stat-card p { font-size: 16px; color: var(--text-muted); font-weight: 500; }

/* General Sections */
.section-heading { max-width: 600px; margin: 0 auto 60px; text-align: center; }
.section-heading h2 { font-size: 40px; margin-bottom: 16px; }
.section-heading p { font-size: 18px; color: var(--text-muted); }
.features-section, .how-it-works-section, .pricing-section, .resources-section {
  padding: 100px 20px;
}
.alternate-bg { background-color: var(--bg-alternate); }

/* Features Grid */
.features-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(124, 58, 237, 0.4); }
.feature-icon { font-size: 32px; margin-bottom: 20px; display: inline-block; padding: 12px; background: rgba(255,255,255,0.05); border-radius: 12px; }
.feature-card h3 { font-size: 22px; margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); }

/* How It Works Steps */
.steps-container { max-width: 900px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; text-align: center; position: relative; }
.step-card { flex: 1; padding: 0 20px; z-index: 2; position: relative; }
.step-number { width: 64px; height: 64px; background: var(--primary); color: #fff; font-size: 28px; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 0 20px rgba(124, 58, 237, 0.5); }
.step-card h3 { font-size: 22px; margin-bottom: 12px; }
.step-card p { color: var(--text-muted); font-size: 15px; }

/* Pricing */
.pricing-controls { max-width: 600px; margin: 0 auto 50px; display: flex; justify-content: center; gap: 20px; align-items: center; flex-wrap: wrap; }
.billing-toggle { display: flex; background: rgba(255,255,255,0.05); padding: 5px; border-radius: 30px; }
.billing-btn { background: transparent; border: none; padding: 10px 24px; color: var(--text-light); font-weight: 600; border-radius: 25px; cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 8px;}
.billing-btn.active { background: var(--primary); color: white; }
.discount-badge { background: var(--accent); color: white; padding: 2px 8px; border-radius: 12px; font-size: 12px; font-weight: 700; }
.currency-select { background: var(--bg-card); color: var(--text-light); padding: 10px 15px; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; outline: none; cursor: pointer; }

.pricing-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pricing-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 40px; border: 1px solid rgba(255,255,255,0.05); position: relative; display: flex; flex-direction: column; }
.pricing-card.featured { border-color: var(--primary); box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15); transform: translateY(-10px); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 700; color: white; }
.pricing-card h3 { font-size: 24px; margin-bottom: 5px; }
.pricing-target { color: var(--accent); font-weight: 500; font-size: 14px; margin-bottom: 25px; }
.price-display { margin-bottom: 30px; }
.price-display .currency-symbol { font-size: 24px; font-weight: 600; vertical-align: top; }
.price-display .price-val { font-size: 56px; font-weight: 800; line-height: 1; }
.price-display .term { color: var(--text-muted); margin-left: 5px; }
.price-display .per-user { display: block; font-size: 14px; color: var(--text-muted); margin-top: 5px; }
.pricing-features { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.pricing-features li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); position: relative; padding-left: 30px; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

/* Resources */
.resources-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.download-card { display: flex; align-items: center; gap: 20px; background: rgba(255,255,255,0.03); padding: 24px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.05); }
.download-icon { font-size: 40px; background: rgba(255,255,255,0.05); height: 80px; width: 80px; display: flex; align-items: center; justify-content: center; border-radius: 16px; }
.download-info h4 { font-size: 20px; margin-bottom: 5px; }
.download-info p { color: var(--text-muted); margin-bottom: 15px; font-size: 14px; }
.flex-gap-2 { display: flex; gap: 10px; }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.1); padding: 80px 20px 40px; background: #080b12; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.footer-logo { height: 40px; margin-bottom: 20px; }
.footer-brand p { color: var(--text-muted); margin-bottom: 15px; font-size: 15px; }
.footer-brand .copyright { font-size: 14px; margin-top: 30px; opacity: 0.6; }
.footer-contact h4, .footer-digital h4 { color: #fff; margin-bottom: 20px; font-size: 18px; }
.footer-contact ul, .footer-digital ul { list-style: none; color: var(--text-muted); font-size: 15px; }
.footer-contact li, .footer-digital li { margin-bottom: 12px; }
.footer-digital p { font-size: 14px; color: var(--text-muted); }

/* Responsive Base */
@media (max-width: 992px) {
  .hero-container, .features-grid, .pricing-grid, .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .desktop-only { display: none; }
  .mobile-toggle { display: block; }
  .steps-container { flex-direction: column; gap: 40px; }
}
