/* lp.css — Landing page styles for NetWebMedia guide landing pages */
/* Extends css/styles.css */

/* ── LP Hero ─────────────────────────────────────────── */
.lp-hero {
  background: var(--navy, #010F3B);
  padding: 80px 0 72px;
  overflow: hidden;
  position: relative;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,103,31,0.08);
  pointer-events: none;
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .lp-hero-inner { grid-template-columns: 1fr; }
  .lp-guide-mockup { display: none; }
}

.lp-hero-copy .tag {
  display: inline-block;
  background: var(--orange, #FF671F);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.lp-hero-copy h1 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.lp-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 520px;
}

.lp-takeaways {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-takeaways li {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

.lp-takeaways li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange, #FF671F);
  font-weight: 700;
  font-size: 14px;
}

.lp-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange, #FF671F);
  color: white !important;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  margin-bottom: 14px;
}

.lp-download-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.lp-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ── Guide cover mockup ──────────────────────────────── */
.lp-guide-mockup {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 4px 16px rgba(0,0,0,0.2);
  overflow: hidden;
  transform: rotate(2deg);
  aspect-ratio: 8.5 / 11;
  max-width: 340px;
}

.lp-mockup-cover {
  background: var(--navy, #010F3B);
  height: 100%;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.lp-mockup-cover::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,103,31,0.12);
}

.lp-mockup-nwm {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange, #FF671F);
}

.lp-mockup-tag {
  display: inline-block;
  background: var(--orange, #FF671F);
  color: white;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.lp-mockup-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: white;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.lp-mockup-author {
  font-size: 9px;
  color: rgba(255,255,255,0.55);
}

/* ── What's inside section ───────────────────────────── */
.lp-inside {
  padding: 72px 0;
  background: #f8f9fc;
}

.lp-inside h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy, #010F3B);
  text-align: center;
  margin-bottom: 8px;
}

.lp-inside-sub {
  text-align: center;
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 48px;
}

.lp-sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.lp-section-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 24px;
  transition: box-shadow 0.2s;
}

.lp-section-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.lp-section-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange, #FF671F);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.lp-section-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy, #010F3B);
  margin-bottom: 8px;
  line-height: 1.35;
}

.lp-section-card p {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
}

/* ── Download CTA strip ──────────────────────────────── */
.lp-download-strip {
  background: var(--navy, #010F3B);
  padding: 56px 0;
  text-align: center;
}

.lp-download-strip h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}

.lp-download-strip p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── NWM pitch section ───────────────────────────────── */
.lp-nwm-pitch {
  padding: 72px 0;
  background: white;
}

.lp-nwm-pitch-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.lp-nwm-pitch h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy, #010F3B);
  margin-bottom: 16px;
  line-height: 1.25;
}

.lp-nwm-pitch p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 16px;
}

.lp-services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-services-list li {
  font-size: 14px;
  color: var(--navy, #010F3B);
  padding-left: 24px;
  position: relative;
  font-weight: 500;
}

.lp-services-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange, #FF671F);
  font-weight: 700;
}

.lp-nwm-stat-box {
  background: #f8f9fc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-stat {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 20px;
}
.lp-stat:last-child { border-bottom: none; padding-bottom: 0; }

.lp-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--orange, #FF671F);
  line-height: 1;
  margin-bottom: 4px;
}

.lp-stat-label {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.45;
}
