/* ===================================
   Pacholok Method — Landing Page LP
   method.fabriciopacholok.com
   =================================== */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ===== BASE ===== */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #080808;
  color: #ffffff;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ===== VARIABLES ===== */
:root {
  --gold:    #d4a843;
  --gold-lt: #e8bc54;
  --red:     #e63946;
  --bg:      #080808;
  --bg-alt:  #0d0d0d;
  --card:    #111111;
  --border:  rgba(255,255,255,0.08);
  --muted:   #999999;
  --wrap:    860px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(30px, 5.5vw, 52px); font-weight: 900; line-height: 1.15; letter-spacing: -0.025em; }
h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 800; line-height: 1.2;  letter-spacing: -0.02em;  }
h3 { font-size: clamp(16px, 2.2vw, 19px); font-weight: 700; line-height: 1.3; }
p  { color: #cccccc; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: #ffffff; font-weight: 700; }
.accent { color: var(--gold); }

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section.coach,
.section.social-proof,
.section.faq     { background: var(--bg-alt); }

@media (max-width: 480px) { .section { padding: 60px 0; } }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.logo {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}
.logo span { color: var(--gold); }

/* ===== CTA BUTTON ===== */
.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: #000000;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 5px;
  transition: background 0.18s, transform 0.1s;
  line-height: 1;
  cursor: pointer;
}
.btn-cta:hover  { background: var(--gold-lt); transform: translateY(-2px); }
.btn-cta:active { transform: translateY(0); }

.btn-cta--large {
  font-size: 15px;
  padding: 22px 40px;
  display: block;
  text-align: center;
  max-width: 540px;
  margin: 0 auto 16px;
  border-radius: 6px;
}

.cta-sub {
  text-align: center;
  font-size: 12px;
  color: #666666;
  letter-spacing: 0.06em;
  margin-top: 12px !important;
}
.cta-inline { text-align: center; margin-top: 40px; }

/* ===== HERO ===== */
.hero {
  padding: 88px 0 104px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #1c1300 0%, var(--bg) 65%);
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-headline { color: #ffffff; margin-bottom: 26px; }
.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: #aaaaaa;
  max-width: 580px;
  margin: 0 auto 44px;
}
.hero-sub strong { color: #ffffff; }

@media (max-width: 480px) { .hero { padding: 60px 0 80px; } }

/* ===== MARQUEE ===== */
.marquee-wrap {
  overflow: hidden;
  background: var(--gold);
  padding: 13px 0;
}
.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: scroll-marquee 24s linear infinite;
  align-items: center;
}
.marquee-track span {
  color: #000000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track .dot { opacity: 0.35; letter-spacing: 0; }

@keyframes scroll-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PROBLEM ===== */
.problem h2 { margin-bottom: 28px; }
.problem .lead {
  font-size: clamp(17px, 2.5vw, 20px);
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 14px;
}
.pain-list {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: #cccccc;
  padding: 14px 18px;
  background: rgba(230,57,70,0.07);
  border-left: 3px solid var(--red);
  border-radius: 0 6px 6px 0;
}
.x { color: var(--red); font-weight: 900; font-size: 17px; flex-shrink: 0; line-height: 1.5; }

/* ===== COACH ===== */
.coach h2 { margin-bottom: 28px; }
.coach-story p { font-size: 17px; line-height: 1.8; margin-bottom: 14px; }

.athletes-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin: 36px 0;
}
@media (max-width: 540px) { .athletes-grid { grid-template-columns: 1fr; } }

.athlete-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 24px 20px;
  border-radius: 6px;
  text-align: center;
}
.athlete-name  { font-size: 17px; font-weight: 800; color: #ffffff; margin-bottom: 5px; }
.athlete-title { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.03em; }

.coach-close {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-top: 8px;
}

/* ===== FEATURES ===== */
.product h2 { margin-bottom: 40px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
}
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card--wide { grid-column: 1 / -1; }

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-radius: 8px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(212,168,67,0.28); }
.feature-icon { font-size: 26px; margin-bottom: 12px; line-height: 1; }
.feature-card h3 { color: #ffffff; margin-bottom: 8px; }
.feature-card p  { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ===== SOCIAL PROOF ===== */
.member-counter {
  display: flex;
  align-items: baseline;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.counter-number { font-size: clamp(48px, 9vw, 80px); font-weight: 900; color: var(--gold); line-height: 1; }
.counter-label  { font-size: clamp(14px, 2vw, 18px); color: #888888; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-text {
  font-size: 14px;
  color: #cccccc;
  font-style: italic;
  line-height: 1.75;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 38px; height: 38px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 13px; color: #ffffff; font-weight: 700; }
.testimonial-author span  { font-size: 12px; color: #666666; }

/* ===== PRICING ===== */
.pricing h2 { margin-bottom: 24px; }
.pricing-context { font-size: 17px; }

.price-box {
  background: var(--card);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: 12px;
  padding: 44px 36px;
  text-align: center;
  margin-top: 44px;
}
@media (max-width: 480px) { .price-box { padding: 32px 20px; } }

.price-original { font-size: 13px; color: #555555; margin-bottom: 8px; }
.price-current  {
  font-size: clamp(52px, 10vw, 80px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.price-note {
  font-size: 12px;
  color: #666666;
  margin-bottom: 36px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-methods { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.payment-label   { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: #555555; margin-bottom: 10px; }
.payment-icons   { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 14px; }
.payment-badge {
  font-size: 12px; color: #aaaaaa;
  background: rgba(255,255,255,0.04);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.payment-secure { font-size: 12px; color: #555555; }

/* ===== GUARANTEE ===== */
.guarantee {
  background: linear-gradient(160deg, #080808 0%, #0a0d06 100%);
}
.guarantee-box {
  max-width: 580px;
  margin: 0 auto;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 52px 44px;
  text-align: center;
}
@media (max-width: 480px) { .guarantee-box { padding: 36px 24px; } }

.guarantee-icon { font-size: 56px; margin-bottom: 18px; line-height: 1; display: block; }
.guarantee-box h2 { font-size: clamp(20px, 3.5vw, 28px); margin-bottom: 20px; }
.guarantee-box p  { font-size: 16px; color: #bbbbbb; line-height: 1.75; margin-bottom: 12px; }
.guarantee-bold   { font-size: 17px !important; color: #ffffff !important; margin-top: 8px; }

/* ===== FAQ ===== */
.faq h2 { margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 7px;
  overflow: hidden;
  margin-bottom: 4px;
}
.faq-question {
  width: 100%;
  background: var(--card);
  color: #ffffff;
  border: none;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.18s;
  line-height: 1.4;
}
.faq-question:hover { background: #181818; }
.faq-icon {
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.32s ease;
  background: #0e0e0e;
}
.faq-item.open .faq-answer { max-height: 320px; padding: 20px 24px; }
.faq-answer p { font-size: 15px; color: #aaaaaa; line-height: 1.75; margin: 0; }

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  padding: 104px 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, #181200 0%, var(--bg) 70%);
}
.final-cta h2 { max-width: 580px; margin: 0 auto 28px; }
.final-cta p  { font-size: 18px; max-width: 480px; margin: 0 auto 14px; }
.final-strong { font-size: 22px !important; color: #ffffff !important; margin-bottom: 44px !important; }

@media (max-width: 480px) { .final-cta { padding: 72px 0; } }

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
}
.site-footer p   { font-size: 13px; color: #444444; margin-bottom: 6px; }
.site-footer a   { color: #555555; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
