/**
 * MYPEAS Landing Pages Stylesheet
 * Conversion-optimized styles for email marketing funnel pages
 * Inherits from design-system.css color palette and variables
 */

/* ============================================
   LANDING PAGE BASE STYLES
   ============================================ */
.lp-page {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
  min-height: 100vh;
}

.lp-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================================
   MINIMAL NAVIGATION (Conversion-focused)
   ============================================ */
.lp-nav {
  background: #ffffff;
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

@media (min-width: 768px) {
  .lp-nav {
    padding: 16px 24px;
  }
}

.lp-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.lp-logo {
  height: 28px;
  width: auto;
}

@media (min-width: 768px) {
  .lp-logo {
    height: 36px;
  }
}

.lp-nav-cta {
  display: inline-flex;
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .lp-nav-cta {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
  }
}

/* Mobile show/hide utilities */
.lp-show-mobile {
  display: inline;
}
.lp-hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .lp-show-mobile {
    display: none;
  }
  .lp-hide-mobile {
    display: inline;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.lp-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 80px 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .lp-hero {
    padding: 120px 24px;
  }
}

.lp-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.lp-hero h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .lp-hero h1 {
    font-size: 48px;
  }
}

.lp-hero-subtitle {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 40px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .lp-hero-subtitle {
    font-size: 20px;
  }
}

/* Search Box in Hero */
.lp-hero-search {
  max-width: 500px;
  margin: 0 auto 24px;
}

.lp-search-input {
  width: 100%;
  padding: 18px 24px;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: all 0.2s ease;
}

.lp-search-input::placeholder {
  color: #94a3b8;
}

.lp-search-input:focus {
  outline: none;
  border-color: #1bb978;
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
}

.lp-btn-primary {
  background: linear-gradient(135deg, #1bb978 0%, #0e8856 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(27, 185, 120, 0.3);
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 185, 120, 0.4);
}

.lp-btn-secondary {
  background: #ffffff;
  color: #1e293b;
  border: 2px solid #e2e8f0;
}

.lp-btn-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.lp-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.lp-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.lp-btn-lg {
  padding: 20px 40px;
  font-size: 18px;
}

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

/* ============================================
   SOCIAL PROOF STRIP
   ============================================ */
.lp-social-proof {
  background: #ffffff;
  padding: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.lp-social-proof-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.lp-proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #64748b;
}

.lp-proof-number {
  font-size: 24px;
  font-weight: 700;
  color: #1bb978;
}

@media (min-width: 768px) {
  .lp-social-proof-container {
    gap: 64px;
  }

  .lp-proof-item {
    font-size: 16px;
  }

  .lp-proof-number {
    font-size: 32px;
  }
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.lp-section {
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .lp-section {
    padding: 96px 24px;
  }
}

.lp-section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.lp-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .lp-section-title {
    font-size: 36px;
  }
}

.lp-section-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
}

/* Alternating section backgrounds */
.lp-section-alt {
  background: #ffffff;
}

/* ============================================
   VALUE PROPOSITION CARDS
   ============================================ */
.lp-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .lp-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.lp-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  text-align: center;
}

.lp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.lp-card-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.lp-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.lp-card-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* ============================================
   PREVIEW / TEASER SECTION
   ============================================ */
.lp-preview {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.lp-preview-blur {
  position: relative;
}

.lp-preview-blur::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  pointer-events: none;
}

.lp-preview-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.lp-preview-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1bb978 0%, #0e8856 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
}

.lp-preview-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
}

.lp-preview-subtitle {
  font-size: 14px;
  color: #64748b;
}

.lp-preview-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.lp-preview-stat:last-child {
  border-bottom: none;
}

.lp-preview-stat-label {
  font-size: 14px;
  color: #64748b;
}

.lp-preview-stat-value {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-left: auto;
}

/* ============================================
   PROCESS / STEPS SECTION
   ============================================ */
.lp-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 600px;
  margin: 0 auto;
}

.lp-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.lp-step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1bb978 0%, #0e8856 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.lp-step-content {
  flex: 1;
}

