/* ===== HOME PAGE SPECIFIC STYLES ===== */

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/dustin-victory.jpeg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(4,2,4,0.92) 0%,
    rgba(4,2,4,0.78) 45%,
    rgba(4,2,4,0.45) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
  max-width: 700px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.hero-sub-text {
  font-size: 1.1rem;
  color: rgba(232,232,232,0.8);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  width: fit-content;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px 0 0;
}

.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  margin: 0 32px 0 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 5%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.4;
}

.hero-scroll-hint span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.scroll-line {
  width: 40px; height: 1px;
  background: var(--white);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  51% { transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ---- PROBLEM SECTION ---- */
.section-problem {
  background: var(--charcoal);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.pain-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(232,232,232,0.75);
}

.pain-icon {
  color: #ff4444;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pain-result {
  background: var(--charcoal-3);
  border-left: 3px solid var(--orange);
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
}

.pain-result p { color: var(--text-muted); font-size: 0.92rem; }

/* ---- SYSTEM SECTION ---- */
.section-system {
  background: var(--black);
}

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

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.pillar {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 6px 6px;
  padding: 40px 28px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(204,17,34,0.15);
}

.pillar-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(204,17,34,0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.pillar h3 { margin-bottom: 12px; }
.pillar p  { color: var(--text-muted); font-size: 0.92rem; }

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}

.pillar-tags span {
  background: rgba(204,17,34,0.12);
  border: 1px solid rgba(204,17,34,0.25);
  color: var(--orange);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- RESULTS SECTION ---- */
.section-results { background: var(--charcoal); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.result-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.result-card:hover { transform: translateY(-4px); }

.result-photo {
  height: 260px;
  background: var(--charcoal-3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.result-card:hover .result-photo img { transform: scale(1.03); }

.ph-photo {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px dashed rgba(255,255,255,0.1);
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  margin: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.result-info { padding: 20px 20px 24px; }
.result-info h4 { margin-bottom: 4px; }
.result-stat { font-family: 'Oswald', sans-serif; font-size: 1.05rem; margin-bottom: 10px; }
.result-info p { color: var(--text-muted); font-size: 0.88rem; font-style: italic; }

/* Testimonial Slider */
.testimonial-section { margin-top: 16px; }

.testimonial-wrapper {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 48px 56px;
  text-align: center;
}

.t-quote {
  font-family: 'Oswald', sans-serif;
  font-size: 5rem;
  color: var(--orange);
  line-height: 0.7;
  margin-bottom: 16px;
  opacity: 0.5;
}

.testimonial-slide p {
  font-size: 1.15rem;
  color: var(--text);
  font-style: italic;
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

.t-author {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.t-author strong { color: var(--orange); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 0 28px;
}

.slider-btn {
  width: 40px; height: 40px;
  background: var(--charcoal-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover { background: var(--orange); border-color: var(--orange); }

.slider-dots { display: flex; gap: 8px; }

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dot.active { background: var(--orange); }

/* ---- STORY SECTION ---- */
.section-story { background: var(--black); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}

.dustin-portrait {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.dustin-portrait img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ph-sub { font-size: 0.72rem; color: var(--orange); opacity: 0.7; }

.story-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  padding: 14px 20px;
  border-radius: 4px;
  margin-top: 16px;
}

.story-badge span:first-child { font-size: 1.5rem; }
.story-badge div { display: flex; flex-direction: column; }
.story-badge strong { font-family: 'Oswald', sans-serif; font-size: 0.95rem; color: var(--white); text-transform: uppercase; letter-spacing: 0.05em; }
.story-badge span:last-child { font-size: 0.78rem; color: rgba(255,255,255,0.75); }

.story-content p { color: var(--text-muted); }

.story-milestones {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.milestone {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.m-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.milestone div { display: flex; flex-direction: column; gap: 2px; }
.milestone strong { font-family: 'Oswald', sans-serif; font-size: 0.95rem; color: var(--white); letter-spacing: 0.04em; }
.milestone span { font-size: 0.82rem; color: var(--text-muted); }

/* ---- LEAD MAGNET ---- */
.section-lead { background: var(--charcoal); }

.lead-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--charcoal-2);
  border: 1px solid rgba(204,17,34,0.3);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  padding: 48px 56px;
  flex-wrap: wrap;
}

.lead-left h2 { margin-bottom: 10px; }
.lead-left p  { color: var(--text-muted); max-width: 440px; }

/* ---- FINAL CTA ---- */
.section-final-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #100805 0%, #0d0408 100%);
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(204,17,34,0.15) 0%, transparent 70%);
}

.section-final-cta .container { position: relative; z-index: 1; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .problem-grid  { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid  { grid-template-columns: 1fr; }
  .results-grid  { grid-template-columns: 1fr 1fr; }
  .story-grid    { grid-template-columns: 1fr; }
  .lead-box      { flex-direction: column; padding: 36px; }
  .hero-stats    { flex-wrap: wrap; gap: 20px; }
  .stat-divider  { display: none; }
  .testimonial-slide { padding: 36px 28px; }
}

@media (max-width: 600px) {
  .results-grid  { grid-template-columns: 1fr; }
  .hero-content  { padding: 120px 0 80px; }
  .hero-btns     { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
}
