/* ==========================================
   SENARA PAGES CSS
   Shared styles for informational pages
   ========================================== */

/* --- Base & Typography --- */
* {
  font-family: 'Atkinson Hyperlegible', 'Crimson Pro', sans-serif;
}

body {
  background-color: #EEF2FF;
  min-height: 100vh;
}

/* --- Page Background --- */
.page-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.page-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

/* --- Page Header --- */
.page-header,
.faq-header {
  background: linear-gradient(135deg, #fffbf4 0%, #E0E7FF 55%, #C7D2FE 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before,
.faq-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234F46E5' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

/* --- Page Content --- */
.page-content {
  max-width: 720px;
  margin: 0 auto;
}

.faq-content {
  max-width: 720px;
  margin: 0 auto;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* FAQ Search */
.faq-search-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.faq-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  pointer-events: none;
}

.faq-search {
  width: 100%;
  padding: 0.85rem 2.5rem 0.85rem 2.75rem;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  background: white;
  font-size: 0.95rem;
  color: #0F172A;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}

.faq-search:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.faq-search::placeholder { color: #94A3B8; }

.faq-search-kbd {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* FAQ Category Filters */
.faq-cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.faq-cat-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #E2E8F0;
  border-radius: 100px;
  background: white;
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748B;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-cat-btn:hover { border-color: #CBD5E1; color: #334155; }

.faq-cat-btn.active {
  background: #4F46E5;
  color: white;
  border-color: #4F46E5;
}

.faq-cat-btn:focus-visible {
  outline: 2px solid #4F46E5;
  outline-offset: 2px;
}

/* FAQ No Results */
.faq-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: #64748B;
}

.faq-no-results svg {
  display: block;
  margin: 0 auto 1rem;
}

.faq-no-results.hidden { display: none; }

/* FAQ item hidden by filter */
.faq-item.hidden,
.faq-category.hidden {
  display: none;
}

[data-page="contact"] .page-content {
  max-width: 640px;
}

[data-page="org"] .page-content {
  max-width: 900px;
}

/* --- Intro Text --- */
.intro-text {
  color: #4338CA;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 3rem;
}

[data-page="accessibility"] .intro-text,
[data-page="org"] .intro-text {
  max-width: 640px;
  margin: 0 auto 3rem;
}

[data-page="org"] .intro-text {
  max-width: 700px;
}

/* --- Section Icon --- */
.section-icon {
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

/* --- Content Section --- */
.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E1B4B;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.content-section p {
  color: #4338CA;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-section strong {
  color: #1E1B4B;
}

.content-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #4338CA;
  margin: 1.5rem 0 0.75rem;
}

.content-section ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.content-section li {
  color: #4338CA;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.content-section li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: bold;
}

/* Legal pages override */
[data-page="privacy"] .content-section,
[data-page="terms"] .content-section {
  margin-bottom: 2.5rem;
}

[data-page="privacy"] .content-section h2,
[data-page="terms"] .content-section h2 {
  font-size: 1.35rem;
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #E0E7FF;
  align-items: initial;
  gap: 0;
}

/* Org page override */
[data-page="org"] .content-section {
  margin-bottom: 3.5rem;
}

/* --- Highlight Box --- */
.highlight-box {
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box p {
  margin: 0;
}

[data-page="donate"] .highlight-box {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 2px solid #6ee7b7;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

[data-page="donate"] .highlight-box p {
  color: #065f46;
  font-size: 1.1rem;
}

[data-page="donate"] .highlight-box strong {
  color: #047857;
}

[data-page="privacy"] .highlight-box {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
}

[data-page="privacy"] .highlight-box p {
  color: #065f46;
}

[data-page="privacy"] .highlight-box strong {
  color: #047857;
}

[data-page="terms"] .highlight-box {
  background: #fffbeb;
  border: 1px solid #E0E7FF;
}

[data-page="terms"] .highlight-box p {
  color: #4338CA;
}

/* --- Note Box --- */
.note-box {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.note-box p {
  font-size: 0.95rem;
  color: #4338CA;
  margin: 0;
  line-height: 1.6;
}

/* --- Update Info --- */
.update-info {
  background: #fffbeb;
  border: 1px solid #E0E7FF;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  text-align: center;
}

.update-info p {
  color: #4338CA;
  font-size: 0.9rem;
  margin: 0;
}

/* --- Table of Contents --- */
.toc {
  background: white;
  border: 1px solid #E0E7FF;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.toc h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1E1B4B;
  margin: 0 0 1rem 0;
}

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

.toc li {
  padding: 0.25rem 0;
}

.toc a {
  color: #F97316;
  text-decoration: none;
  font-size: 0.95rem;
}

.toc a:hover {
  text-decoration: underline;
}

/* --- FAQ Components --- */
.faq-item {
  background: white;
  border: 1px solid #E0E7FF;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: #fbbf24;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1E1B4B;
  margin: 0;
  padding-right: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #F97316;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

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

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: #4338CA;
  line-height: 1.7;
}

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

.faq-answer-inner a {
  color: #F97316;
  text-decoration: underline;
}

.faq-answer-inner a:hover {
  color: #b45309;
}

.faq-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4338CA;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.faq-category:first-of-type {
  margin-top: 0;
}

.contact-box {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 2px solid #6ee7b7;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.contact-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #065f46;
  margin-bottom: 0.5rem;
}

.contact-box p {
  color: #047857;
  margin-bottom: 1rem;
}

.contact-box a {
  display: inline-block;
  background: #059669;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-box a:focus-visible {
  outline: 2px solid #4F46E5;
  outline-offset: 2px;
}

.contact-box a:hover {
  background: #047857;
}

/* --- Donate Components --- */

/* CTA card */
.donate-cta-card {
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  color: white;
}

.donate-cta-card h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.5rem;
}

.donate-cta-desc {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin: 0;
  max-width: 360px;
  line-height: 1.5;
}

.donate-cta-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.donate-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
}

.donate-cta-btn:hover {
  background: rgba(255,255,255,0.25);
}

.donate-cta-btn:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

.donate-cta-btn.primary {
  background: white;
  color: #4F46E5;
  border-color: white;
}

.donate-cta-btn.primary:hover {
  background: #F8FAFC;
}

@media (max-width: 640px) {
  .donate-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .donate-cta-desc { max-width: none; }
  .donate-cta-actions { justify-content: center; }
}

/* Cost bars — horizontal bar chart */
.cost-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.cost-bar-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cost-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.cost-bar-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1E1B4B;
}

.cost-bar-pct {
  font-size: 0.85rem;
  font-weight: 700;
  color: #4F46E5;
}

.cost-bar-track {
  height: 8px;
  background: #E0E7FF;
  border-radius: 4px;
  overflow: hidden;
}

.cost-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #4F46E5, #818CF8);
  border-radius: 4px;
  transition: width 0.8s ease;
}

/* Two-column layout */
.donate-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 0;
}

.donate-two-col .content-section {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .donate-two-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Principles — compact 2x2 card grid */
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.principle-card-compact {
  background: white;
  border: 1px solid #E0E7FF;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border-left: 3px solid #4F46E5;
}

.principle-card-compact h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1E1B4B;
  margin: 0 0 0.25rem;
}

.principle-card-compact p {
  font-size: 0.8rem;
  color: #4338CA;
  margin: 0;
  line-height: 1.4;
}

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

.principle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.principle-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.principle-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.principle-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1E1B4B;
  margin-bottom: 0.5rem;
}

.principle-card p {
  font-size: 0.9rem;
  color: #4338CA;
  margin: 0;
  line-height: 1.5;
}

.gratitude-section {
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.gratitude-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E1B4B;
  margin-bottom: 1rem;
  justify-content: center;
}

.gratitude-section p {
  color: #4338CA;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.gratitude-section p:last-of-type {
  margin-bottom: 0;
}

/* --- Contact Components --- */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  background: white;
  border: 1px solid #E0E7FF;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.2s ease;
}

.contact-card:hover {
  border-color: #fbbf24;
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.15);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1E1B4B;
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: #4338CA;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.contact-link {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1E1B4B;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-link:focus-visible {
  outline: 2px solid #4F46E5;
  outline-offset: 2px;
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.partnership-card {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 2px solid #6ee7b7;
}

.partnership-card:hover {
  border-color: #34d399;
  box-shadow: 0 6px 20px rgba(52, 211, 153, 0.15);
}

.partnership-link {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.partnership-link:hover {
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.response-note {
  background: #fffbeb;
  border: 1px solid #E0E7FF;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.response-note p {
  color: #4338CA;
  font-size: 0.9rem;
  margin: 0;
}

.social-section {
  margin-top: 3rem;
  text-align: center;
}

.social-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1E1B4B;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid #e5e7eb;
  padding: 0.625rem 1rem;
  border-radius: 8px;
  color: #1E1B4B;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.social-link:focus-visible {
  outline: 2px solid #4F46E5;
  outline-offset: 2px;
}

.social-link:hover {
  border-color: #fbbf24;
  background: #fffbeb;
}

/* --- Safety Components --- */
.disclaimer-box {
  background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
  border: 2px solid #f87171;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.disclaimer-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #991b1b;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer-box p {
  color: #b91c1c;
  margin: 0;
  line-height: 1.7;
}

.hotline-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hotline-card {
  background: white;
  border: 2px solid #86efac;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.hotline-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hotline-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #166534;
  margin-bottom: 0.25rem;
}

.hotline-content p {
  font-size: 0.9rem;
  color: #15803d;
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}

.hotline-number {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #dcfce7;
  color: #166534;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
}

.hotline-number:focus-visible {
  outline: 2px solid #4F46E5;
  outline-offset: 2px;
}

.hotline-number:hover {
  background: #bbf7d0;
}

.resource-group {
  margin-top: 1.5rem;
}

.resource-group > h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1E1B4B;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.resource-list {
  display: grid;
  gap: 1rem;
}

.resource-item {
  background: white;
  border: 2px solid #93c5fd;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.resource-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.resource-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 0.25rem;
}

.resource-item p {
  font-size: 0.9rem;
  color: #3b6ea5;
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}

.resource-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #dbeafe;
  color: #1e3a5f;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
}

.resource-item a:focus-visible {
  outline: 2px solid #4F46E5;
  outline-offset: 2px;
}

.resource-item a:hover {
  background: #bfdbfe;
}

.emergency-disclaimer {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 2px solid #fb923c;
  border-radius: 16px;
  padding: 1.25rem 2rem;
  margin-bottom: 2rem;
}

.emergency-disclaimer p {
  color: #9a3412;
  margin: 0;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}

.tips-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.tips-list li {
  background: white;
  border: 1px solid #E0E7FF;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.tips-list li:last-child {
  margin-bottom: 0;
}

.tip-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tip-content {
  color: #4338CA;
  line-height: 1.6;
}

.tip-content strong {
  color: #1E1B4B;
}

.warning-box {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  border-radius: 0 12px 12px 0;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.warning-box h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #4338CA;
  margin-bottom: 0.75rem;
}

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

.warning-list li {
  color: #4338CA;
  padding: 0.375rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.warning-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: bold;
}

.support-section {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.support-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 1rem;
  justify-content: center;
}

.support-section p {
  color: #047857;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.support-section p:last-of-type {
  margin-bottom: 0;
}

/* --- Accessibility Components --- */
.feature-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.feature-card {
  background: white;
  border: 1px solid #E0E7FF;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-card:hover {
  border-color: #fbbf24;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.1);
}

.feature-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1E1B4B;
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 0.95rem;
  color: #4338CA;
  margin: 0;
  line-height: 1.6;
}