.lp-step-title {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.lp-step-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.lp-comparison {
  overflow-x: auto;
}

.lp-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.lp-comparison-table th,
.lp-comparison-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.lp-comparison-table th {
  background: #f8fafc;
  font-weight: 600;
  color: #1e293b;
  font-size: 14px;
}

.lp-comparison-table td {
  font-size: 14px;
  color: #64748b;
}

.lp-comparison-table tr:last-child td {
  border-bottom: none;
}

.lp-comparison-highlight {
  background: rgba(27, 185, 120, 0.05);
}

.lp-comparison-highlight td {
  color: #1e293b;
  font-weight: 500;
}

.lp-check {
  color: #1bb978;
  font-size: 18px;
}

.lp-cross {
  color: #e53e3e;
  font-size: 18px;
}

/* ============================================
   PRICING DISPLAY
   ============================================ */
.lp-price {
  text-align: center;
  margin-bottom: 8px;
}

.lp-price-amount {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
}

.lp-price-currency {
  font-size: 28px;
  vertical-align: super;
}

.lp-price-period {
  font-size: 18px;
  color: #94a3b8;
  font-weight: 400;
}

.lp-price-billing {
  font-size: 14px;
  color: #64748b;
}

.lp-price-alt {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 32px;
  text-align: center;
}

.lp-price-note {
  font-size: 14px;
  color: #64748b;
  margin-top: 8px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.lp-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.lp-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.lp-faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  text-align: left;
}

.lp-faq-question:hover {
  background: #f8fafc;
}

.lp-faq-icon {
  font-size: 20px;
  color: #64748b;
  transition: transform 0.2s ease;
}

.lp-faq-item.active .lp-faq-icon {
  transform: rotate(180deg);
}

.lp-faq-answer {
  padding: 0 24px 20px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  display: none;
}

.lp-faq-item.active .lp-faq-answer {
  display: block;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.lp-final-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 80px 24px;
  text-align: center;
}

.lp-final-cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.lp-final-cta h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .lp-final-cta h2 {
    font-size: 36px;
  }
}

.lp-final-cta p {
  font-size: 16px;
  color: #94a3b8;
  margin-bottom: 32px;
}

/* ============================================
   MAIN SITE FOOTER (from profile-redesign.css)
   ============================================ */
.mypeas-footer {
  background: #1e293b;
  color: #e2e8f0;
  margin-top: 0;
}

.mypeas-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 1.5rem;
}

.mypeas-footer__main {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2rem;
}

.mypeas-footer__brand {
  padding-right: 2rem;
}

.mypeas-footer__logo-link {
  display: inline-block;
  margin-bottom: 1rem;
}

.mypeas-footer__logo {
  height: 32px;
  filter: brightness(0) invert(1);
}

.mypeas-footer__tagline {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.mypeas-footer__social {
  display: flex;
  gap: 1rem;
}

.mypeas-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #334155;
  color: #e2e8f0;
  transition: all 0.2s;
}

.mypeas-footer__social-link:hover {
  background: #6366f1;
  transform: translateY(-2px);
}

.mypeas-footer__column {
  min-width: 0;
}

.mypeas-footer__heading {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mypeas-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mypeas-footer__links li {
  margin-bottom: 0.75rem;
}

.mypeas-footer__links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.mypeas-footer__links a:hover {
  color: white;
}

.mypeas-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #334155;
  text-align: center;
}

.mypeas-footer__bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

@media (max-width: 768px) {
  .mypeas-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }

  .mypeas-footer__brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .mypeas-footer__main {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SIGNUP MODAL
   ============================================ */
.lp-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lp-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lp-modal {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.2);
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lp-modal-overlay.active .lp-modal {
  transform: scale(1);
}

.lp-modal-header {
  padding: 32px 32px 24px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.lp-modal-title {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.lp-modal-subtitle {
  font-size: 14px;
  color: #64748b;
}

.lp-modal-body {
  padding: 24px 32px 32px;
}

.lp-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px;
}

.lp-modal-close:hover {
  color: #1e293b;
}

/* ============================================
   FORM STYLES
   ============================================ */
.lp-form-group {
  margin-bottom: 20px;
}

.lp-form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 8px;
}

.lp-form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-family: inherit;
  color: #1e293b;
}

.lp-form-input:focus {
  outline: none;
  border-color: #1bb978;
  box-shadow: 0 0 0 3px rgba(27, 185, 120, 0.1);
}

.lp-form-input.error {
  border-color: #e53e3e;
}

.lp-form-error {
  font-size: 12px;
  color: #e53e3e;
  margin-top: 6px;
}

.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Hidden fields */
.lp-form-hidden {
  display: none;
}

/* ============================================
   OPTION CARDS (for upsell pages)
   ============================================ */
.lp-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.lp-option-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s ease;
}

.lp-option-card:hover {
  border-color: #1bb978;
  box-shadow: 0 8px 24px rgba(27, 185, 120, 0.1);
}

.lp-option-card.featured {
  border-color: #1bb978;
  position: relative;
}

.lp-option-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1bb978;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
}

