/* landing-page/css/method.css */
#metodo {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Full-bleed background image */
.method__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.method__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.12) brightness(0.88) saturate(0.7);
}

.method__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.9) 60%, rgba(10,10,10,1) 100%);
}

/* Content sits above overlay */
.method__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-py) var(--section-px);
}

.method__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 16px;
  text-align: center;
}

.method__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 80px;
}

/* Horizontal progress timeline */
.method__timeline-wrap {
  position: relative;
}

.method__progress-line {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(245, 197, 24, 0.3);
}

.method__horizontal-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.method__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.method__step-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.4);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.method__step:hover .method__step-badge {
  transform: scale(1.1);
}

.method__step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

.method__step-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 260px;
}

/* Beyond section remains as a card below */
.method__beyond {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(245, 197, 24, 0.3);
  text-align: center;
}

.method__beyond-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.method__beyond-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: block;
}

.method__beyond-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.method__beyond-sep {
  color: var(--color-border);
}
