/* =========================================
   LETI — Bepul page styles
   Brand: #8B0F3E
   ========================================= */

/* =========================================
   PAGE HERO
   ========================================= */
.bp-hero {
  position: relative;
  padding: 140px 0 90px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  overflow: hidden;
}
.bp-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 77, 126, 0.30), transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(255, 214, 229, 0.18), transparent 50%);
  pointer-events: none;
}
.bp-hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.bp-hero__shape--1 {
  width: 380px; height: 380px;
  top: -120px; right: -80px;
  background: rgba(255, 77, 126, 0.35);
}
.bp-hero__shape--2 {
  width: 320px; height: 320px;
  bottom: -120px; left: -60px;
  background: rgba(255, 214, 229, 0.18);
}
.bp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.bp-hero__inner .section-tag { margin-bottom: 16px; }

.bp-hero__title {
  font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
}
.bp-hero__title-hl {
  background: linear-gradient(120deg, #FFD6E5, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bp-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin-bottom: 36px;
}

.bp-hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.bp-hero__hl {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}
.bp-hero__hl-icon {
  font-size: 26px;
  flex-shrink: 0;
}
.bp-hero__hl strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.bp-hero__hl small {
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
}

/* =========================================
   CATALOG GRID
   ========================================= */
.bp-catalog {
  padding: 100px 0;
  background: var(--bg);
}
.bp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.bp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 15, 62, 0.25);
}
.bp-card--featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, #fff 0%, var(--brand-pale) 100%);
}
.bp-card--wide { grid-column: span 3; }

.bp-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 6px 12px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.bp-card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: var(--brand-pale);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}
.bp-card__icon--brand  { background: var(--brand-pale); }
.bp-card__icon--blue   { background: #E6F1FB; }
.bp-card__icon--green  { background: #E6F7EE; }
.bp-card__icon--purple { background: #EFE6FB; }
.bp-card__icon--orange { background: #FFEFE0; }

.bp-card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.bp-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.55;
}

.bp-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.bp-card__features li {
  font-size: 14px;
  color: var(--text-secondary);
}
.bp-card__features--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.bp-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}
.bp-card__meta {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* =========================================
   "WHERE TO START" BLOCK
   ========================================= */
.bp-start {
  padding: 100px 0;
  background: var(--bg-light);
}
.bp-start__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bp-start__card {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  color: inherit;
}
.bp-start__card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
.bp-start__card--accent {
  background-color: #8B0F3E;
  background-image: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-color: transparent;
  color: #fff;
}
.bp-start__card--accent:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(139, 15, 62, 0.35);
}
.bp-start__card--accent .bp-start__num {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.bp-start__card--accent .bp-start__cta {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}
.bp-start__card--accent:hover .bp-start__cta {
  background: #FFD6E5;
  border-color: #FFD6E5;
}
.bp-start__card--accent .bp-start__body p { color: rgba(255,255,255,0.88); }
.bp-start__card--accent .bp-start__body strong { color: #fff; }

.bp-start__card--help {
  background: var(--brand-pale);
  border-style: dashed;
  border-color: var(--brand);
  flex-direction: column;
  gap: 14px;
}
.bp-start__card--help .bp-start__num {
  background: var(--brand);
  color: #fff;
}

.bp-start__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--brand-pale);
  color: var(--brand);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
}
.bp-start__body { display: flex; flex-direction: column; gap: 6px; }
.bp-start__body h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.bp-start__body p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.bp-start__cta {
  align-self: flex-start;
  margin-top: 10px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-pale);
  border: 1.5px solid var(--brand-pale);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.bp-start__card:hover .bp-start__cta {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateX(2px);
}

/* =========================================
   "WHAT HAPPENS NEXT" — TIMELINE
   ========================================= */
.bp-next {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #1A0A14 0%, var(--brand-dark) 100%);
  color: #fff;
  overflow: hidden;
}
.bp-next::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 77, 126, 0.18), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(184, 20, 90, 0.20), transparent 45%);
  pointer-events: none;
}
.bp-next .container { position: relative; z-index: 1; }
.bp-next__title { color: #fff; }
.bp-next__sub { color: rgba(255,255,255,0.78); }

.bp-next__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.bp-next__timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.25) 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}
.bp-next__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}
.bp-next__step-num {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-light), var(--accent));
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(255, 77, 126, 0.35);
}
.bp-next__step-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.bp-next__step-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.76);
  line-height: 1.55;
  margin-bottom: 12px;
}
.bp-next__when {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
}

