/* ==========================================================================
   livepiloto.shop - Landing Page Stylesheet (Clean Light Theme)
   Design System: Modern White & Clean Design with TikTok Vibrant Accents
   ========================================================================== */

:root {
  --bg-main: #ffffff;
  --bg-card: #f8fafc;
  --bg-card-hover: #f1f5f9;
  --bg-alt: #f1f5f9;
  
  --border-color: #e2e8f0;
  --border-highlight: rgba(254, 44, 85, 0.4);
  
  --primary-pink: #fe2c55;
  --primary-cyan: #00b4d8;
  --accent-purple: #7b2cbf;
  --accent-gold: #d97706;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #475569;
  
  --gradient-brand: linear-gradient(135deg, #fe2c55 0%, #7b2cbf 50%, #00b4d8 100%);
  --gradient-btn: linear-gradient(135deg, #fe2c55 0%, #ff4d73 100%);
  --gradient-btn-hover: linear-gradient(135deg, #ff4d73 0%, #fe2c55 100%);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-neon: 0 10px 30px rgba(254, 44, 85, 0.25);
  
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  background-color: #ffffff;
  color: var(--text-main);
}

/* Typography & Utilities */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cyan {
  color: var(--primary-cyan);
}

.text-pink {
  color: var(--primary-pink);
}

.text-gold {
  color: var(--accent-gold);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: var(--shadow-card);
}

.btn-primary {
  background: var(--gradient-btn);
  color: #ffffff;
  box-shadow: var(--shadow-neon);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(254, 44, 85, 0.4);
}

.btn-pulse {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(254, 44, 85, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(254, 44, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(254, 44, 85, 0); }
}

/* Fixed Header & 15-Min Timer */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border-color);
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.logo span {
  color: var(--primary-pink);
}

.logo-badge {
  background: rgba(254, 44, 85, 0.1);
  color: var(--primary-pink);
  border: 1px solid rgba(254, 44, 85, 0.3);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
}

/* Fixed 15-Min Header Timer */
.header-timer-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff0f3;
  border: 1.5px solid rgba(254, 44, 85, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-pink);
}

.timer-clock {
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 900;
  background: var(--primary-pink);
  color: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  padding: 70px 0 60px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(254, 44, 85, 0.05), transparent 70%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.4rem;
  max-width: 950px;
  margin: 0 auto 24px;
  color: #0f172a;
}

.hero-subheadline {
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 40px;
}

.hero-mockup-wrapper {
  max-width: 920px;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-mockup-wrapper img {
  width: 100%;
  display: block;
}

/* Features Grid */
.features {
  padding: 80px 0;
  background-color: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: var(--primary-pink);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #fff0f3;
  border: 1px solid rgba(254, 44, 85, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Bonus Section */
.bonus-section {
  padding: 80px 0;
}

.bonus-box {
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
  border: 2px solid var(--primary-pink);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.bonus-badge {
  display: inline-block;
  background: var(--primary-pink);
  color: #ffffff;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.bonus-content h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.bonus-content ul {
  list-style: none;
  margin: 20px 0;
}

.bonus-content li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.bonus-content li svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-pink);
}

.bonus-image img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

/* Pricing Section */
.pricing {
  padding: 90px 0;
  background-color: var(--bg-alt);
  text-align: center;
}

.pricing-card {
  max-width: 550px;
  margin: 0 auto;
  background: #ffffff;
  border: 3px solid var(--primary-pink);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  position: relative;
  box-shadow: var(--shadow-neon);
}

.pricing-ribbon {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-pink);
  color: #fff;
  padding: 6px 24px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-strike {
  font-size: 1.4rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-top: 15px;
}

.price-main {
  font-size: 4rem;
  font-weight: 900;
  color: var(--text-main);
  margin: 10px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.price-main span {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 30px 0;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--text-main);
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-pink);
  flex-shrink: 0;
}

/* Guarantee & FAQ */
.guarantee {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 850px;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow-sm);
}

.guarantee-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.faq {
  padding: 80px 0;
  background-color: #ffffff;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 1rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-toggle {
  transition: transform 0.3s ease;
  color: var(--primary-pink);
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  background: var(--bg-alt);
}

/* Social Proof Notification Toast */
.social-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-toast.show {
  transform: translateY(0);
}

.toast-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
}

.toast-text {
  font-size: 0.9rem;
}

.toast-text strong {
  color: var(--text-main);
  display: block;
}

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

/* Responsive */
@media (max-width: 900px) {
  .nav-content { flex-direction: column; gap: 12px; }
  .hero h1 { font-size: 2.4rem; }
  .bonus-box { grid-template-columns: 1fr; text-align: center; padding: 30px; }
  .guarantee { flex-direction: column; text-align: center; }
  .price-main { font-size: 3rem; }
}
