/* ═══════════════════════════════════════════════════════════════════
   INFO PAGES — contacts, privacy, terms, pricing
   ═══════════════════════════════════════════════════════════════════ */

/* ── PAGE HERO ────────────────────────────────────────────────────── */
.page-hero {
  text-align: center;
  padding: 50px 20px 30px;
}

.page-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(176, 106, 255, .5);
}

.page-sub {
  font-size: 15px;
  color: var(--ts);
}

/* ── CONTENT WRAP ─────────────────────────────────────────────────── */
.content-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* ── CONTACT CARDS GRID ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.contact-card {
  background: var(--gl);
  border: 1px solid var(--br);
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  transition: border-color .2s, transform .2s;
  text-align: center;
}

.contact-card:hover {
  border-color: var(--bh);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.contact-type {
  font-size: 13px;
  color: var(--ts);
  margin-bottom: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--tm);
}

.contact-val a {
  color: var(--ac);
  text-decoration: none;
}

.contact-val a:hover { text-decoration: underline; }

.contact-desc {
  font-size: 13px;
  color: var(--ts);
  margin-top: 8px;
  line-height: 1.5;
}

/* ── INFO BOX ─────────────────────────────────────────────────────── */
.info-box {
  background: var(--gl);
  border: 1px solid var(--br);
  border-radius: 16px;
  padding: 28px 30px;
  backdrop-filter: blur(12px);
}

.info-box h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ac);
  margin-bottom: 14px;
}

.info-box p {
  font-size: 14px;
  color: var(--ts);
  line-height: 1.7;
  margin-bottom: 10px;
}

.info-box p:last-child { margin-bottom: 0; }

/* ── CONTACT FORM ─────────────────────────────────────────────────── */
.contact-form-box {
  max-width: 680px;
  margin: 0 auto 30px;
  background: var(--gl);
  border: 1px solid var(--br);
  border-radius: 18px;
  padding: 32px 36px;
  backdrop-filter: blur(12px);
}

.form-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: var(--tm);
}

.form-sub {
  font-size: 14px;
  color: var(--ts);
  text-align: center;
  margin-bottom: 24px;
}

.form-row { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 13px;
  color: var(--ts);
  margin-bottom: 6px;
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--br);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--tm);
  font-family: var(--fn);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--ac);
  box-shadow: 0 0 0 3px rgba(176, 106, 255, .15);
  background: rgba(255, 255, 255, .08);
}

.form-btn {
  width: 100%;
  background: linear-gradient(135deg, #7c3aed, #b06aff);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--fn);
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 18px rgba(124, 58, 237, .4);
}

.form-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(124, 58, 237, .55);
}

.form-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  min-height: 20px;
}

.form-status.success { color: #7fffaa; }
.form-status.error { color: #ff7f7f; }

/* ── DOCUMENT SECTIONS (privacy/terms) ────────────────────────────── */
.section {
  background: var(--gl);
  border: 1px solid var(--br);
  border-radius: 16px;
  padding: 28px 30px;
  margin-bottom: 16px;
  backdrop-filter: blur(12px);
  transition: border-color .2s;
}

.section:hover { border-color: var(--bh); }

.section h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ac);
  margin-bottom: 12px;
}

.section p {
  font-size: 14px;
  color: var(--ts);
  line-height: 1.7;
  margin-bottom: 10px;
}

.section p:last-child { margin-bottom: 0; }

.section ul {
  font-size: 14px;
  color: var(--ts);
  line-height: 1.7;
  padding-left: 20px;
  margin-bottom: 10px;
}

.section ul li { margin-bottom: 6px; }

.updated {
  text-align: center;
  font-size: 13px;
  color: var(--td);
  padding: 20px 0 40px;
}

/* ── PRICING-SPECIFIC ─────────────────────────────────────────────── */
.free-badge {
  text-align: center;
  margin-bottom: 40px;
}

.free-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(108, 63, 197, .2);
  border: 1px solid rgba(176, 106, 255, .35);
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ac);
}

.free-tag span:first-child { font-size: 22px; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}

