/* ===========================================
   Sharenting Safety Checklist Tool Styles
   =========================================== */

.sharenting-checklist-page {
  --tool-cream: #FFFBF7;
  --tool-warm-gray: #F5F0EB;
  --tool-peach: #FFF5EB;
  --font-display: 'Lora', Georgia, serif;
  background: linear-gradient(160deg, #FFF5F5 0%, #FFF8F2 100%);
}

/* ===========================================
   Hero Section
   =========================================== */
.sharenting-checklist-page .tool-hero {
  padding: 80px 24px 60px;
  text-align: center;
}

.sharenting-checklist-page .tool-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.sharenting-checklist-page .tool-hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.sharenting-checklist-page .tool-hero-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
}

.sharenting-checklist-page .tool-hero-subtitle {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ===========================================
   Stats Banner
   =========================================== */
.sharenting-checklist-page .stats-banner {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  padding: 40px 24px;
}

.sharenting-checklist-page .stats-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.sharenting-checklist-page .stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sharenting-checklist-page .stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
}

.sharenting-checklist-page .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.sharenting-checklist-page .stat-source {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-top: 6px;
  transition: color 0.2s ease;
}

.sharenting-checklist-page .stat-source:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

/* ===========================================
   Main Section
   =========================================== */
.sharenting-checklist-page .tool-main {
  background: var(--tool-warm-gray);
  padding: 60px 24px 80px;
}