.lp-option-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.lp-option-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.lp-option-price {
  font-size: 24px;
  font-weight: 700;
  color: #1bb978;
  margin-bottom: 16px;
}

.lp-option-price.free {
  color: #64748b;
}

.lp-option-description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ============================================
   BENEFIT LIST
   ============================================ */
.lp-benefits {
  list-style: none;
  text-align: left;
}

.lp-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: #4a5568;
}

.lp-benefit-icon {
  color: #1bb978;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   DASHBOARD PREVIEW (Track Impact)
   ============================================ */
.lp-dashboard-preview {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  max-width: 500px;
  margin: 0 auto;
}

.lp-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.lp-dashboard-title {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}

.lp-dashboard-period {
  font-size: 12px;
  color: #94a3b8;
}

.lp-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.lp-dashboard-stat {
  padding: 16px;
  background: #f8fafc;
  border-radius: 8px;
}

.lp-dashboard-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #1bb978;
}

.lp-dashboard-stat-label {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

/* ============================================
   USE CASES TAGS
   ============================================ */
.lp-use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.lp-use-case {
  background: #f1f5f9;
  color: #475569;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

/* ============================================
   PROBLEM/SOLUTION LAYOUT
   ============================================ */
.lp-problem-solution {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .lp-problem-solution {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-problem,
.lp-solution {
  padding: 32px;
  border-radius: 16px;
}

.lp-problem {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.lp-solution {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.lp-problem-title,
.lp-solution-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.lp-problem-title {
  color: #991b1b;
}

.lp-solution-title {
  color: #065f46;
}

.lp-problem-list,
.lp-solution-list {
  list-style: none;
}

.lp-problem-list li,
.lp-solution-list li {
  padding: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lp-problem-list li {
  color: #7f1d1d;
}

.lp-solution-list li {
  color: #064e3b;
}

/* ============================================
   LOADING STATES
   ============================================ */
.lp-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lp-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: lp-spin 0.6s linear infinite;
}

@keyframes lp-spin {
  to { transform: rotate(360deg); }
}

.lp-btn-loading {
  opacity: 0.7;
  pointer-events: none;
}

/* ============================================
   TRUST SIGNALS
   ============================================ */
.lp-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  font-size: 12px;
  color: #94a3b8;
}

.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-trust-icon {
  font-size: 16px;
}

/* ============================================
   LONG-FORM LANDING PAGE STYLES
   ============================================ */

/* Container utilities */
.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-container-narrow {
  max-width: 800px;
}

/* Large Hero for Long-Form Pages */
.lp-hero-large {
  padding: 100px 24px 80px;
}

@media (min-width: 768px) {
  .lp-hero-large {
    padding: 140px 24px 100px;
  }
}

.lp-hero-large h1 {
  font-size: 36px;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .lp-hero-large h1 {
    font-size: 52px;
  }
}

.lp-hero-eyebrow {
  display: inline-block;
  background: rgba(27, 185, 120, 0.2);
  color: #1bb978;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lp-hero-cta-group {
  margin-top: 40px;
}

.lp-hero-cta-note {
  margin-top: 16px;
  font-size: 14px;
  color: #94a3b8;
}

/* Extra Large Button */
.lp-btn-xl {
  padding: 24px 48px;
  font-size: 20px;
  border-radius: 12px;
}

/* Sticky Nav Enhancement */
.lp-nav-sticky {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
}

.lp-long-form {
  padding-top: 70px; /* Account for fixed nav */
}

/* Social Proof Bar */
.lp-social-proof-bar {
  background: #ffffff;
  padding: 32px 24px;
  border-bottom: 1px solid #e2e8f0;
}

.lp-social-proof-text {
  text-align: center;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.lp-social-proof-number {
  font-weight: 700;
  color: #1bb978;
  font-size: 16px;
}

.lp-logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  opacity: 0.6;
}

.lp-logo-strip img {
  height: 24px;
  width: auto;
  filter: grayscale(100%);
  transition: all 0.2s ease;
}

.lp-logo-strip img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (min-width: 768px) {
  .lp-logo-strip {
    gap: 48px;
  }

  .lp-logo-strip img {
    height: 28px;
  }
}

/* Section Eyebrow */
.lp-section-eyebrow {
  display: inline-block;
  color: #1bb978;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* Problem Section */
.lp-section-problem {
  background: #f8fafc;
}

.lp-problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

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

.lp-problem-item {
  text-align: center;
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.lp-problem-item .lp-problem-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.lp-problem-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
}

.lp-problem-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Section CTA */
.lp-section-cta {
  text-align: center;
  margin-top: 48px;
}

.lp-cta-note {
  margin-top: 12px;
  font-size: 14px;
  color: #64748b;
}

.lp-cta-note-light {
  color: #94a3b8;
}

/* ============================================
   TRACK IMPACT PRO SECTION
   ============================================ */
.lp-track-impact-features {
  max-width: 700px;
  margin: 0 auto;
}

.lp-track-impact-card {
  background: #ffffff;
  border: 2px solid #1bb978;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(27, 185, 120, 0.15);
}

.lp-track-impact-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 32px;
  text-align: center;
  color: #ffffff;
}

.lp-track-impact-badge {
  display: inline-block;
  background: #1bb978;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lp-track-impact-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.lp-track-impact-header p {
  font-size: 15px;
  color: #94a3b8;
}

.lp-track-impact-list {
  list-style: none;
  padding: 32px;
}

.lp-track-impact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 15px;
  color: #1e293b;
}

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

.lp-track-impact-list .lp-check {
  color: #1bb978;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.lp-track-impact-list strong {
  color: #1e293b;
}

.lp-track-impact-value {
  background: #f8fafc;
  padding: 24px 32px;
  border-top: 1px solid #e2e8f0;
}

.lp-track-impact-value p {
  font-size: 14px;
  color: #64748b;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

.lp-cta-intro {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 24px;
  font-weight: 500;
}

/* Feature Showcase (Image + Text) */
.lp-feature-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .lp-feature-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.lp-feature-visual {
  order: 1;
}

@media (min-width: 768px) {
  .lp-feature-visual {
    order: 0;
  }
}

/* Mock Profile Card */
.lp-mock-profile {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.lp-mock-header {
  margin-bottom: 24px;
}

.lp-mock-badge {
  display: inline-block;
  background: #ecfdf5;
  color: #059669;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.lp-mock-header h4 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
}

.lp-mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.lp-mock-stat {
  text-align: center;
  padding: 16px 8px;
  background: #f8fafc;
  border-radius: 8px;
}

.lp-mock-stat-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #1bb978;
}

.lp-mock-stat-label {
  display: block;
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
}

.lp-mock-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-mock-tool {
  background: #f1f5f9;
  color: #475569;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

/* Feature Content List */
.lp-feature-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
}

.lp-feature-list {
  list-style: none;
}

.lp-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.lp-feature-check {
  width: 28px;
  height: 28px;
  background: #ecfdf5;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.lp-feature-list li strong {
  display: block;
  font-size: 16px;
  color: #1e293b;
  margin-bottom: 4px;
}

.lp-feature-list li p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* Horizontal Steps */
.lp-steps-horizontal {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .lp-steps-horizontal {
    flex-direction: row;
    gap: 16px;
  }
}

.lp-step-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  transition: all 0.2s ease;
}

.lp-step-card:hover {
  border-color: #1bb978;
  box-shadow: 0 8px 24px rgba(27, 185, 120, 0.1);
}

.lp-step-card .lp-step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  font-size: 24px;
}

.lp-step-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
}

.lp-step-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.lp-step-arrow {
  display: none;
  font-size: 24px;
  color: #cbd5e1;
}

@media (min-width: 768px) {
  .lp-step-arrow {
    display: block;
  }
}

/* Testimonials Grid */
.lp-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.lp-testimonial {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
}

.lp-testimonial-content {
  margin-bottom: 24px;
}

.lp-testimonial-content p {
  font-size: 15px;
  color: #1e293b;
  line-height: 1.6;
  font-style: italic;
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1bb978 0%, #0e8856 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.lp-testimonial-author strong {
  display: block;
  font-size: 14px;
  color: #1e293b;
}

.lp-testimonial-author span {
  font-size: 13px;
  color: #64748b;
}

/* Profile Grid */
.lp-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .lp-profile-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.lp-profile-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}

.lp-profile-card:hover {
  border-color: #1bb978;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 185, 120, 0.12);
}

.lp-profile-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
}

