/* ===== FORMAT CONTENT SECTION ===== */

/* ── How to Convert Steps ── */
.format-how-to {}

.format-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}

.format-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.format-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.format-step div strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.format-step div p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.format-privacy-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 14px 16px;
  background: rgba(67, 233, 123, 0.06);
  border: 1px solid rgba(67, 233, 123, 0.15);
  border-radius: 10px;
  line-height: 1.55;
}

.format-privacy-note strong {
  color: var(--accent3);
}

.format-content-section {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.format-content-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px;
  margin-bottom: 20px;
}

.format-content-block h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.format-content-block p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.format-content-block p:last-child {
  margin-bottom: 0;
}

.format-history {
  font-size: 0.82rem !important;
  font-style: italic;
  opacity: 0.85;
}

/* ── Why Convert Reasons ── */
.format-reasons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.format-reason {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.format-reason-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(67, 233, 123, 0.12);
  border: 1px solid rgba(67, 233, 123, 0.3);
  color: var(--accent3);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.format-reason p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── Comparison Table ── */
.format-compare-table {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.format-compare-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.format-compare-table thead th {
  padding: 12px 16px;
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  color: var(--text-muted);
  background: var(--surface2);
  border-bottom: 2px solid var(--border);
}

.format-compare-table thead th:first-child {
  color: var(--text-muted);
  opacity: 0.7;
}

.format-compare-table thead th:nth-child(2) {
  color: var(--accent1);
}

.format-compare-table thead th:nth-child(3) {
  color: var(--accent3);
}

.format-compare-table tbody td {
  padding: 10px 16px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.format-compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.format-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.format-compare-table tbody tr:hover td {
  background: rgba(108, 99, 255, 0.03);
}

/* ── Pros & Cons ── */
.format-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.format-pros, .format-cons {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}

.format-pros h3, .format-cons h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.format-pros h3 { color: var(--accent3); }
.format-cons h3 { color: var(--accent2); }

.format-pros ul, .format-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.format-pros li, .format-cons li {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}

.format-pros li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent3);
  font-weight: 700;
}

.format-cons li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent2);
  font-weight: 700;
}

/* ── FAQ ── */
.format-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(108, 99, 255, 0.3);
}

.faq-item summary {
  padding: 14px 18px;
  font-family: 'Syne', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.1rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--accent1);
}

.faq-item summary:hover {
  color: var(--accent1);
}

.faq-item p {
  padding: 0 18px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .format-content-block { padding: 20px 16px; }
  .format-pros-cons { grid-template-columns: 1fr; }
  .format-compare-table { font-size: 0.75rem; }
  .format-compare-table thead th,
  .format-compare-table tbody td { padding: 8px 10px; }
}