.stat-box {
  background: var(--gl);
  border: 1px solid var(--br);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-val {
  font-size: 28px;
  font-weight: 700;
  color: var(--ac);
  margin-bottom: 4px;
}

.stat-label { font-size: 13px; color: var(--ts); }

.section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.ad-section { margin-bottom: 40px; }

.ad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.ad-card {
  background: var(--gl);
  border: 1px solid var(--br);
  border-radius: 14px;
  padding: 22px 20px;
  backdrop-filter: blur(10px);
  transition: border-color .2s;
}

.ad-card:hover { border-color: var(--bh); }

.ad-format {
  font-size: 13px;
  color: var(--ac);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ad-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.ad-desc {
  font-size: 13px;
  color: var(--ts);
  line-height: 1.5;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.plan-card {
  background: var(--gl);
  border: 1px solid var(--br);
  border-radius: 20px;
  padding: 32px 26px;
  backdrop-filter: blur(12px);
  transition: border-color .2s, transform .2s;
  position: relative;
}

.plan-card:hover {
  border-color: var(--bh);
  transform: translateY(-3px);
}

.plan-card.featured {
  border-color: var(--ac);
  box-shadow: 0 0 40px rgba(176, 106, 255, .2);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7c3aed, #b06aff);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .5px;
}

.plan-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 42px;
  font-weight: 700;
  color: var(--tm);
  margin-bottom: 4px;
  line-height: 1;
}

.plan-price sup {
  font-size: 20px;
  vertical-align: top;
  margin-top: 8px;
  margin-right: 2px;
  color: var(--ts);
}

.plan-price span {
  font-size: 16px;
  color: var(--ts);
  font-weight: 400;
}

.plan-desc {
  font-size: 13px;
  color: var(--ts);
  margin-bottom: 22px;
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  margin-bottom: 26px;
}

.plan-features li {
  font-size: 14px;
  color: var(--ts);
  padding: 6px 0;
  border-bottom: 1px solid var(--br);
  display: flex;
  align-items: center;
  gap: 9px;
}

.plan-features li:last-child { border-bottom: none; }

.plan-features li::before {
  content: '✓';
  color: var(--ac);
  font-weight: 700;
  flex-shrink: 0;
}

.plan-btn {
  width: 100%;
  background: linear-gradient(135deg, #7c3aed, #b06aff);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--fn);
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 18px rgba(124, 58, 237, .4);
}

.plan-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(124, 58, 237, .55);
}

.plan-btn.outline {
  background: transparent;
  border: 1px solid var(--bh);
  color: var(--tm);
  box-shadow: none;
}

.plan-btn.outline:hover {
  background: rgba(176, 106, 255, .1);
}

.cta-box {
  background: linear-gradient(135deg, rgba(124, 58, 237, .25), rgba(176, 106, 255, .15));
  border: 1px solid var(--bh);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.cta-box h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-box p {
  font-size: 15px;
  color: var(--ts);
  margin-bottom: 22px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #7c3aed, #b06aff);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 600;
  transition: all .2s;
  box-shadow: 0 4px 18px rgba(124, 58, 237, .4);
}

.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(124, 58, 237, .55);
}

/* ── EXTENDED FAQ ACCORDION ───────────────────────────────────────── */
.faq-extended { padding: 40px 20px 60px; }

.faq-ext-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--tm);
}

.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-acc-item {
  background: var(--gl);
  border: 1px solid var(--br);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}

.faq-acc-item:hover { border-color: var(--bh); }

.faq-acc-q {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--tm);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-acc-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ac);
  font-size: 18px;
  font-weight: 700;
  transition: transform .25s;
}

.faq-acc-item.open .faq-acc-icon { transform: rotate(45deg); }

.faq-acc-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--ts);
  line-height: 1.65;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-acc-item.open .faq-acc-a {
  padding: 0 22px 18px;
  max-height: 500px;
}

/* ── MOBILE ───────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .contact-form-box { padding: 22px 20px; }
  .section { padding: 20px 18px; }
  .plan-price { font-size: 34px; }
}