.lp-profile-meta {
  font-size: 12px;
  color: #64748b;
}

/* FAQ Enhancement */
.lp-faq-icon {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.2s ease;
}

.lp-faq-item.active .lp-faq-icon {
  transform: rotate(45deg);
}

.lp-faq-answer p {
  margin: 0;
}

/* Final CTA Section */
.lp-final-cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 80px 24px;
}

@media (min-width: 768px) {
  .lp-final-cta-section {
    padding: 120px 24px;
  }
}

.lp-final-cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.lp-final-cta-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .lp-final-cta-content h2 {
    font-size: 36px;
  }
}

.lp-final-cta-content > p {
  font-size: 16px;
  color: #94a3b8;
  margin-bottom: 40px;
}

/* Signup Box */
.lp-signup-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}

.lp-search-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .lp-search-form {
    flex-direction: row;
  }
}

.lp-search-form .lp-search-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 16px;
}

.lp-search-form .lp-search-input::placeholder {
  color: #94a3b8;
}

.lp-search-form .lp-search-input:focus {
  outline: none;
  border-color: #1bb978;
  background: rgba(255, 255, 255, 0.15);
}

.lp-search-form .lp-btn {
  white-space: nowrap;
}

.lp-signup-note {
  font-size: 13px;
  color: #64748b;
  margin-top: 12px;
}