.status-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.5rem;
}

.status-done {
  background: #dcfce7;
  color: #166534;
}

.status-partial {
  background: #EEF2FF;
  color: #4338CA;
}

.status-planned {
  background: #e0e7ff;
  color: #3730a3;
}

.commitment-box {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 2px solid #6ee7b7;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.commitment-box h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #065f46;
  margin-bottom: 0.5rem;
}

.commitment-box p {
  color: #047857;
  margin: 0;
  line-height: 1.7;
}

.tips-box {
  background: #fffbeb;
  border: 1px solid #E0E7FF;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.tips-box h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1E1B4B;
  margin-bottom: 0.75rem;
}

[data-page="accessibility"] .tips-list {
  margin: 0;
}

[data-page="accessibility"] .tips-list li {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  display: block;
  font-size: 0.95rem;
  color: #4338CA;
  line-height: 1.5;
}

[data-page="accessibility"] .tips-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

.feedback-section {
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.feedback-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1E1B4B;
  margin-bottom: 0.75rem;
  justify-content: center;
}

.feedback-section p {
  color: #4338CA;
  margin-bottom: 1.25rem;
}

.feedback-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1E1B4B 0%, #4338CA 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.feedback-btn:focus-visible {
  outline: 2px solid #4F46E5;
  outline-offset: 2px;
}

