/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.2;
  border-radius: var(--radius-md);
  transition: background var(--dur-base) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
  white-space: nowrap;
  text-align: center;
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.btn--wa {
  background: var(--wa);
  color: #06210f;
  box-shadow: 0 0 0 0 transparent;
}

.btn--wa:hover {
  background: var(--wa-hover);
}

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

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--hairline);
}

.btn--secondary:hover {
  border-color: var(--accent-border);
  background: var(--surface-2);
}

.btn--text {
  min-height: auto;
  padding: 0.35rem 0.25rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  white-space: normal;
}

.btn--text:hover {
  color: var(--accent);
}

.btn--block {
  width: 100%;
}

.btn--sm {
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

@media (min-width: 480px) {
  .btn--block-mobile {
    width: auto;
  }
}

/* ========== Header ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    backdrop-filter var(--dur-base) var(--ease-out);
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--hairline-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
}

.logo__mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(232, 160, 181, 0.25);
}

.logo__text span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.8125rem;
  display: block;
  margin-top: 0.1rem;
}

@media (max-width: 379px) {
  .logo__text span {
    display: none;
  }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  padding-block: 1.5rem 1.35rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset-inline-end: -20%;
  top: -10%;
  width: min(36rem, 90vw);
  height: min(36rem, 90vw);
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero {
    padding-block: 2.25rem 1.75rem;
  }

  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
  }
}

.hero__content {
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding: 0.4rem 0.85rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-full);
}

.hero__eyebrow-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(125, 206, 160, 0.2);
}

.hero__title {
  margin-bottom: 0.75rem;
  max-width: none;
  text-align: center;
  margin-inline: auto;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__lead {
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  text-align: center;
}

@media (min-width: 768px) {
  .hero__lead {
    margin-bottom: 1.5rem;
  }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.15rem;
}

@media (min-width: 480px) {
  .hero__actions {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width: 900px) {
  .hero__content {
    text-align: start;
  }

  .hero__title {
    text-align: start;
    margin-inline: 0;
    max-width: 22ch;
  }

  .hero__lead {
    text-align: start;
    margin-inline: 0;
  }

  .hero__actions {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .trust-row {
    justify-content: flex-start;
  }

  .hero__proof {
    text-align: start;
  }
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 0.85rem;
}

.trust-row__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 15px;
  color: var(--text-secondary);
}

.trust-row__item svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.hero__proof {
  margin-top: 0.85rem;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.hero__visual {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 18rem;
}

@media (min-width: 900px) {
  .hero__visual {
    max-width: 22rem;
  }
}

.hero__frame {
  position: relative;
  padding: 0.85rem;
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .hero__frame {
    padding: 1.25rem;
  }
}

.hero__frame img {
  width: 100%;
  border-radius: var(--radius-md);
  background: #fff;
}

.hero__badge {
  position: absolute;
  left: 50%;
  bottom: 0.65rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(26, 18, 22, 0.08);
  white-space: nowrap;
}

.hero__badge svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--success);
}

.rx-notice {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-top: 1.15rem;
  padding: 0.85rem;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
}

.rx-notice svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--warning);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.rx-notice p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.rx-notice strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Product authenticity showcase */
.product-showcase {
  display: grid;
  gap: 1.15rem;
  max-width: 16rem;
  margin-inline: auto;
  justify-items: center;
}

@media (min-width: 768px) {
  .product-showcase {
    max-width: 18rem;
  }
}

.product-showcase__frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0.85rem 0.75rem 1rem;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface-1) 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.product-showcase__frame img {
  width: 100%;
  max-width: 14rem;
  margin-inline: auto;
  border-radius: 0;
  background: transparent;
}

.product-showcase__badge {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1.15rem;
  padding: 0.45rem 0.85rem;
  font-size: 12px;
  font-weight: 700;
  color: #1a0f14;
  background: var(--accent);
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(196, 107, 136, 0.28);
}

.product-showcase__badge svg {
  width: 1rem;
  height: 1rem;
}

.product-showcase__points {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.product-showcase__points li {
  text-align: center;
  font-size: 17px;
  color: var(--text-secondary);
  padding: 0.7rem 0.85rem;
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem;
  font-size: 14px;
  color: var(--text-muted);
}

.footer__privacy {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.55;
}

/* Doctor trust card (no fake AI photos) */
.doctor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.15rem 2.75rem !important;
  min-height: auto;
}

.doctor-card__name {
  color: var(--text-primary) !important;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  text-align: center;
}

.doctor-card__role {
  font-size: 17px;
  color: var(--accent) !important;
  margin-bottom: 1rem;
  text-align: center;
}

.doctor-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
}

.doctor-card__meta li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 0.5rem 0.65rem;
  background: var(--surface-2);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-sm);
  text-align: center;
}

/* ========== Problem / Solution ========== */
.pas__grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .pas__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.pas-card {
  padding: 1.15rem;
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  text-align: center;
}

@media (min-width: 768px) {
  .pas-card {
    padding: 1.5rem;
    text-align: start;
  }
}