/* Trust Badges */
.lp-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.lp-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #94a3b8;
}

.lp-trust-badge .lp-trust-icon {
  font-size: 18px;
}

/* ============================================
   CASE STUDY SECTION
   ============================================ */
.lp-section-highlight {
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
}

.lp-case-study-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

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

.lp-case-study {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.lp-case-study-logo {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.lp-case-study-quote {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 16px 0;
  flex: 1;
}

.lp-case-study-cite {
  font-size: 13px;
  color: #64748b;
  font-style: normal;
}

/* ============================================
   FOUR PILLARS SECTION
   ============================================ */
.lp-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .lp-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.lp-pillar {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s ease;
}

.lp-pillar:hover {
  border-color: #1bb978;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 185, 120, 0.12);
}

.lp-pillar-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.lp-pillar-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.lp-pillar-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* ============================================
   FUNCTION GRID (Browse by Job Function)
   ============================================ */
.lp-function-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .lp-function-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.lp-function-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}

.lp-function-card:hover {
  border-color: #1bb978;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 185, 120, 0.12);
}

.lp-function-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.lp-function-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.lp-function-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.5;
}

.lp-function-link {
  font-size: 14px;
  font-weight: 600;
  color: #1bb978;
}

/* ============================================
   JOURNEY STEPS (Vertical Timeline)
   ============================================ */
.lp-journey-steps {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.lp-journey-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.lp-journey-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1bb978 0%, #0e8856 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(27, 185, 120, 0.3);
}

.lp-journey-content {
  flex: 1;
  padding-bottom: 8px;
}

.lp-journey-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.lp-journey-text {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 12px;
}

