/* ═══════════════════════════════════════════════════════════
   Static Pages — About, Contact, Policy
═══════════════════════════════════════════════════════════ */

/* ── Shared Hero ───────────────────────────────────────── */
.sp-hero {
  background: linear-gradient(135deg,#235aa0 0%,#2d6cb5 60%,#2d6cb5 100%);
  padding: 60px 0 70px; margin-bottom: -48px; position: relative;
  overflow: hidden;
}
.sp-hero::after {
  content:''; position:absolute; bottom:-1px; left:0; right:0; height:50px;
  background: #f8fafc; clip-path: ellipse(55% 100% at 50% 100%);
}
.sp-hero-sm { padding: 44px 0 60px; }
.sp-hero-inner { text-align: center; position: relative; z-index: 1; }
.sp-hero-badge {
  display: inline-block; background: rgba(255,255,255,0.18);
  color: #e0e7ff; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 5px 14px; border-radius: 99px; margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.25);
}
.sp-hero-title {
  color: #fff; font-size: clamp(26px,4vw,42px); font-weight: 900;
  margin: 0 0 12px; line-height: 1.2;
}
.sp-hero-sub {
  color: rgba(255,255,255,0.82); font-size: 16px; max-width: 560px;
  margin: 0 auto; line-height: 1.6;
}

/* ── Body / Container ──────────────────────────────────── */
.sp-body { padding-top: 72px; padding-bottom: 80px; }
.sp-section { margin-bottom: 64px; }
.sp-section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 1.5px; color: #2d6cb5;
  margin-bottom: 10px;
}
.sp-section h2 { font-size: clamp(22px,3vw,32px); font-weight: 800; color: #235aa0; margin: 0 0 18px; }

/* ── Stats Bar ─────────────────────────────────────────── */
.sp-stats-bar {
  background: #fff; border-bottom: 1px solid #f1f5f9;
  position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.sp-stats-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0; padding: 28px 20px;
}
.sp-stat { text-align: center; padding: 0 40px; }
.sp-stat-num { display: block; font-size: 28px; font-weight: 900; color: #235aa0; line-height: 1; margin-bottom: 4px; }
.sp-stat-label { display: block; font-size: 12px; color: #64748b; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.sp-stat-divider { width: 1px; height: 44px; background: #e5e7eb; }

/* ── About Mission ─────────────────────────────────────── */
.sp-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.sp-mission-text p { color: #475569; font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.sp-mission-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sp-mission-card {
  background: #f8fafc; border: 1.5px solid #f1f5f9; border-radius: 16px;
  padding: 20px; transition: border-color .2s, box-shadow .2s;
}
.sp-mission-card:hover { border-color: #c4b5fd; box-shadow: 0 4px 16px rgba(45,108,181,0.1); }
.sp-mission-icon { font-size: 26px; margin-bottom: 10px; }
.sp-mission-card h4 { font-size: 14px; font-weight: 800; color: #235aa0; margin: 0 0 6px; }
.sp-mission-card p { font-size: 13px; color: #64748b; line-height: 1.5; margin: 0; }

/* ── Offer Grid ────────────────────────────────────────── */
.sp-offer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.sp-offer-card {
  background: #fff; border: 1.5px solid #f1f5f9; border-radius: 16px;
  padding: 22px; transition: all .2s;
}
.sp-offer-card:hover { border-color: #5b8fcf; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(45,108,181,0.1); }
.sp-offer-emoji { font-size: 28px; display: block; margin-bottom: 10px; }
.sp-offer-card h4 { font-size: 14px; font-weight: 800; color: #235aa0; margin: 0 0 6px; }
.sp-offer-card p { font-size: 13px; color: #64748b; line-height: 1.5; margin: 0; }

/* ── Values ────────────────────────────────────────────── */
.sp-values-list { display: flex; flex-direction: column; gap: 16px; }
.sp-value-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; background: #f8fafc;
  border-radius: 14px; border: 1.5px solid #f1f5f9;
}
.sp-value-check {
  width: 28px; height: 28px; background: #e9eef5;
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.sp-value-item strong { display: block; font-size: 14px; color: #235aa0; margin-bottom: 3px; }
.sp-value-item p { font-size: 13px; color: #64748b; margin: 0; line-height: 1.5; }

/* ── CTA Band ──────────────────────────────────────────── */
.sp-cta-band {
  background: linear-gradient(135deg,#235aa0,#2d6cb5);
  border-radius: 24px; padding: 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.sp-cta-band h3 { color: #fff; font-size: 22px; font-weight: 800; margin: 0 0 4px; }
.sp-cta-band p  { color: rgba(255,255,255,.8); font-size: 14px; margin: 0; }
.sp-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.sp-btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: #2d6cb5; font-weight: 800;
  font-size: 14px; padding: 13px 24px; border-radius: 12px;
  text-decoration: none; transition: all .2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.sp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.sp-btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff; font-weight: 800;
  font-size: 14px; padding: 13px 24px; border-radius: 12px;
  text-decoration: none; transition: all .2s;
  box-shadow: 0 4px 12px rgba(37,211,102,0.35);
}
.sp-btn-whatsapp:hover { filter: brightness(1.08); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 360px 1fr; gap: 32px; align-items: start; }
.contact-info-card {
  background: #fff; border: 1.5px solid #f1f5f9; border-radius: 20px;
  padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: sticky; top: 100px;
}
.contact-info-card h3 { font-size: 17px; font-weight: 800; color: #235aa0; margin: 0 0 22px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid #f1f5f9;
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon {
  width: 36px; height: 36px; background: #e9eef5; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: #94a3b8; margin-bottom: 3px; }
.contact-info-value { font-size: 14px; font-weight: 600; color: #235aa0; text-decoration: none; }
a.contact-info-value:hover { color: #2d6cb5; }
.contact-whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; margin-top: 20px; padding: 14px;
  background: linear-gradient(135deg,#25d366,#128c7e);
  color: #fff; font-size: 14px; font-weight: 800;
  border-radius: 12px; text-decoration: none;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
  transition: all .2s;
}
.contact-whatsapp-btn:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37,211,102,0.4); }

/* FAQ Accordion */
.contact-faq-title { font-size: 20px; font-weight: 800; color: #235aa0; margin: 0 0 20px; }
.faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1.5px solid #f1f5f9; border-radius: 14px; overflow: hidden; background: #fff; transition: border-color .2s; }
.faq-item.is-open { border-color: #c4b5fd; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: none; border: none; cursor: pointer;
  font-size: 14px; font-weight: 700; color: #235aa0; text-align: left;
  font-family: inherit; gap: 12px;
}
.faq-item.is-open .faq-q { color: #2d6cb5; }
.faq-chevron { flex-shrink: 0; transition: transform .25s cubic-bezier(.32,.72,0,1); color: #94a3b8; }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); color: #2d6cb5; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s cubic-bezier(.4,0,.2,1), padding .3s;
  padding: 0 20px;
}
.faq-item.is-open .faq-a { max-height: 300px; padding: 0 20px 16px; }
.faq-a p { font-size: 14px; color: #475569; line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════════════════════
   POLICY PAGES
═══════════════════════════════════════════════════════ */
.policy-layout { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start; }
.policy-toc { position: sticky; top: 100px; }
.policy-toc-inner {
  background: #fff; border: 1.5px solid #f1f5f9; border-radius: 16px;
  padding: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.policy-toc-label { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; color: #94a3b8; margin: 0 0 12px; }
.policy-toc-link {
  display: block; font-size: 13px; color: #475569; font-weight: 600;
  text-decoration: none; padding: 7px 10px; border-radius: 8px;
  transition: all .15s;
}
.policy-toc-link:hover { background: #e9eef5; color: #2d6cb5; }
.policy-toc-divider { height: 1px; background: #f1f5f9; margin: 12px 0; }
.policy-toc-contact {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: #2d6cb5; font-weight: 700;
  text-decoration: none; padding: 8px 10px;
  background: #e9eef5; border-radius: 8px;
}
.policy-toc-contact:hover { background: #dbe5f0; }
.policy-section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid #f1f5f9; }
.policy-section:last-of-type { border-bottom: none; }
.policy-section-title {
  display: flex; align-items: center; gap: 12px;
  font-size: 19px; font-weight: 800; color: #235aa0; margin: 0 0 14px;
}
.policy-section-num {
  width: 30px; height: 30px; background: linear-gradient(135deg,#2d6cb5,#2d6cb5);
  color: #fff; font-size: 13px; font-weight: 800;
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.policy-section-body {
  font-size: 14px; color: #475569; line-height: 1.8;
  white-space: pre-line;
}
.policy-section-body strong { color: #235aa0; }
.policy-footer-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: #f5f8fc; border: 1px solid #e0e7ff; border-radius: 12px;
  padding: 16px 18px; font-size: 13px; color: #235aa0; margin-top: 32px; line-height: 1.6;
}

/* ── Responsive ────────────────────────────────────────── */
@media(max-width: 960px) {
  .sp-mission { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { position: static; }
}
@media(max-width: 768px) {
  .sp-hero { padding: 40px 0 56px; }
  .sp-body { padding-top: 60px; }
  .sp-stats-inner { gap: 12px; }
  .sp-stat { padding: 0 20px; }
  .sp-stat-divider { display: none; }
  .sp-offer-grid { grid-template-columns: 1fr 1fr; }
  .sp-mission-visual { grid-template-columns: 1fr 1fr; }
  .sp-cta-band { flex-direction: column; padding: 28px 20px; text-align: center; }
  .sp-cta-actions { justify-content: center; }
  .policy-toc { display: none; }
  .sp-offer-grid { grid-template-columns: 1fr; }
}