.pas-card--solution {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--surface-1) 48%);
}

.pas-card__label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.pas-card--solution .pas-card__label {
  color: var(--accent);
}

.pas-card h3 {
  margin-bottom: 0.85rem;
  text-align: center;
}

@media (min-width: 768px) {
  .pas-card h3 {
    text-align: start;
  }
}

.pas-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pas-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.5;
  text-align: start;
}

@media (min-width: 768px) {
  .pas-list li {
    justify-content: flex-start;
  }
}

.pas-list li svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pas-list--problem li svg {
  color: #e8a0b5;
}

.pas-list--solution li svg {
  color: var(--success);
}

.pas-card .btn {
  margin-top: 1.1rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .pas-card .btn {
    margin-inline: 0;
  }
}

/* ========== Benefits ========== */
.benefits__featured {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .benefits__featured {
    grid-template-columns: 1.15fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
}

.benefits__grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .benefits__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  position: relative;
  padding: 1.1rem;
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out);
}

@media (hover: hover) {
  .benefit-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-2px);
  }
}

.benefit-card--highlight {
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--surface-1) 70%);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-soft);
}

.benefit-card--featured {
  border-width: 2px;
  border-color: var(--accent);
  padding-top: 1.35rem;
}

.benefit-card__tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.65rem;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius-full);
}

.benefit-card__icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-inline: auto;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
}

.benefit-card--featured .benefit-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--accent);
  color: #fff;
}

.benefit-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.benefit-card--featured .benefit-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.benefit-card h3 {
  margin-bottom: 0.35rem;
  text-align: center;
}

.benefit-card--featured h3 {
  font-size: 1.2rem;
  color: var(--accent-deep);
}

.benefit-card--featured p {
  font-weight: 600;
  color: var(--text-primary);
}

.benefit-card p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ========== Process ========== */
.process__steps {
  display: grid;
  gap: 0.75rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .process__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.process-step {
  position: relative;
  padding: 1.15rem 1.1rem;
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  counter-increment: step;
  text-align: center;
}

.process-step__num {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-inline: auto;
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius-full);
}

.process-step__num::before {
  content: counter(step, decimal-leading-zero);
}

.process-step h3 {
  margin-bottom: 0.35rem;
  text-align: center;
}

.process-step p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.process__cta {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* ========== Trust / Reviews ========== */
.reviews__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .reviews__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .review-card--featured {
    grid-column: span 3;
  }

  .reviews__grid > .review-card:not(.review-card--featured) {
    grid-column: span 3;
  }

  .reviews__grid > .review-card:nth-child(n + 4) {
    grid-column: span 2;
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.85rem;
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  text-align: start;
  overflow: hidden;
}

.review-card--featured {
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--surface-1) 40%);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-soft);
}

.review-card__shot {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
  background: var(--surface-2);
  aspect-ratio: 9 / 14;
  max-height: 22rem;
}

.review-card--featured .review-card__shot {
  max-height: 26rem;
}

.review-card__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.review-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.15rem 0.35rem 0.35rem;
}

.review-card__stars {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.review-card--featured .review-card__text {
  font-size: 17px;
  color: var(--text-primary);
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.2rem;
  font-size: 14px;
  color: var(--text-muted);
}

.review-card__meta strong {
  color: var(--text-primary);
  font-weight: 700;
}

.review-card__meta span::before {
  content: "·";
  margin-inline-end: 0.5rem;
  color: var(--hairline);
}

.reviews__cta {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.reviews__cta .btn {
  white-space: normal;
  text-align: center;
  max-width: 100%;
  line-height: 1.35;
}

.disclaimer {
  margin-top: 1.15rem;
  padding: 0.9rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
  line-height: 1.55;
}

/* ========== FAQ ========== */
.faq__list {
  max-width: 44rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.faq-item {
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.9rem 1rem;
  text-align: start;
  font-weight: 600;
  font-size: 17px;
  color: var(--text-primary);
  min-height: 3rem;
  line-height: 1.4;
}

.faq-item__icon {
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: var(--surface-3);
  color: var(--text-primary);
  transition: transform var(--dur-base) var(--ease-out),
    background var(--dur-base) var(--ease-out);
}

.faq-item__icon svg {
  width: 0.9rem;
  height: 0.9rem;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--accent-soft);
  color: var(--accent);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-base) var(--ease-out);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__content {
  overflow: hidden;
}

.faq-item__content p {
  padding: 0 1rem 1rem;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
  text-align: start;
}

/* ========== Final CTA ========== */
.final-cta {
  padding-block: 1.35rem;
}

@media (min-width: 768px) {
  .final-cta {
    padding-block: 1.75rem;
  }
}

.final-cta__box {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1.15rem;
  text-align: center;
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--surface-1) 55%);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-xl);
}

@media (min-width: 768px) {
  .final-cta__box {
    padding: 2.5rem 2rem;
  }
}

.final-cta__box h2 {
  margin-bottom: 0.5rem;
  text-align: center;
}