.bp-next__promise {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.bp-next__promise-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.bp-next__promise strong {
  display: block;
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}
.bp-next__promise p {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

/* =========================================
   TRUST BLOCK
   ========================================= */
.bp-trust {
  padding: 100px 0;
  background: var(--bg);
}
.bp-trust__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px;
  background: var(--brand-pale);
  border-radius: var(--radius-lg);
  margin-bottom: 50px;
}
.bp-trust__stat {
  text-align: center;
}
.bp-trust__stat strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.bp-trust__stat span {
  font-size: 14px;
  color: var(--text-secondary);
}

.bp-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.bp-review {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}
.bp-review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.bp-review__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bp-review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.bp-review__avatar--1 { background: linear-gradient(135deg, #8B0F3E, #b8145a); }
.bp-review__avatar--2 { background: linear-gradient(135deg, #4F46E5, #7C3AED); }
.bp-review__avatar--3 { background: linear-gradient(135deg, #EA580C, #F59E0B); }
.bp-review__head strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.bp-review__head small {
  font-size: 12.5px;
  color: var(--text-muted);
}
.bp-review p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}
.bp-review__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 12px;
  background: var(--brand-pale);
  color: var(--brand);
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 700;
}

.bp-trust__mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bp-trust__mini-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.bp-trust__mini-icon { font-size: 28px; }
.bp-trust__mini-item strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 4px;
}
.bp-trust__mini-item small {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* =========================================
   FORM (inside final-cta)
   ========================================= */
.bp-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 720px;
  margin: 28px auto 8px;
  text-align: left;
}
.bp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bp-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bp-form__field span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.bp-form__field input {
  padding: 14px 16px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 15px;
  font-family: var(--font);
  transition: all var(--transition);
}
.bp-form__field input::placeholder { color: rgba(255,255,255,0.55); }
.bp-form__field input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.16);
}

.bp-form__choice {
  border: none;
  padding: 0;
}
.bp-form__choice legend {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}
.bp-form__options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.bp-form__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.bp-form__opt-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.bp-form__opt-icon { font-size: 22px; }
.bp-form__opt:hover .bp-form__opt-box {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.4);
}
.bp-form__opt input:checked + .bp-form__opt-box {
  background: #fff;
  border-color: #fff;
  color: var(--brand);
}

.bp-form__submit {
  align-self: center;
  min-width: 220px;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .bp-hero { padding: 110px 0 70px; }
  .bp-hero__highlights { grid-template-columns: 1fr; }
  .bp-grid { grid-template-columns: repeat(2, 1fr); }
  .bp-card--wide { grid-column: span 2; }
  .bp-start__grid,
  .bp-trust__grid,
  .bp-trust__stats,
  .bp-trust__mini { grid-template-columns: repeat(2, 1fr); }
  .bp-next__timeline { grid-template-columns: repeat(2, 1fr); gap: 36px 22px; }
  .bp-next__timeline::before { display: none; }
  .bp-form__options { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .bp-hero { padding: 80px 0 50px; }
  .bp-hero__title { font-size: clamp(26px, 7vw, 32px); }
  .bp-hero__sub { font-size: 15px; }
  .bp-hero__hl { padding: 12px 14px; gap: 12px; }
  .bp-hero__hl-icon { font-size: 22px; }
  .bp-hero__hl strong { font-size: 14px; }
  .bp-hero__hl small { font-size: 12px; }

  .bp-catalog,
  .bp-start,
  .bp-next,
  .bp-trust { padding: 60px 0; }

  .bp-grid,
  .bp-start__grid,
  .bp-trust__grid,
  .bp-trust__stats,
  .bp-trust__mini { grid-template-columns: 1fr; }

  .bp-card { padding: 24px 20px; }
  .bp-card__title { font-size: 19px; }
  .bp-card__desc { font-size: 14px; }
  .bp-card--wide { grid-column: span 1; }
  .bp-card__features--inline { flex-direction: column; gap: 8px; }
  .bp-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .bp-card__footer .btn { width: 100%; justify-content: center; }

  .bp-start__card { padding: 22px 18px; gap: 14px; }
  .bp-start__num { font-size: 28px; }
  .bp-start__body h3 { font-size: 16px; }
  .bp-start__body p { font-size: 13.5px; }

  .bp-next__timeline { grid-template-columns: 1fr; }
  .bp-next__step { padding: 18px; }
  .bp-next__step-body h3 { font-size: 16px; }
  .bp-next__promise {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
  }

  .bp-trust__stat strong { font-size: 26px; }
  .bp-review { padding: 22px 20px; }
  .bp-review p { font-size: 14px; }

  .bp-form { padding: 22px 18px; }
  .bp-form__row,
  .bp-form__options { grid-template-columns: 1fr; }
  .bp-form__opt-box {
    flex-direction: row;
    justify-content: flex-start;
    padding: 12px 16px;
  }
  .bp-form__submit { width: 100%; }

  .pg-breadcrumb { font-size: 12px; flex-wrap: wrap; }
}

@media (max-width: 420px) {
  .bp-hero { padding: 64px 0 44px; }
  .bp-hero__title { font-size: 26px; }
  .bp-card__icon { width: 48px; height: 48px; font-size: 24px; }
  .bp-start__num { font-size: 24px; }
}
