/* ═══════════════════════════════════════════
   FOOTER SEO TEXT SECTION
═══════════════════════════════════════════ */

.footer-text-section {
  margin: 64px 0 0;
  padding: 56px 16px 64px;
  position: relative;
  overflow: hidden;
}


.fts-inner {
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Heading ── */
.fts-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  margin-bottom: 44px;
}

.fts-heading h2 {
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.01em;
}

.fts-br { display: inline; }

.fts-ornament {
  color: var(--brand);
  font-size: 14px;
  opacity: 0.55;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Card grid ── */
.fts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Card ── */
.fts-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 26px;
  border: 1px solid rgba(177, 28, 34, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  position: relative;
}

.fts-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 3px;
  background: var(--brand);
  border-radius: 0 0 4px 4px;
  opacity: 0.7;
}

.fts-card:hover {
  box-shadow: 0 6px 24px rgba(177, 28, 34, 0.1);
  transform: translateY(-3px);
}

.fts-card-icon {
  width: 44px; height: 44px;
  background: var(--brand-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--brand);
}

.fts-card-icon svg {
  width: 22px; height: 22px;
}

.fts-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}

.fts-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted, #6b7280);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .fts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .fts-card--center {
    grid-column: 1 / -1;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 540px) {
  .footer-text-section {
    padding: 44px 12px 52px;
    margin-top: 48px;
  }

  .fts-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fts-card--center {
    grid-column: auto;
    max-width: none;
  }

  .fts-heading {
    gap: 10px;
    margin-bottom: 32px;
  }

  .fts-ornament { display: none; }

  .fts-br { display: block; }
}
