/* Hero */
.hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, #fae7f1 0%, #ffffff 65%);
  padding: 1rem !important;
}
.hero .copy {
  max-width: 680px;
}
.hero h1.title-article {
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
  line-height: 1.1;
  letter-spacing: -.02em;
}

/* Hero badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 1.2rem 0;
}
.mini-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  /* font-size: .9rem; */
  font-weight: 650;
}
.mini-badge svg {
  width: 28px;
  height: 28px;
  color: #df2576;
  flex-shrink: 0;
  stroke-width: 1.8;
}
.mini-badge small {
  display: block;
  font-weight: 500;
  /* font-size: .82rem;*/
}

/* Proof strip */
.proof-strip {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
}
.proof-strip span {
  padding: .6rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 700;
}
.proof-strip span + span {
  border-left: 1px solid rgba(255,255,255,.2);
}

/* Solution cards */
.card-brand__txt h4 {
  margin: .2rem 0 .7rem;
  font-size: .88rem;
  color: #526487;
  font-weight: 600;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .5rem;
  font-size: .9rem;
}
.check-list li {
  position: relative;
  padding-left: 1.3rem;
  line-height: 1.4;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--card-accent, #df2576);
  font-weight: 900;
}
.card-brand .card-link {
  display: inline-flex;
  align-items: center;
  margin-top: .8rem;
  padding: 15px;
  height: auto;
  color: var(--card-accent, #df2576);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none !important;
}

/* Durable */
.lp-durable-title {
  color: #df2576;
  font-style: italic;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  text-align: center;
  margin: 0 0 1.4rem;
  letter-spacing: -.02em;
}
.lp-durable-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.lp-durable-item {
  text-align: center;
  padding: .8rem 1.4rem;
  border-right: 1px solid rgba(223,37,118,.2);
}
.lp-durable-item:last-child { border-right: 0; }
.lp-durable-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto .7rem;
  color: #df2576;
  stroke-width: 1.8;
}
.lp-durable-item h3 {
  margin: 0 0 .4rem;
  font-size: 1rem;
  line-height: 1.25;
}
.lp-durable-item p {
  margin: 0;
  color: #526487;
  font-size: .88rem;
}

/* Testimonials */
.lp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}
blockquote.lp-quote {
  margin: 0;
  background: #fff;
  border: 1px solid #e9edf5;
  border-radius: 1rem;
  padding: 1.8rem;
  box-shadow: 0 8px 24px rgba(8,38,95,.04);
  position: relative;
}
blockquote.lp-quote::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  left: 16px;
  color: #df2576;
  font-size: 3.2rem;
  line-height: 1;
  font-family: Georgia, serif;
}
blockquote.lp-quote p {
  margin: 1.8rem 0 1rem;
  font-style: italic;
  font-weight: 600;
  color: #10295f;
}
blockquote.lp-quote footer {
  color: #526487;
  font-size: .9rem;
}
blockquote.lp-quote footer strong {
  display: block;
  color: #10295f;
}

/* FAQ */
.lp-faq-list {
  border: 1px solid #e9edf5;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(8,38,95,.04);
}
details.lp-faq-item {
  border-bottom: 1px solid #e9edf5;
}
details.lp-faq-item:last-child { border-bottom: 0; }
summary.lp-faq-summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.4rem;
  color: #10295f;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
summary.lp-faq-summary::-webkit-details-marker { display: none; }
summary.lp-faq-summary::after {
  content: "⌄";
  color: #df2576;
  font-size: 1.3rem;
  flex-shrink: 0;
  display: inline-block;
  transition: transform .2s;
}
details[open] summary.lp-faq-summary::after { transform: rotate(180deg); }
.lp-faq-answer {
  padding: 0 1.4rem 1rem;
  color: #526487;
}

@media (max-width: 600px) {
  .hero { min-height: 70vh; padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
  .hero h1.title-article { font-size: clamp(2.2rem, 8vw, 3rem); }
  .proof-strip { display: grid; }
  .proof-strip span + span { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .lp-durable-grid { grid-template-columns: 1fr; }
  .lp-durable-item { border-right: 0; border-bottom: 1px solid rgba(223,37,118,.2); padding-bottom: 1.2rem; }
  .lp-durable-item:last-child { border-bottom: 0; }
}
