/* UpRecovery Learn LP CSS - Landing Page Specific Styles */

/* Learn LP Header (Simplified) */
.learn-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.learn-header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--container-padding);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.learn-header .nav {
  display: none; /* Hide full nav on Learn LP */
}

.learn-header .home-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  padding: var(--space-2) var(--space-4);
  border-radius: 4px;
  transition: background-color 0.2s;
}

.learn-header .home-link:hover {
  background-color: var(--bg-secondary);
  text-decoration: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--emerald-800) 0%, #047857 100%);
  color: var(--white);
  padding: var(--space-16) 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  line-height: var(--line-height-tight);
}

.hero .deck {
  font-size: 1.25rem;
  margin-bottom: var(--space-8);
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Content Sections */
.content-section {
  padding: var(--space-12) 0;
}

.content-section:nth-child(even) {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Grid */
.features-grid {
  display: grid;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--bg-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--emerald-800);
  stroke-width: 2;
}

.feature-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.feature-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Journey Steps */
.journey-steps {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.journey-step {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--emerald-800);
}

.step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--emerald-800);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.step-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-1);
  color: var(--text-primary);
}

.step-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.875rem;
}

/* Form Section */
.form-section {
  background: var(--slate-900);
  color: var(--white);
  padding: var(--space-16) 0;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--white);
}

.form-subtitle {
  font-size: 1.125rem;
  margin-bottom: var(--space-8);
  opacity: 0.9;
}

/* Data Promise Panel */
.data-promise {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: var(--space-4);
  margin-bottom: var(--space-6);
  text-align: left;
}

.data-promise h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--white);
}

.data-promise ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.data-promise li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
  font-size: 0.875rem;
  opacity: 0.9;
}

.data-promise li:before {
  content: "✓";
  color: #10B981;
  font-weight: 600;
}

/* Form Styles */
.lead-form {
  background: var(--white);
  border-radius: 12px;
  padding: var(--space-6);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
  font-size: 0.875rem;
}

.form-input {
  width: 100%;
  padding: var(--space-3);
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s;
  min-height: 44px;
}

.form-input:focus {
  outline: none;
  border-color: var(--emerald-800);
  box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.1);
}

.form-input.valid {
  border-color: #10B981;
}

.form-input.invalid {
  border-color: #EF4444;
}

.form-microcopy {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--space-1);
  font-style: italic;
}

.form-submit {
  width: 100%;
  background: var(--emerald-800);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: var(--space-4);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.form-submit:hover {
  background: #047857;
}

.form-submit:focus {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

.form-submit:disabled {
  background: #9CA3AF;
  cursor: not-allowed;
}

.form-submit.loading {
  background: #9CA3AF;
}

/* Honeypot (Hidden) */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Success State */
.form-success {
  background: #10B981;
  color: var(--white);
  padding: var(--space-4);
  border-radius: 6px;
  text-align: center;
  margin-top: var(--space-4);
}

.form-success h4 {
  margin-bottom: var(--space-2);
  font-size: 1.125rem;
}

.pdf-download-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--white);
  color: #10B981;
  padding: var(--space-3) var(--space-4);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: var(--space-3);
  transition: all 0.2s;
}

.pdf-download-link:hover {
  background: #F0FDF4;
  text-decoration: none;
}

/* Methodology Section */
.methodology {
  background: var(--bg-accent);
  padding: var(--space-8);
  border-radius: 8px;
  margin: var(--space-10) 0;
}

.methodology h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--emerald-800);
}

.methodology-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.last-updated {
  background: var(--white);
  padding: var(--space-2) var(--space-3);
  border-radius: 4px;
  font-weight: 500;
}

.sources-toggle {
  background: none;
  border: 1px solid var(--emerald-800);
  color: var(--emerald-800);
  padding: var(--space-2) var(--space-3);
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.sources-toggle:hover {
  background: var(--emerald-800);
  color: var(--white);
}

.sources-list {
  display: none;
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.sources-list.open {
  display: block;
}

.sources-list ul {
  margin: 0;
  padding-left: var(--space-4);
}

.sources-list li {
  margin-bottom: var(--space-2);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Publisher Imprint */
.publisher-imprint {
  background: var(--white);
  border-top: 1px solid var(--border-color);
  padding: var(--space-8) 0;
  text-align: center;
}

.imprint-content {
  max-width: 800px;
  margin: 0 auto;
}

.imprint-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.imprint-text {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.editorial-standards-link {
  color: var(--emerald-800);
  text-decoration: none;
  font-weight: 500;
}

.editorial-standards-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .methodology-meta {
    justify-content: center;
  }
}

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

/* Print Styles */
@media print {
  .form-section,
  .hero {
    background: var(--white) !important;
    color: var(--text-primary) !important;
  }
  
  .form-container {
    display: none;
  }
}

