/* =========================================================
   STATIC / INFO PAGES  (About, Legal, FAQ, Contact)
========================================================= */

body {
  margin: 0;
  background: #fff;
  font-family: 'Roboto', system-ui, sans-serif;
  color: #333;
}

/* ── Hero ─────────────────────────────────────────────── */

.sp-hero {
  background: linear-gradient(135deg, #0b6b6a 0%, #094f4e 100%);
  color: #fff;
  padding: 52px 20px 44px;
  text-align: center;
}

.sp-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.sp-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.6;
}

/* ── Body wrapper ─────────────────────────────────────── */

.sp-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 90px;
}

.sp-body.sp-wide {
  max-width: 1060px;
}

/* ── Section ──────────────────────────────────────────── */

.sp-section {
  margin-bottom: 44px;
}

.sp-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b6b6a;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ddeaea;
}

.sp-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin: 22px 0 8px;
}

.sp-section p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.85;
  margin: 0 0 14px;
}

.sp-section ul,
.sp-section ol {
  padding-left: 22px;
  margin: 8px 0 14px;
}

.sp-section li {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 6px;
}

.sp-last-updated {
  font-size: 0.82rem;
  color: #aaa;
  font-style: italic;
  margin-bottom: 36px;
}

/* ── Value / feature cards ────────────────────────────── */

.sp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0 32px;
}

.sp-card {
  background: #f6fdfc;
  border: 1px solid #ddeaea;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
}

.sp-card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.sp-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0b6b6a;
  margin: 0 0 8px;
}

.sp-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* ── Steps (numbered) ─────────────────────────────────── */

.sp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0 32px;
}

.sp-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sp-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0b6b6a;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-step-text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 6px;
}

.sp-step-text p {
  font-size: 0.88rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* ── Highlight box ────────────────────────────────────── */

.sp-highlight {
  background: #f0f8f8;
  border-left: 4px solid #0b6b6a;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.sp-highlight p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

/* ── FAQ items ────────────────────────────────────────── */

.sp-faq-group {
  margin-bottom: 10px;
}

.sp-faq-item {
  border-bottom: 1px solid #e6eeee;
}

.sp-faq-item:last-child {
  border-bottom: none;
}

.sp-faq-q {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  touch-action: manipulation;
}

.sp-faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: #0b6b6a;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.sp-faq-item.open .sp-faq-q::after {
  transform: rotate(45deg);
}

.sp-faq-a {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
  padding: 0 0 16px;
  display: none;
}

.sp-faq-item.open .sp-faq-a {
  display: block;
}

/* ── Contact grid ─────────────────────────────────────── */

.sp-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.sp-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-contact-card {
  background: #f6fdfc;
  border: 1px solid #ddeaea;
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sp-contact-card-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.sp-contact-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0b6b6a;
  margin: 0 0 4px;
}

.sp-contact-card p,
.sp-contact-card a {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-decoration: none;
}

.sp-contact-card a:hover {
  color: #0b6b6a;
  text-decoration: underline;
}

/* ── Contact form ─────────────────────────────────────── */

.sp-form-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b6b6a;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ddeaea;
}

.sp-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  margin-top: 16px;
}

.sp-form label:first-of-type {
  margin-top: 0;
}

.sp-form input,
.sp-form textarea,
.sp-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #ddeaea;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.15s;
}

.sp-form input:focus,
.sp-form textarea:focus,
.sp-form select:focus {
  border-color: #0b6b6a;
  outline: none;
}

.sp-form textarea {
  min-height: 130px;
  resize: vertical;
}

.sp-submit {
  display: inline-block;
  background: #0b6b6a;
  color: #fff;
  border: none;
  padding: 13px 40px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  touch-action: manipulation;
  transition: background 0.15s;
}

.sp-submit:hover {
  background: #095f5e;
}

.sp-form-success {
  display: none;
  background: #e6f9f0;
  border: 1px solid #2bb67340;
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  color: #1a6b45;
}

.sp-form-success h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.sp-form-success p {
  font-size: 0.92rem;
  margin: 0;
}

/* ── CTA banner ───────────────────────────────────────── */

.sp-cta-banner {
  background: linear-gradient(135deg, #0b6b6a 0%, #094f4e 100%);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  margin: 48px 0 0;
  color: #fff;
}

.sp-cta-banner h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.sp-cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0 0 24px;
}

.sp-cta-btn {
  display: inline-block;
  background: #f28c28;
  color: #fff;
  padding: 13px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  margin: 0 6px;
  touch-action: manipulation;
  transition: background 0.15s;
}

.sp-cta-btn:hover {
  background: #d97820;
}

.sp-cta-btn.outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.sp-cta-btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 900px) {
  .sp-cards,
  .sp-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .sp-hero { padding: 36px 16px 30px; }
  .sp-hero h1 { font-size: 1.65rem; }
  .sp-body { padding: 32px 16px 64px; }

  .sp-cards,
  .sp-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sp-cta-banner {
    padding: 28px 20px;
    border-radius: 12px;
  }

  .sp-cta-banner h2 { font-size: 1.25rem; }

  .sp-cta-btn {
    display: block;
    margin: 6px 0;
  }
}
