/* ================================================
   Landing Page — Hormozi Framework Styles
   ================================================ */

/* ================================================
   ABOVE THE FOLD — Hero
   ================================================ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(170deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.65) 100%),
    url('images/lisbon-seville.jpg') center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
}
.lp-hero-overlay { display: none; }

.lp-hero-content {
  width: 100%;
  max-width: 800px;
  padding: 60px 24px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Trust badge — stars centered top, text below */
.lp-trust-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}
.lp-stars {
  color: #f7c02e;
  font-size: 22px;
  letter-spacing: 4px;
  line-height: 1;
  display: block;
}
.lp-trust-badge > span:last-child {
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.2px;
}
.lp-trust-badge strong { color: #fff; }

/* Headline */
.lp-headline {
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.lp-headline-accent {
  color: #f7c02e;
  display: inline;
}

/* Subheadline */
.lp-subheadline {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.lp-subheadline strong { color: #fff; }

/* Trust strip */
.lp-trust-strip {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  padding: 3px 10px;
}
.lp-trust-item i { color: rgba(255,255,255,0.30); font-size: 11px; }
.lp-trust-item strong { color: rgba(255,255,255,0.60); font-weight: 600; }
.lp-trust-divider {
  width: 1px;
  height: 10px;
  background: rgba(255,255,255,0.15);
}

/* CTA group */
.lp-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.lp-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #468ae7;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(70,138,231,0.45);
  text-decoration: none;
}
.lp-cta-primary:hover {
  background: #2576e8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(70,138,231,0.55);
}
.lp-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 6px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
}
.lp-cta-secondary:hover { background: #1ebe59; color: #fff; transform: translateY(-2px); }
.lp-cta-secondary--light {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  box-shadow: none;
}
.lp-cta-secondary--light:hover { background: rgba(255,255,255,0.25); color: #fff; }

/* Reassurance strip */
.lp-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}
.lp-reassurance i { color: #4cde80; margin-right: 4px; }

/* Scroll hint */
.lp-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  animation: bounce 2s infinite;
}
.lp-scroll-hint i { font-size: 14px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ================================================
   PROBLEM / SOLUTION SECTION
   ================================================ */
.lp-problem {
  padding: 64px 0;
  background: #111;
}
.lp-problem-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.lp-col-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.lp-col-label--bad  { color: #e55; }
.lp-col-label--good { color: #4cde80; }
.lp-problem-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}
.lp-problem-col { color: rgba(255,255,255,0.7); }
.lp-problem-col--good { color: rgba(255,255,255,0.9); }
.lp-problem-list li i.fa-times  { color: #e55; margin-top: 3px; flex-shrink: 0; }
.lp-problem-list li i.fa-check  { color: #4cde80; margin-top: 3px; flex-shrink: 0; }
.lp-problem-vs {
  font-size: 24px;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
  font-family: 'Poppins', sans-serif;
  text-align: center;
  align-self: center;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.lp-how { padding: 72px 0; background: #fff; }
.lp-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.lp-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.lp-step-num {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: #468ae7;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-step-icon {
  width: 72px;
  height: 72px;
  background: #f0f6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #468ae7;
  margin: 0 auto 18px;
}
.lp-step h3 { font-size: 18px; margin-bottom: 10px; }
.lp-step p  { font-size: 14px; line-height: 1.65; color: #8c8c8c; }
.lp-step-arrow {
  font-size: 20px;
  color: #ddd;
  padding-top: 34px;
  flex-shrink: 0;
}

/* ================================================
   VALUE STACK
   ================================================ */
.lp-value {
  padding: 72px 0;
  background: #f4f4f4;
}
.lp-value-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.lp-value-left .subtitle { display: block; margin-bottom: 10px; }
.lp-value-left h2 { font-size: 34px; margin-bottom: 16px; line-height: 1.25; }
.lp-value-left p  { font-size: 15px; line-height: 1.7; margin-bottom: 28px; color: #8c8c8c; }

.lp-value-price-block {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid #468ae7;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.lp-value-price-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #8c8c8c; margin-bottom: 6px; }
.lp-value-price { font-size: 48px; font-weight: 800; color: #468ae7; font-family: 'Poppins', sans-serif; line-height: 1; }
.lp-value-price span { font-size: 16px; font-weight: 500; color: #8c8c8c; }
.lp-value-price-note { font-size: 13px; color: #8c8c8c; margin-top: 8px; }

.lp-value-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.lp-value-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}
.lp-value-list li:last-child { border-bottom: none; }
.lp-value-list li:hover { background: #f8fbff; }
.lp-value-icon {
  width: 40px;
  height: 40px;
  background: #f0f6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #468ae7;
  font-size: 17px;
  flex-shrink: 0;
}
.lp-value-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.lp-value-text strong { font-size: 14px; color: #383838; }
.lp-value-text span   { font-size: 13px; color: #8c8c8c; }

/* ================================================
   SOCIAL PROOF
   ================================================ */
.lp-proof { padding: 72px 0; background: #fff; }
.lp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.lp-review {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 28px;
  position: relative;
}
.lp-review--featured {
  background: #fff;
  border: 2px solid #468ae7;
  box-shadow: 0 4px 24px rgba(70,138,231,0.12);
}
.lp-review-badge {
  display: inline-block;
  background: #468ae7;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.lp-review-stars { color: #f7c02e; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.lp-review p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
}
.lp-reviewer { display: flex; align-items: center; gap: 12px; }
.lp-reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.lp-reviewer strong { display: block; font-size: 14px; color: #383838; }
.lp-reviewer span   { font-size: 12px; color: #8c8c8c; }

/* Proof stats bar */
.lp-proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
}
.lp-proof-stat {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.lp-proof-stat:last-child { border-right: none; }
.lp-proof-stat strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}
.lp-proof-stat span { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ================================================
   FAQ
   ================================================ */
.lp-faq { padding: 72px 0; background: #f4f4f4; }
.lp-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 16px;
}
.lp-faq-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
}
.lp-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #383838;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s;
}
.lp-faq-q:hover { background: #f8fbff; }
.lp-faq-q i { color: #468ae7; flex-shrink: 0; transition: transform 0.25s; }
.lp-faq-item.open .lp-faq-q i { transform: rotate(180deg); }
.lp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}
.lp-faq-item.open .lp-faq-a {
  max-height: 200px;
  padding: 0 20px 18px;
}
.lp-faq-a p { font-size: 14px; line-height: 1.7; color: #8c8c8c; }

/* ================================================
   FINAL CTA
   ================================================ */
.lp-final-cta {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.6) 100%),
    url('images/lisbon-porto.webp') center / cover no-repeat;
  padding: 80px 20px;
}
.lp-final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.lp-final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 12px;
  margin-bottom: 20px;
}
.lp-final-cta-content h2 { font-size: 38px; color: #fff; margin-bottom: 14px; line-height: 1.25; }
.lp-final-cta-content p  { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }

/* ================================================
   RESPONSIVE — LANDING PAGE
   ================================================ */

/* Tablet */
@media (max-width: 1140px) {
  .lp-value-grid { grid-template-columns: 1fr 1.2fr; gap: 40px; }
  .lp-reviews-grid { gap: 18px; }
}

/* Mobile landscape */
@media (max-width: 999px) {
  .lp-headline { font-size: 40px; }
  .lp-problem-grid { grid-template-columns: 1fr; gap: 24px; }
  .lp-problem-vs { display: none; }
  .lp-problem-col:first-child { opacity: 0.6; }
  .lp-value-grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .lp-proof-bar { grid-template-columns: repeat(2, 1fr); }
  .lp-faq-grid { grid-template-columns: 1fr; }
  .lp-steps { flex-direction: column; align-items: center; gap: 28px; }
  .lp-step { max-width: 340px; }
  .lp-step-arrow { display: none; }
  .lp-final-cta-content h2 { font-size: 30px; }
}

/* Mobile portrait */
@media (max-width: 767px) {
  /* Hero */
  .lp-hero { min-height: auto; background-attachment: scroll; }
  .lp-hero-content { padding: 5px 16px 36px; }
  .lp-trust-badge { gap: 3px; margin-bottom: 64px; }
  .lp-trust-badge .lp-stars { font-size: 13px; letter-spacing: 3px; color: rgba(247,192,46,0.75); }
  .lp-trust-badge > span:last-child { font-size: 11px; color: rgba(255,255,255,0.50); }
  .lp-headline { font-size: 28px; margin-bottom: 14px; letter-spacing: -0.2px; }
  .lp-subheadline { font-size: 15px; margin-bottom: 20px; }
  .lp-trust-strip {
    flex-wrap: wrap;
    gap: 0;
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 22px;
  }
  .lp-trust-item { font-size: 12px; padding: 4px 8px; }
  .lp-trust-divider { display: none; }
  .lp-cta-group { gap: 10px; }
  .lp-cta-primary { padding: 14px 22px; font-size: 14px; }
  .lp-cta-secondary { padding: 14px 20px; font-size: 14px; }
  .lp-reassurance { gap: 10px; font-size: 11px; }
  .lp-scroll-hint { display: none; }

  /* Problem */
  .lp-problem { padding: 40px 0; }
  .lp-problem-col:first-child { display: none; }
  .lp-problem-list li { font-size: 14px; }

  /* How it works */
  .lp-how { padding: 48px 0; }
  .lp-step-icon { width: 60px; height: 60px; font-size: 22px; }
  .lp-step h3 { font-size: 16px; }

  /* Value stack */
  .lp-value { padding: 48px 0; }
  .lp-value-left h2 { font-size: 26px; }
  .lp-value-price { font-size: 38px; }
  .lp-value-list li { padding: 13px 16px; gap: 12px; }
  .lp-value-icon { width: 36px; height: 36px; font-size: 15px; }
  .lp-value-text strong { font-size: 13px; }
  .lp-value-text span   { font-size: 12px; }

  /* Social proof */
  .lp-proof { padding: 48px 0; }
  .lp-proof-bar { grid-template-columns: repeat(2, 1fr); }
  .lp-proof-stat { padding: 20px 12px; }
  .lp-proof-stat strong { font-size: 28px; }

  /* FAQ */
  .lp-faq { padding: 48px 0; }
  .lp-faq-q { font-size: 13px; padding: 15px 16px; }

  /* Final CTA */
  .lp-final-cta { padding: 56px 16px; }
  .lp-final-cta-content h2 { font-size: 24px; }
  .lp-final-cta-content p  { font-size: 15px; margin-bottom: 24px; }
}

/* Small mobile */
@media (max-width: 419px) {
  .lp-headline { font-size: 24px; }
  .lp-cta-group { flex-direction: column; }
  .lp-cta-primary, .lp-cta-secondary { width: 100%; justify-content: center; }
  .lp-proof-bar { grid-template-columns: repeat(2, 1fr); }
  .lp-proof-stat strong { font-size: 24px; }
}