.sharenting-checklist-page .tool-main-inner {
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

/* Progress Card - Sticky */
.sharenting-checklist-page .progress-card {
  background: white;
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 80px;
  z-index: 100;
}

.sharenting-checklist-page .progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.sharenting-checklist-page .progress-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.sharenting-checklist-page .progress-percent {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.sharenting-checklist-page .progress-bar {
  height: 12px;
  background: var(--tool-warm-gray);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}

.sharenting-checklist-page .progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 6px;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.sharenting-checklist-page .progress-fill.progress-low {
  background: #EF4444;
}

.sharenting-checklist-page .progress-fill.progress-medium {
  background: #F59E0B;
}

.sharenting-checklist-page .progress-fill.progress-high {
  background: var(--success);
}

.sharenting-checklist-page .progress-hint {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* Checklist Container */
.sharenting-checklist-page .checklist-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.sharenting-checklist-page .checklist-section {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.sharenting-checklist-page .section-header {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--divider);
}

.sharenting-checklist-page .section-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.sharenting-checklist-page .section-title-wrap {
  flex: 1;
}

.sharenting-checklist-page .section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.sharenting-checklist-page .section-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Checklist Items */
.sharenting-checklist-page .checklist-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sharenting-checklist-page .checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.sharenting-checklist-page .checklist-item:hover {
  background: var(--tool-cream);
}

.sharenting-checklist-page .checklist-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sharenting-checklist-page .checkbox-custom {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-top: 1px;
}

.sharenting-checklist-page .checkbox-custom::after {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 3px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

.sharenting-checklist-page .checklist-item input:checked + .checkbox-custom {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.sharenting-checklist-page .checklist-item input:checked + .checkbox-custom::after {
  opacity: 1;
  transform: scale(1);
}

.sharenting-checklist-page .item-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.sharenting-checklist-page .checklist-item input:checked ~ .item-text {
  color: var(--text-secondary);
}

/* Result Card */
.sharenting-checklist-page .result-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.sharenting-checklist-page .result-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.sharenting-checklist-page .result-icon .mdi {
  font-size: 40px;
}

.sharenting-checklist-page .result-success {
  background: rgba(34, 197, 94, 0.1);
}

.sharenting-checklist-page .result-success .mdi {
  color: var(--success);
}

.sharenting-checklist-page .result-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.sharenting-checklist-page .result-message {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Sources Card */
.sharenting-checklist-page .sources-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
}

.sharenting-checklist-page .sources-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.sharenting-checklist-page .sources-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sharenting-checklist-page .sources-list li {
  margin-bottom: 8px;
}

.sharenting-checklist-page .sources-list a {
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
}

.sharenting-checklist-page .sources-list a:hover {
  text-decoration: underline;
}

/* Alternative Card */
.sharenting-checklist-page .alternative-card {
  background: linear-gradient(135deg, var(--primary-soft) 0%, var(--tool-peach) 100%);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.sharenting-checklist-page .alternative-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sharenting-checklist-page .alternative-icon .mdi {
  font-size: 40px;
  color: var(--primary);
}

.sharenting-checklist-page .alternative-content {
  flex: 1;
}

.sharenting-checklist-page .alternative-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.sharenting-checklist-page .alternative-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Buttons */
.sharenting-checklist-page .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sharenting-checklist-page .btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.sharenting-checklist-page .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tool-warm-gray);
  color: var(--text);
  border: none;
  border-radius: 20px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sharenting-checklist-page .btn-secondary:hover {
  background: var(--border);
}

/* ===========================================
   FAQ Section
   =========================================== */
.sharenting-checklist-page .tool-faq {
  background: var(--tool-cream);
  padding: 80px 24px;
}

.sharenting-checklist-page .tool-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.sharenting-checklist-page .tool-section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  margin-bottom: 48px;
}

.sharenting-checklist-page .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sharenting-checklist-page .faq-item {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.sharenting-checklist-page .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s ease;
}

.sharenting-checklist-page .faq-question:hover {
  background: rgba(0, 0, 0, 0.02);
}

.sharenting-checklist-page .faq-question .mdi {
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.sharenting-checklist-page .faq-item.active .faq-question .mdi {
  transform: rotate(180deg);
}

.sharenting-checklist-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sharenting-checklist-page .faq-item.active .faq-answer {
  max-height: 300px;
}

.sharenting-checklist-page .faq-answer-content {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===========================================
   Final CTA Section
   =========================================== */
.sharenting-checklist-page .tool-cta {
  background: linear-gradient(135deg, var(--primary-soft) 0%, var(--tool-peach) 50%, var(--tool-cream) 100%);
  padding: 80px 24px;
  text-align: center;
}

.sharenting-checklist-page .tool-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.sharenting-checklist-page .tool-cta-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.sharenting-checklist-page .tool-cta-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.sharenting-checklist-page .btn-large {
  padding: 18px 40px;
  font-size: 17px;
  border-radius: 30px;
}

.sharenting-checklist-page .tool-cta-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ===========================================
   Responsive Design
   =========================================== */
@media (max-width: 768px) {
  .sharenting-checklist-page .tool-hero {
    padding: 60px 20px 40px;
  }

  .sharenting-checklist-page .tool-hero-title {
    font-size: 32px;
  }

  .sharenting-checklist-page .tool-hero-subtitle {
    font-size: 17px;
  }

  .sharenting-checklist-page .stats-banner {
    padding: 32px 20px;
  }

  .sharenting-checklist-page .stats-banner-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sharenting-checklist-page .stat-number {
    font-size: 40px;
  }

  .sharenting-checklist-page .tool-main {
    padding: 40px 20px 60px;
  }

  .sharenting-checklist-page .progress-card {
    padding: 16px 20px;
    position: sticky;
    top: 70px;
  }

  .sharenting-checklist-page .checklist-section {
    padding: 20px;
  }

  .sharenting-checklist-page .section-header {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .sharenting-checklist-page .section-icon {
    margin: 0 auto;
  }

  .sharenting-checklist-page .checklist-item {
    padding: 10px 12px;
  }

  .sharenting-checklist-page .item-text {
    font-size: 14px;
  }

  .sharenting-checklist-page .result-card {
    padding: 32px 24px;
  }

  .sharenting-checklist-page .alternative-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .sharenting-checklist-page .alternative-content .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .sharenting-checklist-page .tool-faq {
    padding: 60px 20px;
  }

  .sharenting-checklist-page .tool-section-title {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .sharenting-checklist-page .tool-cta {
    padding: 60px 20px;
  }

  .sharenting-checklist-page .tool-cta-title {
    font-size: 28px;
  }
}
