/* Landing page styles - SEO Flywheel design */

/* Trust bar */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 60px);
  flex-wrap: wrap;
  padding: 32px 0;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  background: var(--gray-100);
  margin: 0 0 40px;
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Diagonal striped background */
.lp-bg {
  background: repeating-linear-gradient(
    -45deg,
    var(--white),
    var(--white) 20px,
    var(--gray-100) 20px,
    var(--gray-100) 40px
  );
  min-height: 100vh;
}

/* Badge */
.lp-badge {
  display: inline-block;
  background: white;
  border:1px solid black;
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 30px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Hero */
.lp-hero {
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 80px);
  text-align: center;
}

.lp-title {
  font-size: clamp(48px, 10vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}

.lp-title .grad {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--gray-600);
  max-width: 550px;
  margin: 0 auto 32px;
  line-height: 1.6;
  font-weight: 500;
}

.lp-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lp-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 8px;
}

.lp-checks span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
}

.lp-checks .checkmark {
  width: 18px;
  height: 18px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-checks .checkmark::after {
  content: '';
  width: 6px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
  margin-top: -1px;
}

/* Benefit cards */
.lp-benefits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: clamp(40px, 6vw, 60px) 0;
}

@media (max-width: 768px) {
  .lp-benefits-row {
    grid-template-columns: 1fr;
  }
}

.lp-benefit-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 6px 6px 0 var(--gray-300);
  transition: all 0.2s ease;
}

.lp-benefit-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--gray-400);
}

.lp-benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--gray-100);
  border: 3px solid var(--black);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.lp-benefit-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 10px;
}

.lp-benefit-card p {
  font-size: 15px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* How It Works - Horizontal steps */
.lp-section {
  padding: clamp(50px, 8vw, 80px) 0;
}

.lp-section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: var(--black);
  text-align: center;
  margin: 0 0 48px;
  letter-spacing: -0.02em;
}

.lp-steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.lp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
  max-width: 180px;
}

.lp-step-num {
  width: 56px;
  height: 56px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.lp-step h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 8px;
}

.lp-step p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

.lp-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px 0;
  color: var(--gray-400);
  font-size: 28px;
  font-weight: 900;
}

@media (max-width: 768px) {
  .lp-steps-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .lp-step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }
}

/* What You Get - Two cards */
.lp-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

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

.lp-what-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 6px 6px 0 var(--gray-300);
}

.lp-what-card.dark {
  background: var(--black);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--gray-600);
}

.lp-what-card h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
  color: var(--gray-500);
}

.lp-what-card.dark h3 {
  color: var(--gray-400);
}

.lp-what-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-what-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid var(--gray-200);
}

.lp-what-card.dark .lp-what-list li {
  color: var(--white);
  border-bottom-color: var(--gray-700);
}

.lp-what-list li:last-child {
  border-bottom: none;
}

.lp-what-list .bullet {
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.lp-what-card.dark .lp-what-list .bullet {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
}

/* Pricing */
.lp-pricing-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 8px 8px 0 var(--gray-300);
}

.lp-price {
  font-size: clamp(56px, 10vw, 80px);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin: 0 0 8px;
}

.lp-price small {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-500);
}

.lp-price-note {
  font-size: 15px;
  color: var(--gray-600);
  margin: 0 0 24px;
}

.lp-promo {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius2);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 24px;
}

.lp-promo strong {
  color: #FFE66D;
}

.lp-promo code {
  background: var(--white);
  color: var(--black);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 800;
  margin-left: 8px;
  font-family: 'Courier New', monospace;
}

/* FAQ */
.lp-faq {
  max-width: 700px;
  margin: 0 auto;
}

.lp-faq-item {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius2);
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: 4px 4px 0 var(--gray-300);
  transition: all 0.2s ease;
}

.lp-faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--gray-400);
}

.lp-faq-item h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 10px;
}

.lp-faq-item p {
  font-size: 15px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.7;
}

/* Dark Footer CTA */
.lp-footer-cta {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: clamp(60px, 10vw, 100px) 0;
}

.lp-footer-cta h2 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}

.lp-footer-cta .btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.lp-footer-cta .btn-primary:hover {
  background: var(--gray-100);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--gray-600);
}

/* Footer */
.lp-foot {
  background: var(--gray-900);
  color: var(--gray-400);
  text-align: center;
  padding: 24px 0;
  font-size: 14px;
}

.lp-foot a {
  color: var(--gray-400);
  text-decoration: none;
}

.lp-foot a:hover {
  color: var(--white);
}