.final-cta__box > p {
  max-width: 32rem;
  margin-inline: auto;
  margin-bottom: 1.15rem;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: center;
}

.final-cta__note {
  margin-top: 0.75rem;
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
}

/* ========== Footer ========== */
.footer {
  border-top: 1px solid var(--hairline-soft);
  padding-block: 1.25rem 1rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  text-align: center;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.footer__links a {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease-out);
}

.footer__links a:hover {
  color: var(--text-primary);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__legal {
  max-width: 40rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ========== Sticky mobile WhatsApp bar ========== */
.sticky-wa {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.65rem var(--gutter);
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--hairline-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sticky-wa .btn {
  width: 100%;
  box-shadow: 0 4px 24px rgba(45, 212, 111, 0.25);
}

@media (min-width: 768px) {
  .sticky-wa {
    display: none;
  }
}

/* ========== Floating WhatsApp FAB (bottom-right) ========== */
.wa-fab {
  position: fixed;
  right: 1rem;
  bottom: calc(var(--sticky-cta-h) + 0.75rem + env(safe-area-inset-bottom, 0px));
  z-index: 95;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 6px 20px rgba(31, 173, 87, 0.35);
  transition: transform var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.wa-fab svg {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
}

.wa-fab:hover {
  background: var(--wa-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 173, 87, 0.42);
}

.wa-fab:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .wa-fab {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
  }

  .wa-fab svg {
    width: 1.7rem;
    height: 1.7rem;
  }
}

/* WhatsApp stays clickable — fingerprint is monitor-only (never blocks AE). */

/* ========== Compact Landing Page ========== */
.hero--lp {
  padding-block: 1.25rem 0.75rem;
}

.hero__grid--lp {
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .hero__grid--lp {
    align-items: center;
  }
}

.trust-row--lp {
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-row--lp .trust-row__item {
  font-size: 0.82rem;
  padding: 0.4rem 0.7rem;
  background: var(--surface-2);
  border-radius: var(--radius-full);
  border: 1px solid var(--hairline-soft);
}

.trust-row--lp .trust-row__item svg {
  display: none;
}

.hero__visual--product {
  display: flex;
  justify-content: center;
}

.product-showcase__frame--hero {
  max-width: 16rem;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
}

.product-showcase__frame--hero img {
  width: 100%;
  height: auto;
}

.lp-promises {
  padding-block: 0.5rem 1.25rem;
}

.lp-promises__grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .lp-promises__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-promise {
  padding: 1rem 1.1rem;
  background: var(--surface-2);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-lg);
  text-align: start;
}

.lp-promise h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--text-primary);
}

.lp-promise p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* Reviews — mobile horizontal scroll */
.reviews__scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(78%, 18rem);
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.reviews__scroller > .review-card {
  scroll-snap-align: start;
}

.reviews__scroller .review-card__shot {
  max-height: 16rem;
}

@media (min-width: 900px) {
  .reviews__scroller {
    grid-auto-flow: unset;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-columns: unset;
    overflow: visible;
    scroll-snap-type: none;
  }

  .reviews__scroller .review-card--featured {
    grid-column: 1 / -1;
  }

  .reviews__scroller .review-card__shot {
    max-height: 22rem;
  }
}

/* Lead form */
.section--form {
  padding-top: 0.5rem;
}

.lead-form-card {
  max-width: 28rem;
  margin-inline: auto;
  padding: 1.35rem 1.15rem 1.5rem;
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.lead-form-card__header {
  text-align: center;
  margin-bottom: 1.15rem;
}

.lead-form-card__header h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.25rem, 4.5vw, 1.55rem);
  color: var(--text-primary);
}

.lead-form-card__header p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.lead-form__field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
}

.lead-form__field input,
.lead-form__field select {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  color: var(--text-primary);
  font: inherit;
  font-size: 1.05rem;
}

.lead-form__field input:focus,
.lead-form__field select:focus {
  outline: 2px solid var(--accent-border);
  border-color: var(--accent);
  background: #fff;
}

.lead-form__error {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: #b42318;
}

.lead-form__error--form {
  text-align: center;
}

.lead-form__submit {
  min-height: 3.35rem;
  margin-top: 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.lead-form__note {
  margin: 0.15rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer--lp .footer__inner {
  gap: 0.85rem;
}

/* Thank you page */
.page-thankyou {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem var(--gutter);
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--canvas) 55%);
}

.thankyou {
  width: 100%;
  max-width: 26rem;
}

.thankyou__card {
  padding: 1.75rem 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.thankyou__logo {
  display: block;
  margin: 0 auto 1rem;
  border-radius: 50%;
}

.thankyou__card h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 5vw, 1.7rem);
  line-height: 1.3;
  color: var(--text-primary);
}

.thankyou__lead,
.thankyou__wa-copy {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.thankyou__wa {
  min-height: 3.5rem;
  font-size: 1.08rem;
  margin-top: 0.35rem;
}

.thankyou__home {
  display: inline-flex;
  margin-top: 1rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
}
