.accent-pink {
  color: #fb5c82;
}

.accent-teal {
  color: #0b8f73;
}

/* HERO */
.lp-hero {
  position: relative;
  padding-top: 84px;
  overflow: hidden;
  background: #ffffff;
}

.lp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 28px 6% 28px;
}

.lp-hero-text h1 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}
.lp-hero-text h1 em {
  font-style: normal;
  color: #fb5c82;
}

.lp-hero-text p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.lp-link-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #16234f;
  text-decoration: none;
}
.lp-link-play ion-icon {
  font-size: 18px;
  color: #fb5c82;
  background: #fdeff3;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero-visual img {
  width: 100%;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }
  .lp-hero-visual {
    order: -1;
  }
}

/* HIGHLIGHTS */
.lp-highlights {
  padding: 28px 6% 28px;
  background: #ffffff;
}

.lp-highlights-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lp-highlight-card {
  display: flex;
  align-items: stretch;
  gap: 16px;
  border: 1.5px solid #f1e4ea;
  border-radius: 16px;
  padding: 16px;
}

.lp-highlight-card .lp-icon {
  width: 56px;
  height: 100%;
  flex-shrink: 0;
  font-size: 28px;
  margin-bottom: 0;
}

.lp-highlight-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.lp-icon--pink {
  background: #fdeff3;
  color: #fb5c82;
}
.lp-icon--teal {
  background: rgba(11, 143, 115, 0.08);
  color: #0b8f73;
}
.lp-icon--blue {
  background: rgba(28, 140, 251, 0.08);
  color: #1c8cfb;
}
.lp-icon--purple {
  background: rgba(100, 80, 181, 0.08);
  color: #6450b5;
}
.lp-icon--navy {
  background: rgba(22, 35, 79, 0.07);
  color: #16234f;
}

.lp-highlight-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #16234f;
  margin-bottom: 6px;
}
.lp-highlight-card p {
  font-size: 13.5px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .lp-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .lp-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* FEATURES */
.lp-features {
  padding: 28px 6% 28px;
  background: #ffffff;
}

.lp-features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-feature-card {
  display: flex;
  align-items: stretch;
  gap: 18px;
  border: 1.5px solid #f1e4ea;
  border-radius: 18px;
  padding: 20px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.lp-feature-card:hover {
  box-shadow: 0 10px 32px rgba(251, 92, 130, 0.12);
  transform: translateY(-3px);
}

.lp-feature-card .lp-icon {
  width: 60px;
  height: 100%;
  flex-shrink: 0;
  font-size: 26px;
  margin-bottom: 0;
}

.lp-feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-feature-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #16234f;
  margin-bottom: 8px;
}
.lp-feature-card p {
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .lp-features-grid {
    grid-template-columns: 1fr;
  }
}

/* STEPS */
.lp-steps {
  padding: 28px 6% 28px;
  background: #ffffff;
}

.lp-steps-row {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lp-steps-row::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 9%;
  right: 9%;
  height: 0;
  border-top: 2px dashed #f1c6d3;
  z-index: 0;
}

.lp-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 10px;
}

.lp-step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #fb5c82;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fb5c82;
  margin: 0 auto 16px;
}
.lp-step:nth-child(2) .lp-step-icon {
  border-color: #0b8f73;
  color: #0b8f73;
}
.lp-step:nth-child(3) .lp-step-icon {
  border-color: #1c8cfb;
  color: #1c8cfb;
}
.lp-step:nth-child(4) .lp-step-icon {
  border-color: #6450b5;
  color: #6450b5;
}

.lp-step h4 {
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #16234f;
  margin-bottom: 8px;
  line-height: 1.35;
}
.lp-step p {
  font-size: 13px;
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .lp-steps-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
  .lp-steps-row::before {
    display: none;
  }
}
@media (max-width: 560px) {
  .lp-steps-row {
    grid-template-columns: 1fr;
  }
}

/* WHY-ICON ion-icon support (perks section reuses .why classes) */
.why-icon ion-icon {
  font-size: 28px;
  color: #fb5c82;
}

/* FINAL CTA */
.lp-final-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1200px, 88%);
  margin: 0 auto 32px;
  border-radius: 20px;
  background: #fdeff3;
  padding: 24px 32px;
}

.lp-final-cta-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex-shrink: 0;
}
.lp-final-cta-brand img {
  height: 40px;
}
.lp-final-cta-tagline {
  font-size: 11px;
  font-style: italic;
  color: #9a9ab0;
}

.lp-final-cta-logo-img {
  height: 64px;
  flex-shrink: 0;
}

.lp-final-cta-copy {
  flex: 1;
}
.lp-final-cta-copy h2 {
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 4px;
}
.lp-final-cta-copy p {
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 420px;
}

.lp-final-cta-action {
  text-align: center;
  flex-shrink: 0;
}
.lp-final-cta-action small {
  display: block;
  margin-top: 8px;
  font-size: 11.5px;
  color: #9a9ab0;
}

.lp-trust-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6% 28px;
}
.lp-trust-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: nowrap;
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #16234f;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
}
.lp-trust-item ion-icon {
  font-size: 18px;
  color: #0b8f73;
  flex-shrink: 0;
}

/* --- Demo request form --- */
.lp-final-cta--form {
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
.lp-final-cta-top {
  display: flex;
  align-items: center;
  gap: 28px;
}
.lp-final-cta-top .lp-final-cta-copy {
  flex: 1;
}
.demo-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.demo-form input {
  flex: 1 1 180px;
  padding: 10px 14px;
  border: 1.5px solid #e0c5d0;
  border-radius: 10px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #16234f;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.demo-form input:focus {
  border-color: #e83d7a;
}
.demo-form input::placeholder {
  color: #b0a0ac;
}
.demo-form button {
  white-space: nowrap;
  flex-shrink: 0;
}
.demo-form-note {
  display: block;
  font-size: 11.5px;
  color: #9a9ab0;
  margin-top: -8px;
}

@media (max-width: 900px) {
  .lp-final-cta {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 0 0 32px;
    border-radius: 0;
  }
  .lp-final-cta-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .demo-form {
    flex-direction: column;
    align-items: stretch;
  }
  .demo-form input,
  .demo-form button {
    width: 100%;
    flex: none;
  }
  .lp-trust-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .lp-trust-item {
    white-space: normal;
  }
}