.feedback-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 27, 75, 0.25);
}

/* --- Organization Components --- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.audience-card {
  background: white;
  border: 2px solid #E0E7FF;
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.2s ease;
}

.audience-card:hover {
  border-color: #fbbf24;
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.15);
  transform: translateY(-2px);
}

.audience-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.audience-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1E1B4B;
  margin-bottom: 0.75rem;
}

.audience-card p {
  font-size: 0.95rem;
  color: #4338CA;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.audience-examples {
  background: #EEF2FF;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.audience-examples h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4338CA;
  margin-bottom: 0.5rem;
}

.audience-examples ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-examples li {
  font-size: 0.85rem;
  color: #1E1B4B;
  padding: 0.2rem 0;
}

.usecase-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.usecase-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.usecase-icon {
  font-size: 2rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.usecase-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1E1B4B;
  margin-bottom: 0.5rem;
}

.usecase-content p {
  font-size: 0.95rem;
  color: #4338CA;
  margin: 0;
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.step-card {
  background: white;
  border: 1px solid #E0E7FF;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1E1B4B;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: #4338CA;
  margin: 0;
  line-height: 1.5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.benefit-item {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}

.benefit-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.benefit-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #065f46;
  margin-bottom: 0.25rem;
}

.benefit-item p {
  font-size: 0.95rem;
  color: #047857;
  margin: 0;
  line-height: 1.4;
}

.stories-preview {
  background: #fffbeb;
  border: 1px solid #E0E7FF;
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.stories-preview h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1E1B4B;
  margin-bottom: 1rem;
}

.story-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.story-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.story-item-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1E1B4B;
  margin-bottom: 0.125rem;
}

.story-item-info p {
  font-size: 0.9rem;
  color: #4338CA;
  margin: 0;
}

.story-item a {
  background: #fbbf24;
  color: #1E1B4B;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.story-item a:focus-visible {
  outline: 2px solid #4F46E5;
  outline-offset: 2px;
}

.story-item a:hover {
  background: #f59e0b;
}

/* --- Impact Dashboard --- */
.impact-metrics {
  background: linear-gradient(135deg, #1E1B4B 0%, #4338CA 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.impact-metrics h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.impact-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.impact-stat {
  text-align: center;
}

.impact-icon {
  color: #fbbf24;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.impact-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.impact-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

@media (max-width: 640px) {
  .impact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .impact-metrics {
    padding: 2rem 1.5rem;
  }
}

/* --- SDG Alignment --- */
.sdg-section {
  text-align: center;
  margin-bottom: 2.5rem;
}

.sdg-section h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1E1B4B;
  margin-bottom: 1rem;
}

.sdg-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.sdg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid;
}

