/* Landing page — simplified sales-focused layout */

.landing-page .section {
  padding: 72px 0;
}

.landing-page h1 em {
  font-style: normal;
  color: var(--red);
}

/* Header */
.lp-header .nav a.active {
  color: var(--purple);
}

.lp-header-cta {
  font-size: 13px;
  padding: 12px 22px;
}

/* Hero */
.lp-hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  grid-template-columns: unset;
}

.lp-hero-text {
  max-width: 720px;
}

.lp-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.lp-hero-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 560px;
}

.lp-hero-benefits {
  list-style: none;
  margin-bottom: 32px;
}

.lp-hero-benefits li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.lp-hero-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}

.lp-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 720px;
}

.lp-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.lp-stat strong {
  display: block;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.lp-stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}

.lp-btn-wa {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.lp-btn-wa:hover {
  background: #1fb855;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

/* Pain */
.lp-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-pain-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.lp-pain-card:hover {
  border-color: rgba(243, 40, 47, 0.3);
  box-shadow: 0 12px 32px rgba(67, 42, 139, 0.1);
  transform: translateY(-4px);
}

.lp-pain-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 16px;
}

.lp-pain-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 10px;
}

.lp-pain-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Benefits */
.lp-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.lp-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  transition: var(--transition);
}

.lp-benefit:hover {
  border-color: rgba(67, 42, 139, 0.25);
  box-shadow: 0 8px 24px rgba(67, 42, 139, 0.08);
}

.lp-benefit:last-child {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
  width: 100%;
}

.lp-benefit-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--purple), #5a3aa8);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-benefit strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 4px;
}

.lp-benefit p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.lp-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px;
  background: linear-gradient(145deg, var(--purple), #5a3aa8);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}

.lp-flow-accent {
  background: var(--red);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 18px;
}

.lp-flow-arrow {
  opacity: 0.6;
  font-size: 20px;
}

/* Case */
.lp-case-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lp-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.lp-case-body {
  padding: 32px 32px 32px 0;
}

.lp-case-body h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--purple);
  line-height: 1.25;
  margin-bottom: 14px;
}

.lp-case-body > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.lp-case-body blockquote {
  border-left: 3px solid var(--red);
  padding-left: 16px;
  margin: 0 0 24px;
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Steps */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-line);
}

.lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.lp-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 8px;
}

.lp-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Contact */
.lp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.lp-wa-block {
  margin-top: 24px;
  width: 100%;
  max-width: 320px;
}

.lp-form-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 20px;
}

.lp-footer {
  padding: 32px 0;
}

/* Floating WhatsApp */
.lp-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: lp-wa-pulse 2.5s ease-in-out infinite;
}

.lp-wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

@keyframes lp-wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* Responsive */
@media (max-width: 900px) {
  .lp-hero-stats { grid-template-columns: 1fr; max-width: 100%; }
  .lp-pain-grid { grid-template-columns: 1fr; }
  .lp-benefits { grid-template-columns: 1fr; }
  .lp-benefit:last-child { max-width: none; }
  .lp-about-grid { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* About */
.lp-about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.lp-about-chips span {
  padding: 8px 16px;
  background: rgba(67, 42, 139, 0.08);
  border: 1px solid rgba(67, 42, 139, 0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
}

.lp-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.lp-about-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.lp-about-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 12px;
}

.lp-about-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.lp-about-card ul {
  list-style: none;
}

.lp-about-card li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.5;
}

.lp-about-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.lp-about-card-accent {
  border-color: rgba(67, 42, 139, 0.25);
  background: linear-gradient(160deg, rgba(67, 42, 139, 0.04), var(--white));
}

.lp-letters {
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .landing-page .section { padding: 56px 0; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .lp-wa-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
}
