.models-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.model-card {
  min-width: 0;
  background: hsl(var(--card));
}

.model-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.model-card::after {
  content: attr(data-label);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.75rem 0.75rem 0.65rem;
  background: linear-gradient(transparent, hsl(var(--background) / 0.96));
  color: hsl(var(--foreground));
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: left;
  text-transform: uppercase;
}

.journey-cta {
  margin: 2rem auto 0;
  max-width: 42rem;
  text-align: center;
}

.journey-cta p {
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
  font-size: 1rem;
  line-height: 1.6;
}

.journey-cta-button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  padding: 0.85rem 1.5rem;
  color: hsl(var(--primary-foreground));
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1.5rem;
}

.hero-eyebrow {
  margin-bottom: 0.75rem;
  color: hsl(var(--primary));
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-promise {
  max-width: 62rem;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.35rem, 6vw, 4.5rem) !important;
  line-height: 1.03 !important;
  text-wrap: balance;
}

.contents-gallery {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid hsl(var(--border));
  text-align: center;
}

.contents-gallery > h3,
.bonus-section h2 {
  color: hsl(var(--primary));
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contents-gallery > p,
.bonus-section-inner > p {
  max-width: 44rem;
  margin: 0.75rem auto 2rem;
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  line-height: 1.6;
}

.bonus-section {
  padding: 4rem 1rem;
}

.bonus-section-inner {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.offer-guarantee {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid hsl(var(--border));
}

.journey-steps-section {
  padding: 4rem 1rem;
}

.journey-steps-inner {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.journey-steps-inner h2 {
  color: hsl(var(--primary));
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.journey-steps-intro {
  max-width: 42rem;
  margin: 0.75rem auto 2rem;
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
}

.journey-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.journey-steps li {
  display: grid;
  gap: 0.35rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1.1rem;
  background: hsl(var(--card));
}

.journey-steps strong {
  color: hsl(var(--primary));
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.journey-steps span {
  color: hsl(var(--foreground));
  font-size: 1rem;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .models-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .model-image {
    aspect-ratio: 1 / 1;
  }

  .journey-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}
