/* GuestPilot — Styles
 * Vibe: Dark authority meets warm local business.
 * Fonts: Fraunces (display) + Satoshi (body)
 * Colors: Deep charcoal bg, warm amber accent, off-white text
 */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;0,9..144,900;1,9..144,400&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&display=swap');

:root {
  --bg: #0e0d0b;
  --bg2: #161410;
  --bg3: #1d1b17;
  --surface: #242018;
  --border: rgba(255,255,255,0.08);
  --text: #f0ece4;
  --text-muted: #9c9488;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-glow: rgba(245,158,11,0.18);
  --green: #22c55e;
  --red: #ef4444;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

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

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
}

/* ── Layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(14,13,11,0.85);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: #0e0d0b;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 820px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #0e0d0b;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.3);
}

.btn-primary svg { flex-shrink: 0; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--text); }

/* ── Stars Before/After ── */
.stars-transform {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  width: fit-content;
  flex-wrap: wrap;
}

.star-block {
  text-align: center;
}

.star-row {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
  justify-content: center;
}

.star {
  font-size: 1.4rem;
}

.star.full { color: var(--accent); }
.star.half { color: var(--accent); opacity: 0.5; }
.star.empty { color: var(--surface); filter: brightness(3); opacity: 0.3; }

.star-label {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: 'Fraunces', serif;
  color: var(--text);
}

.star-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.stars-arrow {
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
}

.stars-cta-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.time-badge {
  display: inline-block;
  background: rgba(34,197,94,0.12);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ── Pain Section ── */
.pain {
  padding: 80px 0 60px;
  border-top: 1px solid var(--border);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 640px) {
  .pain-grid { grid-template-columns: 1fr; }
}

.pain-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.pain-card.red-card {
  border-color: rgba(239,68,68,0.2);
  background: rgba(239,68,68,0.04);
}

.pain-card-icon {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.pain-card h3 {
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Section Headings ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
}

/* ── How It Works ── */
.how {
  padding: 100px 0;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  opacity: 0.3;
}

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  position: relative;
}

.step-num {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px var(--accent-glow);
}

.step-content { flex: 1; padding-top: 8px; }

.step-emoji {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.step-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 500px;
}

.step-detail {
  margin-top: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 440px;
}

.step-detail strong { color: var(--text); }

/* ── Private vs Public ── */
.filter-visual {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 640px) {
  .filter-visual { grid-template-columns: 1fr; }
}

.filter-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.filter-card.positive {
  border-color: rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.05);
}

.filter-card.negative {
  border-color: rgba(239,68,68,0.2);
  background: rgba(239,68,68,0.03);
}

.filter-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.filter-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.filter-dot.green { background: var(--green); }
.filter-dot.red { background: var(--red); }

.filter-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-badge.green {
  background: rgba(34,197,94,0.15);
  color: var(--green);
}

.filter-badge.red {
  background: rgba(239,68,68,0.12);
  color: var(--red);
}

.filter-destination {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.filter-destination strong { color: var(--text); }

/* ── Social Proof ── */
.proof {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.proof-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.proof-card:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-2px);
}

.proof-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--accent);
}

.proof-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.proof-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid var(--border);
}

.proof-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

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

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  display: block;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Pricing ── */
.pricing {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.pricing-card {
  max-width: 480px;
  margin: 60px auto 0;
  background: var(--surface);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  box-shadow: 0 0 80px rgba(245,158,11,0.08);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0e0d0b;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  justify-content: center;
  margin: 20px 0 8px;
}

.pricing-currency {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-amount {
  font-family: 'Fraunces', serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  color: var(--text-muted);
  align-self: flex-end;
  padding-bottom: 8px;
}

.pricing-commitment {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.pricing-check {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta {
  display: block;
  background: var(--accent);
  color: #0e0d0b;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px var(--accent-glow);
  margin-bottom: 16px;
}

.pricing-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.3);
}

.pricing-guarantee {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── FAQ ── */
.faq {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.faq-list {
  margin-top: 50px;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.25s;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ── Final CTA ── */
.final-cta {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ── Footer ── */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { padding: 110px 0 70px; }
  .how-steps::before { left: 24px; }
  .step-num { width: 48px; height: 48px; font-size: 1.2rem; }
  .pricing-card { padding: 36px 24px; }
  .stats-row { gap: 24px; }
  .nav-inner { padding: 14px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .stars-transform { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary { width: 100%; justify-content: center; }
  .pricing-amount { font-size: 3.5rem; }
}
