/* ===== STATIC PAGES STYLES (scoped to .static-page) ===== */
/* همه selectorها زیر .static-page هستن تا با بقیه سایت تداخل نداشته باشن */

.static-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.static-page h1 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.15;
}

.static-page .subtitle {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text-2);
  font-style: italic;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

.static-page h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  margin: 36px 0 14px;
  letter-spacing: -0.3px;
  position: relative;
  padding-right: 16px;
}

.static-page h2::before {
  content: '';
  position: absolute;
  right: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: var(--brand);
  border-radius: 2px;
}

.static-page h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--brand-light);
}

.static-page p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-2);
  margin-bottom: 14px;
}

.static-page ul,
.static-page ol {
  padding-right: 24px;
  margin-bottom: 18px;
}

.static-page li {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-2);
  margin-bottom: 8px;
}

.static-page strong { color: white; font-weight: 700; }
.static-page a { color: var(--brand); text-decoration: underline; }

.static-page .sp-info-card {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 24px;
  margin: 22px 0;
}

.static-page .sp-info-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--brand);
}

.static-page .sp-info-card p:last-child { margin-bottom: 0; }

/* Stats grid */
.static-page .sp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.static-page .sp-stat {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.static-page .sp-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ch-color, var(--brand));
}

.static-page .sp-stat .num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 800;
  color: var(--ch-color, var(--brand));
  line-height: 1;
  margin-bottom: 8px;
}

.static-page .sp-stat .lbl {
  font-size: 13px;
  color: var(--text-3);
}

/* Channels showcase */
.static-page .sp-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.static-page .sp-channel-card {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.static-page .sp-channel-card::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 4px;
  background: var(--ch-color);
}

.static-page .sp-channel-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.static-page .sp-channel-card svg.sp-logo { width: 44px; height: 44px; flex-shrink: 0; }

.static-page .sp-channel-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 2px;
}

.static-page .sp-channel-card .sp-code {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 1px;
}

.static-page .sp-channel-card p {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Contact info */
.static-page .sp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

@media (max-width: 768px) {
  .static-page .sp-contact-grid { grid-template-columns: 1fr; }
}

.static-page .sp-contact-item {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.static-page .sp-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 153, 153, 0.15);
  border: 1px solid var(--brand);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.static-page .sp-contact-item h3 {
  font-size: 14px;
  margin: 0 0 4px;
  color: white;
}

.static-page .sp-contact-item p {
  font-size: 13px;
  margin: 0;
  color: var(--text-2);
}

.static-page .sp-contact-item a { color: var(--brand); text-decoration: none; }
.static-page .sp-contact-item a:hover { text-decoration: underline; }

/* Contact form */
.static-page .sp-form {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  margin-top: 28px;
}

.static-page .sp-form h2 {
  margin-top: 0;
  padding-right: 0;
}

.static-page .sp-form h2::before { display: none; }

.static-page .sp-form .sp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .static-page .sp-form .sp-form-row { grid-template-columns: 1fr; }
}

.static-page .sp-form label {
  display: block;
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 6px;
  font-weight: 600;
}

.static-page .sp-form input,
.static-page .sp-form textarea,
.static-page .sp-form select {
  width: 100%;
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  color: white;
  padding: 11px 14px;
  font-family: var(--fa);
  font-size: 13px;
  border-radius: 6px;
}

.static-page .sp-form input:focus,
.static-page .sp-form textarea:focus,
.static-page .sp-form select:focus {
  outline: none;
  border-color: var(--brand);
}

.static-page .sp-form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.static-page .sp-form button {
  background: var(--brand);
  color: white;
  border: none;
  padding: 12px 24px;
  font-family: var(--fa);
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  