.lp-journey-tag {
  display: inline-block;
  background: #ecfdf5;
  color: #059669;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

.lp-journey-connector {
  width: 4px;
  height: 32px;
  background: linear-gradient(to bottom, #1bb978, #e2e8f0);
  margin-left: 26px;
  border-radius: 2px;
}

/* ============================================
   PROFILE PREVIEW (Detailed Sample)
   ============================================ */
.lp-profile-preview {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.lp-profile-preview-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 32px;
  text-align: center;
  color: #ffffff;
}

.lp-profile-preview-badge {
  display: inline-block;
  background: rgba(27, 185, 120, 0.2);
  color: #1bb978;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lp-profile-preview-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.lp-profile-preview-header p {
  font-size: 14px;
  color: #94a3b8;
}

.lp-profile-preview-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 640px) {
  .lp-profile-preview-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-profile-preview-stat {
  text-align: center;
  padding: 16px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lp-profile-preview-value {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #1bb978;
}

.lp-profile-preview-label {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

.lp-profile-preview-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 32px;
}

@media (min-width: 768px) {
  .lp-profile-preview-sections {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-profile-preview-section h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}

.lp-profile-preview-section ul {
  list-style: none;
}

.lp-profile-preview-section li {
  font-size: 14px;
  color: #475569;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.lp-profile-preview-section li:last-child {
  border-bottom: none;
}

.lp-profile-preview-section li.lp-preview-more {
  color: #1bb978;
  font-weight: 600;
}

.lp-profile-preview-cta {
  background: #f8fafc;
  padding: 24px 32px;
  text-align: center;
  border-top: 1px solid #e2e8f0;
}

.lp-profile-preview-cta p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}

/* ============================================
   CASE STUDIES CAROUSEL WIDGET
   ============================================ */
.case-studies-widget {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.case-studies-widget .widget-header {
  text-align: center;
  margin-bottom: 2rem;
}

.case-studies-widget .widget-header .lp-section-title {
  margin-bottom: 0.5rem;
}

.case-studies-widget .widget-header .lp-section-subtitle {
  margin-bottom: 0;
}

/* Logo Bar */
.logo-bar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding: 0.5rem 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
}

.logo-bar::-webkit-scrollbar {
  display: none;
}

.logo-bar.dragging {
  cursor: grabbing;
}

.logo-item {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: #f8fafc;
  flex-shrink: 0;
}

.logo-item img {
  height: 20px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(50%);
  opacity: 0.7;
}

.logo-item.active {
  border-color: #1bb978;
  background: white;
  box-shadow: 0 4px 12px rgba(27, 185, 120, 0.15);
}

.logo-item.active img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Carousel Container */
.carousel-container {
  position: relative;
}

.carousel-slide {
  display: none;
  animation: carouselFadeIn 0.5s ease;
}

.carousel-slide.active {
  display: block;
}

@keyframes carouselFadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Slide Content */
.slide-content {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.slide-content::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 6rem;
  color: #1bb978;
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.slide-company {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.slide-company img {
  height: 32px;
}

.slide-company-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
}

.slide-tag {
  display: inline-block;
  background: #1bb978;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: auto;
}

.slide-quote {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.5;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.slide-summary {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.slide-relevance {
  background: white;
  border-left: 4px solid #1bb978;
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
}

.slide-relevance-title {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.slide-relevance-text {
  color: #64748b;
  font-size: 0.875rem;
}

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 1rem;
  color: #475569;
}

.carousel-btn:hover {
  border-color: #1bb978;
  color: #1bb978;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: #1bb978;
  width: 24px;
  border-radius: 4px;
}

/* Widget CTA */
.widget-cta {
  background: linear-gradient(135deg, rgba(27, 185, 120, 0.1) 0%, rgba(14, 136, 86, 0.1) 100%);
  border: 1px solid rgba(27, 185, 120, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.widget-cta .lp-cta-intro {
  margin-bottom: 1rem;
}

/* Mobile Responsiveness for Carousel */
@media (max-width: 768px) {
  .slide-content {
    padding: 1.5rem;
  }

  .slide-quote {
    font-size: 1rem;
  }

  .slide-company {
    flex-wrap: wrap;
  }

  .slide-tag {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .case-studies-widget {
    padding: 1.5rem;
  }
}

/* ============================================
   AI ASSESSMENT QUIZ MODAL
   ============================================ */
.quiz-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quiz-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.quiz-modal {
  background: #ffffff;
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.quiz-modal-overlay.active .quiz-modal {
  transform: translateY(0);
}

.quiz-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #94a3b8;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.quiz-modal-close:hover {
  background: #f1f5f9;
  color: #475569;
}

.quiz-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.quiz-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.quiz-header p {
  font-size: 0.95rem;
  color: #64748b;
}

.quiz-progress {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #f8fafc;
}

.quiz-progress-step {
  flex: 1;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  transition: background 0.3s;
}

.quiz-progress-step.completed {
  background: #1bb978;
}

.quiz-progress-step.current {
  background: linear-gradient(90deg, #1bb978 50%, #e2e8f0 50%);
}

.quiz-body {
  padding: 2rem;
}

.quiz-question {
  display: none;
}

.quiz-question.active {
  display: block;
}

.quiz-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
  color: #1e293b;
}

.quiz-option:hover {
  border-color: #1bb978;
  background: rgba(27, 185, 120, 0.05);
}

.quiz-option.selected {
  border-color: #1bb978;
  background: rgba(27, 185, 120, 0.1);
}

/* "What this means for you" insight box */
.quiz-insight {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(27, 185, 120, 0.1) 0%, rgba(14, 136, 86, 0.05) 100%);
  border: 1px solid rgba(27, 185, 120, 0.2);
  border-radius: 12px;
  display: none;
}

.quiz-insight.visible {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-insight-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0e8856;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.quiz-insight-text {
  font-size: 0.95rem;
  color: #1e293b;
  line-height: 1.5;
}

.quiz-next-btn {
  display: none;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  background: #1bb978;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.quiz-next-btn.visible {
  display: block;
}

.quiz-next-btn:hover {
  background: #0e8856;
}

/* Final step - account creation */
.quiz-final {
  display: none;
  text-align: center;
}

.quiz-final.active {
  display: block;
}

.quiz-final h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.quiz-final p {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.quiz-summary {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.quiz-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid #e2e8f0;
}

.quiz-summary-item:last-child {
  border-bottom: none;
}

.quiz-summary-label {
  color: #64748b;
}

.quiz-summary-value {
  color: #1e293b;
  font-weight: 500;
}

.quiz-form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.quiz-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 0.5rem;
}

.quiz-form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.quiz-form-group input:focus {
  outline: none;
  border-color: #1bb978;
}

.quiz-form-group input:read-only {
  background: #f8fafc;
  color: #64748b;
}

.quiz-submit-btn {
  width: 100%;
  padding: 1rem;
  background: #1bb978;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.quiz-submit-btn:hover {
  background: #0e8856;
}

.quiz-skip-link {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #64748b;
  text-decoration: underline;
  cursor: pointer;
}

.quiz-skip-link:hover {
  color: #475569;
}

/* Mobile: Full-screen quiz modal */
@media (max-width: 640px) {
  .quiz-modal-overlay {
    padding: 0;
    align-items: stretch;
  }

  .quiz-modal {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }

  .quiz-modal-close {
    position: fixed;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
  }

  .quiz-header {
    padding: 1.5rem 1.25rem 1rem;
    flex-shrink: 0;
  }

  .quiz-header h2 {
    font-size: 1.25rem;
    padding-right: 2rem;
  }

  .quiz-progress {
    padding: 0.75rem 1.25rem;
    flex-shrink: 0;
  }

  .quiz-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  .quiz-question {
    flex: 1;
    display: none;
    flex-direction: column;
  }

  .quiz-question.active {
    display: flex;
  }

  .quiz-question h3 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
  }

  .quiz-options {
    flex: 1;
    justify-content: flex-start;
  }

  .quiz-option {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }

  .quiz-insight {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    flex-shrink: 0;
  }

  .quiz-next-btn {
    margin-top: auto;
    padding: 1rem;
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    background: #1bb978;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  }

  .quiz-final {
    flex: 1;
    display: none;
    flex-direction: column;
  }

  .quiz-final.active {
    display: flex;
  }
}

/* ============================================
   WIZARD MODAL MOBILE FULL-SCREEN
   (For landing pages using the homepage wizard modal)
   ============================================ */
@media (max-width: 640px) {
  .lp-page .modal-overlay {
    padding: 0;
    align-items: stretch;
  }

  .lp-page .modal-container,
  .lp-page .modal-container.large {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .lp-page .modal-close {
    position: fixed;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 50%;
  }

  .lp-page .modal-body {
    flex: 1;
    overflow-y: auto;
  }

  .lp-page .modal-footer {
    position: sticky;
    bottom: 0;
    background: #ffffff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e2e8f0;
  }
}

/* ============================================
   TRACK IMPACT QUIZ - SIGNUP STEP STYLES
   ============================================ */

/* Signup step header */
.quiz-signup-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.quiz-signup-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.quiz-signup-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.quiz-signup-header p {
  font-size: 0.9rem;
  color: #64748b;
}

/* Signup form */
.quiz-signup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quiz-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quiz-form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
}

.quiz-form-group input {
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.quiz-form-group input:focus {
  outline: none;
  border-color: #1bb978;
  box-shadow: 0 0 0 3px rgba(27, 185, 120, 0.1);
}

.quiz-form-hint {
  font-size: 0.75rem;
  color: #94a3b8;
}

.quiz-code-input {
  text-align: center;
  font-size: 1.25rem !important;
  letter-spacing: 0.5rem;
  font-family: monospace !important;
}

/* Signup error message */
.quiz-signup-error {
  color: #e53e3e;
  background: #fff5f5;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  border-left: 3px solid #e53e3e;
  display: none;
}

.quiz-signup-error.visible {
  display: block;
}

/* Submit button */
.quiz-submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #1bb978 0%, #0e8856 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.quiz-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 185, 120, 0.3);
}

.quiz-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Resend button */
.quiz-resend-btn {
  width: 100%;
  padding: 0.875rem;
  background: transparent;
  color: #1bb978;
  border: 2px solid #1bb978;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.quiz-resend-btn:hover:not(:disabled) {
  background: rgba(27, 185, 120, 0.05);
}

.quiz-resend-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Login link */
.quiz-signup-login {
  text-align: center;
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.5rem;
}

.quiz-signup-login a {
  color: #1bb978;
  font-weight: 600;
  text-decoration: none;
}

.quiz-signup-login a:hover {
  text-decoration: underline;
}

/* Spinner */
.quiz-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: quiz-spin 0.6s linear infinite;
}

@keyframes quiz-spin {
  to { transform: rotate(360deg); }
}

/* Success toast */
.quiz-success-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #1bb978 0%, #0e8856 100%);
  color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(27, 185, 120, 0.3);
  z-index: 10003;
  font-weight: 500;
  animation: toast-slide-in 0.3s ease;
}

.quiz-success-toast.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes toast-slide-in {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Verification step styling */
.quiz-verify-step .quiz-signup-header {
  margin-bottom: 2rem;
}

.quiz-verify-step .quiz-signup-header strong {
  color: #1e293b;
}

/* Mobile adjustments for signup step */
@media (max-width: 640px) {
  .quiz-signup-step,
  .quiz-verify-step {
    padding-bottom: 1rem;
  }

  .quiz-signup-header h3 {
    font-size: 1.1rem;
  }

  .quiz-form-group input {
    padding: 0.75rem 0.875rem;
    font-size: 16px; /* Prevents iOS zoom */
  }

  .quiz-submit-btn {
    position: sticky;
    bottom: 0;
    margin-top: auto;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  }

  .quiz-success-toast {
    left: 1rem;
    right: 1rem;
    top: auto;
    bottom: 1rem;
  }
}

/* ============================================
   WIZARD MODAL - Scrollable Body with Fixed Footer
   ============================================ */

/* Wizard modal needs flex layout to keep footer visible */
#wizard-modal .modal-container.large {
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow: hidden; /* Container doesn't scroll, body does */
}

/* Progress bar section stays fixed */
#wizard-modal .modal-container.large > div:first-of-type {
  flex-shrink: 0;
}

/* Body scrolls independently */
#wizard-modal .modal-body {
  flex: 1;
  overflow-y: auto;
  min-height: 0; /* Important for flex overflow to work */
}

/* Footer stays pinned at bottom */
#wizard-modal .modal-footer {
  flex-shrink: 0;
}

/* Mobile: Full-screen wizard modal */
@media (max-width: 640px) {
  #wizard-modal .modal-overlay {
    padding: 0;
  }

  #wizard-modal .modal-container.large {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
  }

  #wizard-modal .modal-close {
    position: fixed;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
  }
}

/* ============================================
   PRO UPGRADE MODAL
   ============================================ */
.lp-modal-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.lp-modal-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.lp-modal-header p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

/* Billing Toggle */
.lp-billing-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.lp-billing-option {
  flex: 1;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
}

.lp-billing-option:hover {
  border-color: #cbd5e1;
}

.lp-billing-option.selected {
  border-color: #1bb978;
  background: #f0fdf4;
}

.lp-billing-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.lp-billing-price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #1bb978;
  margin-bottom: 2px;
}

