/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, transform 0.1s;
  border: none;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background-color: var(--brand-gold);
  color: var(--brand-espresso);
  padding: 16px 32px;
  font-size: 16px;
}

.btn--primary:hover {
  background-color: var(--brand-gold-hover);
}

.btn--primary-sm {
  background-color: var(--brand-gold);
  color: var(--brand-espresso);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
}

.btn--primary-sm:hover {
  background-color: var(--brand-gold-hover);
}

.btn--primary-lg {
  background-color: var(--brand-gold);
  color: var(--brand-espresso);
  padding: 18px 40px;
  font-size: 18px;
}

.btn--primary-lg:hover {
  background-color: var(--brand-gold-hover);
}

/* Shimmer CTA button */
.btn--shimmer {
  background-color: #E8A230;
  padding: 18px 42px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(232, 162, 48, 0.25);
  animation: btn-pulse 2.5s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--shimmer span {
  background: linear-gradient(
    120deg,
    var(--brand-espresso) 0%,
    var(--brand-espresso) 20%,
    #2e2a24 28%,
    #3a3228 33%,
    #5a4d3a 38%,
    #8a7a5a 43%,
    #c4b488 47%,
    #fdf0d0 49.5%,
    #fffdf6 50%,
    #fdf0d0 50.5%,
    #c4b488 53%,
    #8a7a5a 57%,
    #5a4d3a 62%,
    #3a3228 67%,
    #2e2a24 72%,
    var(--brand-espresso) 80%,
    var(--brand-espresso) 100%
  );
  background-size: 600% 100%;
  background-position: 0% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shimmer 11s ease-in-out infinite;
}

.btn--shimmer:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 162, 48, 0.35);
  animation: none;
}

.btn--shimmer:active {
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid var(--text-secondary);
}

.btn--ghost:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

/* Pain statements */
.pain-statement {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--bg-muted);
  position: relative;
  overflow: hidden;
}

.pain-statement:last-child {
  border-bottom: none;
}

.pain-statement__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--bg-muted);
  flex-shrink: 0;
  min-width: 72px;
}

.pain-statement__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.pain-statement__title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}

.pain-statement__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 640px;
}

.pain-statement__accent {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 48px;
  border-radius: 2px;
}

.pain-statement__accent--gold {
  background-color: var(--brand-gold);
}

.pain-statement__accent--green {
  background-color: var(--status-pass);
}

.pain-statement__accent--terracotta {
  background-color: var(--brand-terracotta);
}

/* Feature rows */
.feature-row {
  display: flex;
  gap: var(--space-2xl);
  align-items: center;
}

.feature-row--reverse {
  flex-direction: row-reverse;
}

.feature-row__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-row__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(240, 165, 0, 0.2);
}

.feature-row__title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.feature-row__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.feature-row__image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--bg-muted);
  min-height: 360px;
  box-shadow: 0 8px 32px rgba(30, 23, 18, 0.08), 0 2px 8px rgba(30, 23, 18, 0.04);
}

.feature-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Quote cards */
.quote-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-card__text {
  font-size: 16px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
}

.quote-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.quote-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-muted);
}

.quote-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quote-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.quote-card__role {
  font-size: 13px;
  color: var(--text-muted);
}

/* Stat items */
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat__value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-gold);
}

.stat__label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-on-dark-muted);
}
