/* =============================================
   MENNDS MARKETING — CAPTURE PAGE STYLES
   ============================================= */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #FF5500;
  --orange-light: #FF7733;
  --orange-dim:   rgba(255, 85, 0, 0.12);
  --orange-glow:  rgba(255, 85, 0, 0.25);
  --bg:           #0A0806;
  --bg-card:      #111009;
  --bg-card2:     #161410;
  --border:       rgba(255, 85, 0, 0.15);
  --text:         #F0EBE3;
  --text-muted:   rgba(240, 235, 227, 0.55);
  --radius:       14px;
  --radius-lg:    20px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #cc4400);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255, 85, 0, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 85, 0, 0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-lg { padding: 15px 32px; font-size: 1rem; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,85,0,0.15);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-cta { margin-left: 16px; padding: 10px 20px; font-size: 0.875rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: var(--transition);
}

/* --- HERO --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  overflow: hidden;
  background:
    url('hero-bg.png') center center / cover no-repeat,
    var(--bg);
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,6,0.6) 0%,
    rgba(10,8,6,0.2) 40%,
    rgba(10,8,6,0.55) 80%,
    rgba(10,8,6,1) 100%
  );
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  z-index: 0;
  animation: pulse-glow 6s ease-in-out infinite alternate;
}
.hero-glow--left  { background: var(--orange); top: -100px; left: -200px; }
.hero-glow--right { background: #cc3300; bottom: -150px; right: -200px; animation-delay: -3s; }

@keyframes pulse-glow {
  from { opacity: 0.15; transform: scale(1); }
  to   { opacity: 0.28; transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,85,0,0.12);
  border: 1px solid rgba(255,85,0,0.3);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-title--accent {
  background: linear-gradient(90deg, var(--orange), #FF8855);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-subtitle strong { color: var(--orange-light); font-weight: 600; }
.hero-subtitle em { font-style: normal; color: var(--text); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
}
.stat-plus { color: var(--orange); }
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,85,0,0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: bounce-dot 1.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-6px); }
}
@keyframes bounce-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

/* --- SECTIONS --- */
.section {
  padding: 100px 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--orange-dim);
  border-radius: 999px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.accent {
  background: linear-gradient(90deg, var(--orange), #FF8855);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* --- BENEFITS --- */
.benefits-section { text-align: center; }
.benefits-section .section-subtitle { margin-left: auto; margin-right: auto; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(255,85,0,0.06), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.benefit-card:hover {
  border-color: rgba(255,85,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,85,0,0.1);
}
.benefit-card:hover::before { opacity: 1; }

.benefit-icon {
  width: 56px; height: 56px;
  background: var(--orange-dim);
  border: 1px solid rgba(255,85,0,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
}
.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.benefit-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- TICKER --- */
.proof-section { padding: 0; overflow: hidden; }
.proof-ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  padding: 18px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-track span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  transition: var(--transition);
}
.testimonial-card.highlight {
  border-color: rgba(255,85,0,0.4);
  background: linear-gradient(135deg, var(--bg-card2), rgba(255,85,0,0.04));
  box-shadow: 0 0 0 1px rgba(255,85,0,0.1), 0 8px 32px rgba(0,0,0,0.3);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.stars {
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--orange), #993300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
}
.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- CAPTURE SECTION --- */
.capture-section {
  position: relative;
  overflow: hidden;
}
.capture-glow {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,85,0,0.12) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}
.capture-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.capture-info .section-title { margin-bottom: 20px; }
.capture-info .section-subtitle { margin-bottom: 32px; max-width: 100%; }

.capture-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.capture-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

/* FORM */
.capture-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,85,0,0.05);
}
.capture-form-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.form-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.capture-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--orange);
  background: rgba(255,85,0,0.05);
  box-shadow: 0 0 0 3px rgba(255,85,0,0.12);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23999' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(255,255,255,0.04);
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: #1a1512; color: var(--text); }

.form-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}
.form-success.show { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h4 { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* --- FOOTER --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg-card);
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand p { font-size: 0.8rem; color: var(--text-muted); }
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--border);
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .capture-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .capture-info { text-align: center; }
  .capture-info .section-subtitle { margin-left: auto; margin-right: auto; }
  .capture-checklist { align-items: center; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-container { justify-content: space-between; }

  .hero-section { padding-top: 120px; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }

  .benefits-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .section { padding: 70px 0; }
  .capture-form-box { padding: 28px 22px; }

  .footer-content { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 320px; justify-content: center; }
}