.lp-billing-detail {
  display: block;
  font-size: 12px;
  color: #64748b;
}

.lp-billing-badge {
  display: inline-block;
  background: #1bb978;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 8px;
}

/* Upgrade Features */
.lp-upgrade-features {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.lp-upgrade-features h4 {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 12px;
}

.lp-upgrade-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-upgrade-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  padding: 6px 0;
}

.lp-upgrade-features .lp-check {
  color: #1bb978;
  font-weight: 600;
}

/* Error display */
.lp-upgrade-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}

.lp-upgrade-error.visible {
  display: block;
}

/* Upgrade note */
.lp-upgrade-note {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 12px;
}

/* Spinner for loading state */
.lp-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: lp-spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes lp-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   EXAMPLE REPORT VISUAL MOCKUP
   ============================================ */
.lp-example-report-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.lp-report-mockup {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.lp-report-mockup-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 12px 16px;
  display: flex;
  gap: 6px;
}

.lp-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.lp-mockup-dot:first-child {
  background: rgba(255, 255, 255, 0.5);
}

.lp-report-mockup-body {
  padding: 20px;
}

.lp-mockup-title-bar {
  height: 20px;
  width: 60%;
  background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 100%);
  border-radius: 4px;
  margin-bottom: 16px;
}

.lp-mockup-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.lp-mockup-stat {
  flex: 1;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #bbf7d0;
}

.lp-mockup-stat:nth-child(2) {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: #bfdbfe;
}

.lp-mockup-stat:nth-child(3) {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-color: #fcd34d;
}

.lp-mockup-stat:nth-child(4) {
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
  border-color: #d8b4fe;
}

.lp-mockup-charts {
  display: flex;
  gap: 12px;
}

.lp-mockup-chart {
  flex: 1;
  height: 80px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.lp-mockup-chart::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.15) 100%);
  border-radius: 0 0 7px 7px;
}

.lp-mockup-chart:first-child::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid;
  border-color: #22c55e #eab308 #3b82f6 transparent;
}

.lp-mockup-chart:last-child::after {
  background: linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.2) 100%);
}

@media (max-width: 480px) {
  .lp-report-mockup {
    max-width: 100%;
  }

  .lp-mockup-stats {
    flex-wrap: wrap;
  }

  .lp-mockup-stat {
    flex: 1 1 45%;
    min-width: 0;
  }
}
