.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--maroon);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 2.3rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(156, 43, 42, 0.32);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.btn-primary:active {
  background: var(--maroon-dark);
}

.fab {
  position: fixed;
  z-index: 40;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(74, 53, 32, 0.3);
}

.fab-ticket {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.fab-ticket img {
  width: 27px;
  height: auto;
}

.fab-top {
  bottom: 22px;
  right: 18px;
  width: 48px;
  height: 48px;
  background: var(--maroon-dark);
}

.fab-top svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.fab-top[hidden] {
  display: none;
}

.detail-card {
  flex: 0 0 86%;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  scroll-snap-align: center;
}

.detail-card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.detail-card p {
  text-align: center;
  padding: 1.5rem 1rem 1.8rem;
  color: var(--brown-text);
  font-size: 1.05rem;
}

.stat-card {
  background: var(--card-tan);
  border-radius: 22px;
  padding: 2rem 1.5rem 1.7rem;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

.stat-icon {
  height: 96px;
  width: auto;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.stat-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--brown-head);
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown-text);
  margin-top: 0.35rem;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(156, 43, 42, 0.45);
  border-radius: 999px;
  padding: 0.32rem 0.32rem 0.32rem 1.4rem;
  max-width: 420px;
  margin: 1.4rem auto 0;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: none;
  color: var(--brown-text);
  font-size: 1rem;
  padding: 0.75rem 0;
}

.newsletter-form button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.newsletter-form button svg {
  width: 18px;
  height: 18px;
}

.funnel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1rem 0.6rem 0.85rem;
}

.funnel-steps {
  display: flex;
  list-style: none;
}

.funnel-step {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.funnel-step::before {
  content: "";
  position: absolute;
  top: 9px;
  right: 50%;
  width: 100%;
  height: 2px;
  background: var(--line);
}

.funnel-step:first-child::before {
  display: none;
}

.funnel-step.is-done::before {
  background: var(--maroon);
}

.funnel-step.is-active::before {
  background: var(--maroon);
}

.funnel-dot {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #cdbfa6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
}

.funnel-step.is-done .funnel-dot {
  background: var(--maroon);
}

.funnel-step.is-active .funnel-dot {
  background: var(--maroon);
  box-shadow: 0 0 0 4px rgba(156, 43, 42, 0.16);
}

.funnel-label {
  margin-top: 0.5rem;
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--brown-text);
}

.funnel-step.is-active .funnel-label {
  color: var(--brown-head);
  font-weight: 700;
}