.sdg-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}

.sdg-3 {
  background: #ecfdf5;
  border-color: #6ee7b7;
  color: #065f46;
}
.sdg-3 .sdg-number { background: #059669; }

.sdg-4 {
  background: #fef3c7;
  border-color: #fbbf24;
  color: #92400e;
}
.sdg-4 .sdg-number { background: #d97706; }

.sdg-10 {
  background: #ede9fe;
  border-color: #a78bfa;
  color: #5b21b6;
}
.sdg-10 .sdg-number { background: #7c3aed; }

.sdg-16 {
  background: #dbeafe;
  border-color: #60a5fa;
  color: #1e3a5f;
}
.sdg-16 .sdg-number { background: #2563eb; }

/* --- Story Tags --- */
.story-item-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.story-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.story-tag-published {
  background: #dcfce7;
  color: #166534;
}

.story-tag-coming-soon {
  background: #EEF2FF;
  color: #4338CA;
}

.story-category-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: #64748B;
  margin-top: 0.25rem;
}

/* --- Testimonial Grid --- */
.testimonial-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-placeholder {
  opacity: 0.7;
  border-style: dashed;
}

.testimonial-org {
  display: block;
  font-size: 0.8rem;
  color: #94A3B8;
  margin-top: 0.25rem;
}

.testimonial-invite {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: #fffbeb;
  border: 1px dashed #fbbf24;
  border-radius: 12px;
  color: #92400e;
  font-size: 0.9rem;
  font-weight: 500;
}

.cta-section {
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.cta-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E1B4B;
  margin-bottom: 0.75rem;
  justify-content: center;
}

.cta-section p {
  color: #4338CA;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta-btn:focus-visible {
  outline: 2px solid #4F46E5;
  outline-offset: 2px;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #1E1B4B 0%, #4338CA 100%);
  color: white;
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 27, 75, 0.25);
}

.cta-btn-primary:focus-visible {
  outline: 2px solid #4F46E5;
  outline-offset: 2px;
}

.cta-btn-secondary {
  background: white;
  color: #1E1B4B;
  border: 2px solid #1E1B4B;
}

.cta-btn-secondary:focus-visible {
  outline: 2px solid #4F46E5;
  outline-offset: 2px;
}

.cta-btn-secondary:hover {
  background: #1E1B4B;
  color: white;
}

.testimonial-box {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.testimonial-box blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #1E1B4B;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.testimonial-box cite {
  font-size: 0.9rem;
  color: #4338CA;
  font-style: normal;
}

/* --- Responsive --- */
@media (max-width: 640px) {
  .page-content,
  .faq-content {
    padding: 0 1rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
  }

  .faq-answer-inner {
    padding: 0 1.25rem 1rem 1.25rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .gratitude-section {
    padding: 2rem 1.5rem;
  }

  .cost-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hotline-card {
    flex-direction: column;
    gap: 0.75rem;
  }

  .disclaimer-box {
    padding: 1.25rem 1.5rem;
  }

  .feature-card {
    flex-direction: column;
    gap: 0.75rem;
  }

  .usecase-card {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-section {
    padding: 2rem 1.5rem;
  }

  .story-item {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

.link-accent {
  color: #F97316;
  font-weight: 500;
}
